home / bankproducts

Fees

One row per fee charged on a product. Every row carries a source_page reference to the original bank PDF. NULL amount means 'on request' (tailored pricing) or 'not published in current source'.

Data license: CC-BY-4.0 · Data source: bankproducts.info

12 rows where product_id = "ce_riviera:hypotheque" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: fee_type, amount, currency, frequency, note, valid_from (date)

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
ce_riviera:hypotheque:ouverture_max Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Commission d'ouverture (max) 2500.0 CHF one_time     Plafond. 24 2024-08-01 pro
ce_riviera:hypotheque:analyse_credit_max Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Analyse de credit (max) 1500.0 CHF one_time     Plafond. Offerte en cas de conclusion. 24 2024-08-01 pro
ce_riviera:hypotheque:cloture_max Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Commission de cloture (max) 1000.0 CHF one_time     Plafond. 24 2024-08-01 pro
ce_riviera:hypotheque:renouvellement Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Renouvellement ou modification du contrat 300.0 CHF one_time     Brochure p.24 "Renouvellement du credit ou modification du contrat: CHF 300.- / 500.- max". 24 2024-08-01 pro
ce_riviera:hypotheque:cloture_min Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Commission de cloture (min) 300.0 CHF one_time     Brochure p.24 "Commission de cloture: CHF 300.- min / CHF 1'000.- max". 24 2024-08-01 pro
ce_riviera:hypotheque:sommation Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Sommation 250.0 CHF per_use     Brochure p.24. 24 2024-08-01 pro
ce_riviera:hypotheque:ouverture_min Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Commission d'ouverture (min) 200.0 CHF one_time     Brochure p.24 "Commission d'ouverture: CHF 200.- min / CHF 2'500.- max". 24 2024-08-01 pro
ce_riviera:hypotheque:analyse_credit_min Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Analyse de credit (min) 150.0 CHF one_time     Brochure p.24 "Analyse de credit: CHF 150.- min / CHF 1'500.- max. Offerte en cas de conclusion du contrat". 24 2024-08-01 pro
ce_riviera:hypotheque:rappel_2 Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Frais de rappel (2e) 100.0 CHF per_use     Brochure p.24. 24 2024-08-01 pro
ce_riviera:hypotheque:rappel_1 Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Frais de rappel (1er) 40.0 CHF per_use     Brochure p.24 "Frais de rappel: 1er CHF 40.- min / 2e CHF 100.- min". 24 2024-08-01 pro
ce_riviera:hypotheque:interet_moratoire Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera overdraft_fee Interet moratoire sur interets impayes / depassement de limite 10.0 percent per_annum_pct     Brochure p.24 "Interet moratoire sur interets impayes: 10%. Interet moratoire sur depassement de limite: 10%". 24 2024-08-01 pro
ce_riviera:hypotheque:commission_cc Crédit hypothécaire ce_riviera:hypotheque Caisse d'Epargne Riviera (CER) ce_riviera service_fee Commission de credit sur compte courant debiteur 0.25 percent quarterly     Brochure p.24 "Commission de credit sur compte courant: 0.25% par trimestre sur le solde debiteur le plus eleve". 24 2024-08-01 pro

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE fee (
    id          TEXT PRIMARY KEY,       -- zkb:privatkonto:account_mgmt
    product_id  TEXT NOT NULL REFERENCES product(id),
    bank_id     TEXT NOT NULL REFERENCES bank(id),  -- denormalized
    fee_type    TEXT NOT NULL,          -- standardized key
    label       TEXT,                   -- human-readable German label from PDF
    amount      REAL,                   -- NULL if text-only or varies
    currency    TEXT DEFAULT 'CHF',     -- CHF, EUR, USD, percent
    frequency   TEXT,                   -- monthly, annual, quarterly, per_txn, one_time, per_annum_pct
    tier        TEXT,                   -- for tiered pricing: "3rd card onwards", "vol:>250k", "member"
    channel     TEXT,                   -- ebanking, paper, counter, atm, app, post_office, all
    note        TEXT,                   -- conditions, fine print
    source_page INTEGER,
    valid_from  TEXT,
    access_tier TEXT NOT NULL DEFAULT 'free'  -- freemium gating; propagated from parent product
        CHECK (access_tier IN ('free', 'pro', 'business'))
);
CREATE INDEX idx_fee_product ON fee(product_id);
CREATE INDEX idx_fee_bank ON fee(bank_id);
CREATE INDEX idx_fee_type ON fee(fee_type);
CREATE INDEX idx_fee_category ON fee(fee_type, bank_id);
CREATE INDEX idx_fee_access_tier ON fee(access_tier);
Powered by Datasette · Queries took 24.835ms · Data license: CC-BY-4.0 · Data source: bankproducts.info