Interest rates
Data license: CC-BY-4.0 · Data source: bankproducts.info
16 rows where bank_id = "avera" sorted by snapshot_date descending
This data as json, CSV (advanced)
Suggested facets: rate_type, currency, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| avera:edelmetallkonto:credit | Edelmetallkonto avera:edelmetallkonto | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Metallkonto holds physical precious metals; not interest-bearing. Custody fee in fee table. | |||||
| avera:saron_hypothek:debit_indicative | SARON-Hypothek avera:saron_hypothek | Bank Avera Genossenschaft avera | mortgage_rate | CHF | 2026-05-31 | 2026-05-31 | SARON margin not in this snapshot. | |||||
| avera:festhypothek:debit_indicative | Festhypothek avera:festhypothek | Bank Avera Genossenschaft avera | mortgage_rate | CHF | 2026-05-31 | 2026-05-31 | Mortgage Richtzinsen not in this snapshot; bank typically discloses via Hypothekenberatung (consistent with atom #261 cross-bank pattern). | |||||
| avera:kontokorrent:credit | Kontokorrent avera:kontokorrent | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:privatkonto25:credit | Privatkonto25 avera:privatkonto25 | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:privatkonto_fw:credit | Fremdwaehrungskonto avera:privatkonto_fw | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | FX rates per currency on request. | |||||
| avera:privatkonto_eur:credit | Privatkonto EUR avera:privatkonto_eur | Bank Avera Genossenschaft avera | credit | EUR | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:privatkonto:credit | Privatkonto avera:privatkonto | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:mieterkaution:credit | Mieterkaution avera:mieterkaution | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:freizuegigkeitskonto:credit | PRIVOR Freizuegigkeitskonto avera:freizuegigkeitskonto | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:vorsorgekonto_3a:credit | PRIVOR Vorsorgekonto 3a avera:vorsorgekonto_3a | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:sparkonto18:credit | Sparkonto18 avera:sparkonto18 | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:geschenksparkonto:credit | Geschenksparkonto avera:geschenksparkonto | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:sparkonto_top:credit | Sparkonto Top avera:sparkonto_top | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:sparkonto_plus:credit | Sparkonto Plus avera:sparkonto_plus | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. | |||||
| avera:sparkonto:credit | Sparkonto avera:sparkonto | Bank Avera Genossenschaft avera | credit | CHF | 2026-05-31 | 2026-05-31 | Rate not in this snapshot. Bank Avera publishes rates per product page (not consolidated). Public rate URL not found at /de/zinsen. |
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);