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

17 rows where bank_id = "bernerland" sorted by snapshot_date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: rate, currency, 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
bernerland:privor_freizuegigkeit:credit Privor Freizuegigkeitskonto 2. Saeule bernerland:privor_freizuegigkeit Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Privor Freizuegigkeitskonto 2. Saeule: 0%.  
bernerland:privor_3a:credit Privor Vorsorgekonto 3. Saeule bernerland:privor_3a Bernerland Bank AG bernerland credit 0.15       CHF 2026-05-28 2026-02-01 Privor Vorsorgekonto 3. Saeule: 0.15%.  
bernerland:mietkautionssparkonto:credit Mietkautionssparkonto bernerland:mietkautionssparkonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Mietkautionssparkonto.  
bernerland:geschenksparkonto:credit Geschenksparkonto bernerland:geschenksparkonto Bernerland Bank AG bernerland credit 0.25 0.0 10000.0   CHF 2026-05-28 2026-02-01 Geschenksparkonto: 0.25% bis CHF 10'000, 0% darueber.  
bernerland:aktionaerssparkonto:credit Aktionaerssparkonto bernerland:aktionaerssparkonto Bernerland Bank AG bernerland credit 0.1 0.0 100000.0   CHF 2026-05-28 2026-02-01 Aktionaerssparkonto Vorzugszins: 0.10% bis CHF 100'000, 0% darueber.  
bernerland:sparkonto60:credit Sparkonto60 bernerland:sparkonto60 Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Sparkonto60 (Senioren): 0% bis CHF 100'000, 0% darueber.  
bernerland:sparkonto25:credit Sparkonto25 bernerland:sparkonto25 Bernerland Bank AG bernerland credit 0.25 0.0 25000.0   CHF 2026-05-28 2026-02-01 Sparkonto25 fuer Jugendliche: 0.25% bis CHF 25'000, 0% darueber.  
bernerland:sparkonto:credit Sparkonto bernerland:sparkonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Standard Sparkonto (26-59 Jahre): 0% bis CHF 100'000, 0% darueber.  
bernerland:sparkonto_1:credit Sparkonto 1 bernerland:sparkonto_1 Bernerland Bank AG bernerland credit 0.2 0.0 250000.0   CHF 2026-05-28 2026-02-01 Sparkonto 1: 0.20% bis CHF 250'000, 0% darueber. Hoechster Sparzins.  
bernerland:mietzinskonto:credit Mietzinskonto bernerland:mietzinskonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Mietzinskonto.  
bernerland:vereinskonto:credit Vereinskonto bernerland:vereinskonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Vereinskonto.  
bernerland:eurokonto:credit Eurokonto bernerland:eurokonto Bernerland Bank AG bernerland credit 0.0       EUR 2026-05-28 2026-02-01 EUR-Konto fuer Zahlungsverkehr EWU.  
bernerland:kontokorrent:credit Kontokorrent bernerland:kontokorrent Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Geschaeftskonto Kontokorrent CHF und Fremdwaehrungen.  
bernerland:aktionaerskonto:credit Aktionaerskonto bernerland:aktionaerskonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Aktionaerskonto bis und ueber CHF 100 000.  
bernerland:privatkonto60:credit Privatkonto60 bernerland:privatkonto60 Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Privatkonto60 (Senioren).  
bernerland:privatkonto25:credit Privatkonto25 bernerland:privatkonto25 Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Privatkonto25: 0% bis und ueber CHF 25 000.  
bernerland:privatkonto:credit Privatkonto bernerland:privatkonto Bernerland Bank AG bernerland credit 0.0       CHF 2026-05-28 2026-02-01 Standard Privatkonto.  

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 25.666ms · Data license: CC-BY-4.0 · Data source: bankproducts.info