home / bankproducts

Interest rates

One row per interest rate. rate_type matches product category per atom #316 (mortgage_rate, consumer_credit, overdraft, credit, savings_rate, leasing_rate, penalty). snapshot_date is when we observed the rate; valid_from is when the bank declared it effective.

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

16 rows where bank_id = "ce_aubonne" sorted by snapshot_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: product_id, rate, snapshot_date (date), valid_from (date)

id product_id bank_id rate_type rate tier_floor tier_ceiling tenor_months currency snapshot_date ▲ valid_from note source_document_id
ce_aubonne:obli_7_8:r Obligation de caisse ce_aubonne:obligation_caisse Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 1.0       CHF 2026-06-03 2025-07-15 7 et 8 ans.  
ce_aubonne:obli_5_6:r Obligation de caisse ce_aubonne:obligation_caisse Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.9       CHF 2026-06-03 2025-07-15 5 et 6 ans.  
ce_aubonne:obli_3_4:r Obligation de caisse ce_aubonne:obligation_caisse Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.8       CHF 2026-06-03 2025-07-15 3 et 4 ans.  
ce_aubonne:pilier3a:r 3e pilier Privor ce_aubonne:pilier3a_privor Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 1.25       CHF 2026-06-03 2025-07-15 High vs cohort norm 0.30-0.50%.  
ce_aubonne:pilier2:r 2e pilier Avenirplus ce_aubonne:pilier2_avenirplus Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.5       CHF 2026-06-03 2025-07-15    
ce_aubonne:placement:r Compte Placement ce_aubonne:placement Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.5       CHF 2026-06-03 2025-07-15    
ce_aubonne:garantie_loyer:r Garantie de loyer ce_aubonne:garantie_loyer Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.125       CHF 2026-06-03 2025-07-15 1/8% (one-eighth percent).  
ce_aubonne:epargne_senior:r Epargne Senior ce_aubonne:epargne_senior Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.5       CHF 2026-06-03 2025-07-15    
ce_aubonne:epargne_enfant:r Epargne Enfant ce_aubonne:epargne_enfant Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 1.5       CHF 2026-06-03 2025-07-15    
ce_aubonne:epargne_jeunesse:r Epargne Jeunesse ce_aubonne:epargne_jeunesse Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 1.5       CHF 2026-06-03 2025-07-15    
ce_aubonne:epargne_nominatif:r Epargne Nominatif ce_aubonne:epargne_nominatif Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.3       CHF 2026-06-03 2025-07-15    
ce_aubonne:epargne_plus:r Epargne Plus ce_aubonne:epargne_plus Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 1.0       CHF 2026-06-03 2025-07-15 Highest in cohort for Privatkunden 18+.  
ce_aubonne:cc_jeunesse:r Compte courant Jeunesse ce_aubonne:cc_jeunesse Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.25       CHF 2026-06-03 2025-07-15    
ce_aubonne:cc_salaire:r Compte courant Salaire ce_aubonne:cc_salaire Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.0       CHF 2026-06-03 2025-07-15    
ce_aubonne:cc_loyers:r Compte courant Loyers ce_aubonne:cc_loyers Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.0       CHF 2026-06-03 2025-07-15    
ce_aubonne:cc_avue:r Compte courant À vue ce_aubonne:cc_avue Caisse d'Epargne d'Aubonne (CEA) ce_aubonne savings_rate 0.0       CHF 2026-06-03 2025-07-15    

Advanced export

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

CSV options:

CREATE TABLE interest_rate (
    id                 TEXT PRIMARY KEY,       -- sgkb:sparkonto:credit:tier1
    product_id         TEXT NOT NULL REFERENCES product(id),
    bank_id            TEXT NOT NULL REFERENCES bank(id),  -- denormalized
    rate_type          TEXT NOT NULL,          -- credit (paid to customer), debit (charged to customer),
                                               -- bonus (conditional extra), discount (reduction on base),
                                               -- overdraft (penalty rate)
    rate               REAL,                   -- percentage value (0.050 = 0.050%); NULL = on request / not published
    tier_floor         REAL,                   -- balance threshold lower bound; NULL = from zero
    tier_ceiling       REAL,                   -- balance threshold upper bound; NULL = unlimited
    tenor_months       INTEGER,                -- term length in months (24 = 2yr); NULL = no fixed term
    currency           TEXT DEFAULT 'CHF',
    snapshot_date      TEXT NOT NULL,          -- date the rate was observed (YYYY-MM-DD)
    valid_from         TEXT,                   -- date the rate took effect (YYYY-MM-DD)
    note               TEXT,                   -- conditions, fine print
    source_document_id INTEGER REFERENCES source_document(id)
);
CREATE INDEX idx_interest_rate_product ON interest_rate(product_id);
CREATE INDEX idx_interest_rate_bank ON interest_rate(bank_id);
CREATE INDEX idx_interest_rate_snapshot ON interest_rate(bank_id, snapshot_date);
CREATE INDEX idx_interest_rate_type ON interest_rate(rate_type, bank_id);
Powered by Datasette · Queries took 19.971ms · Data license: CC-BY-4.0 · Data source: bankproducts.info