Interest rates
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where product_id = "migrosbank:festhypothek" sorted by snapshot_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| migrosbank:festhypothek:debit:2yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.4 | 24 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.43 -> Q3 1.40 (-3bp). Standardzinssatz. Online-Hypothek Vorzugszinssatz -30bp = 1.100%. | |||
| migrosbank:festhypothek:debit:3yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.5 | 36 | CHF | 2026-07-14 | 2026-07-14 | unchanged. Vorzugszinssatz 1.200%. | |||
| migrosbank:festhypothek:debit:4yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.59 | 48 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.58 -> Q3 1.59 (+1bp). Vorzugszinssatz 1.290%. | |||
| migrosbank:festhypothek:debit:5yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.66 | 60 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.63 -> Q3 1.66 (+3bp). Vorzugszinssatz 1.360%. | |||
| migrosbank:festhypothek:debit:6yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.74 | 72 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.70 -> Q3 1.74 (+4bp). Vorzugszinssatz 1.440%. | |||
| migrosbank:festhypothek:debit:7yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.8 | 84 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.76 -> Q3 1.80 (+4bp). Vorzugszinssatz 1.500%. | |||
| migrosbank:festhypothek:debit:8yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.88 | 96 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.81 -> Q3 1.88 (+7bp). Vorzugszinssatz 1.580%. | |||
| migrosbank:festhypothek:debit:9yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 1.93 | 108 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.87 -> Q3 1.93 (+6bp). Vorzugszinssatz 1.630%. | |||
| migrosbank:festhypothek:debit:10yr | Festhypothek migrosbank:festhypothek | Migros Bank AG migrosbank | mortgage_rate | 2.0 | 120 | CHF | 2026-07-14 | 2026-07-14 | Q2 1.95 -> Q3 2.00 (+5bp). Vorzugszinssatz 1.700%. |
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);