Interest rates
Data license: CC-BY-4.0 · Data source: bankproducts.info
8 rows where bank_id = "zuzwil" sorted by snapshot_date descending
This data as json, CSV (advanced)
Suggested facets: rate_type, valid_from, note, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| zuzwil:metallkonto:rate | Metallkonto zuzwil:metallkonto | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2024-03-01 | Metallkonto-Bewertung; rate not applicable | |||||
| zuzwil:hypothek:rate | Hypothek zuzwil:hypothek | Bank in Zuzwil AG zuzwil | mortgage_rate | CHF | 2026-06-09 | 2024-03-01 | On request — Hypothekarzinsen werden individuell festgesetzt | |||||
| zuzwil:kassenobligation:rate | Kassenobligation zuzwil:kassenobligation | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | MIP-encrypted source | |||||
| zuzwil:privor_3a:rate | PRIVOR Stiftung 3. Saeule zuzwil:privor_3a | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | MIP-encrypted source | |||||
| zuzwil:mieterkautionssparkonto:rate | Mieterkautionssparkonto zuzwil:mieterkautionssparkonto | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | MIP-encrypted source | |||||
| zuzwil:geschenksparkonto:rate | Geschenksparkonto zuzwil:geschenksparkonto | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | MIP-encrypted source | |||||
| zuzwil:sparkonto18:rate | Sparkonto 18 zuzwil:sparkonto18 | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | MIP-encrypted source — see note on zuzwil:sparkonto_top:rate | |||||
| zuzwil:sparkonto_top:rate | Sparkonto Top zuzwil:sparkonto_top | Bank in Zuzwil AG zuzwil | credit | CHF | 2026-06-09 | 2026-05-01 | Kontozinsen.pdf is encrypted with Microsoft Information Protection — rate not extractable from automation. Refer to bank Mobile/E-Banking app or printed copy from branch. |
Advanced export
JSON shape: default, array, newline-delimited, object
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);