Interest rates
Data license: CC-BY-4.0 · Data source: bankproducts.info
9 rows where product_id = "llb_ch: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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| llb_ch:festhypothek:2y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.36 | 24 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 2 Jahre. | |||
| llb_ch:festhypothek:3y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.42 | 36 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 3 Jahre. | |||
| llb_ch:festhypothek:4y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.48 | 48 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 4 Jahre. | |||
| llb_ch:festhypothek:5y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.53 | 60 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 5 Jahre. | |||
| llb_ch:festhypothek:6y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.62 | 72 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 6 Jahre. | |||
| llb_ch:festhypothek:7y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.7 | 84 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 7 Jahre. | |||
| llb_ch:festhypothek:8y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.78 | 96 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 8 Jahre. | |||
| llb_ch:festhypothek:9y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.86 | 108 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 9 Jahre. | |||
| llb_ch:festhypothek:10y | Festhypothek llb_ch:festhypothek | LLB (Schweiz) AG llb_ch | mortgage_rate | 1.94 | 120 | CHF | 2026-05-30 | 2026-05-08 | Festhypothek 10 Jahre. |
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);