home / bankproducts

Fees

One row per fee charged on a product. Every row carries a source_page reference to the original bank PDF. NULL amount means 'on request' (tailored pricing) or 'not published in current source'.

Data license: CC-BY-4.0 · Data source: bankproducts.info

9 rows where bank_id = "slm" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: product_id, fee_type, currency, frequency, note, valid_from (date)

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
slm:credit_silber:annual Kreditkarte Silber (Einzelpreis CHF 100/Jahr) slm:kreditkarte_silber Spar- und Leihkasse Münsingen (SLM) slm account_mgmt Kreditkarte Silber Einzelpreis 100.0 CHF per_annum_fixed       1 2025-01-01 free
slm:privatkonto:annual Privatkonto (Einzelpreis CHF 84/Jahr) slm:privatkonto Spar- und Leihkasse Münsingen (SLM) slm account_mgmt Privatkonto Einzelpreis 84.0 CHF per_annum_fixed       1 2025-01-01 free
slm:debit_mc:annual Debit Mastercard (Einzelpreis CHF 50/Karte/Jahr) slm:debit_mc Spar- und Leihkasse Münsingen (SLM) slm account_mgmt Debit Mastercard Einzelpreis 50.0 CHF per_annum_fixed     Pro Karte. KOSTENLOS in Bankpaketen. 1 2025-01-01 free
slm:comfort:monthly Bankpaket COMFORT (Sorglospaket mit Kreditkarte) slm:bankpaket_comfort Spar- und Leihkasse Münsingen (SLM) slm account_mgmt COMFORT Paketpreis regulaer 18.0 CHF monthly     Atom #298 pattern. Loyalty: CHF 9/Monat ab CHF 10k oder Hypothek; KOSTENLOS ab CHF 100k Depot etc. KOSTENLOS bis 25 Jahre (Comfort25). 1 2025-01-01 free
slm:light:monthly Bankpaket LIGHT (Basispaket) slm:bankpaket_light Spar- und Leihkasse Münsingen (SLM) slm account_mgmt LIGHT Paketpreis regulaer 8.0 CHF monthly     Atom #298 pattern: pack-tiered retail banking. Loyalty-discount: CHF 5/Monat ab CHF 10k Vermoegen oder Hypothek; KOSTENLOS ab CHF 100k Depot oder CHF 250k Kundenvermoegen oder CHF 500k Hypothek. 1 2025-01-01 free
slm:sparkonto:annual Sparkonto (Einzelpreis CHF 5/Konto/Jahr) slm:sparkonto Spar- und Leihkasse Münsingen (SLM) slm account_mgmt Sparkonto Einzelpreis 5.0 CHF per_annum_fixed     Pro Konto. 1 2025-01-01 free
slm:debit:ausland_einzel Debit Mastercard (Einzelpreis CHF 50/Karte/Jahr) slm:debit_mc Spar- und Leihkasse Münsingen (SLM) slm service_fee Bargeldbezug Ausland (Einzelpreis) 4.0 CHF per_use     KOSTENLOS in COMFORT pack. 1 2025-01-01 free
slm:debit:fx_einzel Debit Mastercard (Einzelpreis CHF 50/Karte/Jahr) slm:debit_mc Spar- und Leihkasse Münsingen (SLM) slm fx_markup Mastercard FX-Transaktion Ausland 1.5 percent per_use     KOSTENLOS in COMFORT pack. 1 2025-01-01 free
slm:zv:tempo_einzel Privatkonto (Einzelpreis CHF 84/Jahr) slm:privatkonto Spar- und Leihkasse Münsingen (SLM) slm transfer_domestic Tempo-Auftrag Inland (Einzelpreis) 1.0 CHF per_txn     KOSTENLOS in beiden Paketen. 1 2025-01-01 free

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE fee (
    id          TEXT PRIMARY KEY,       -- zkb:privatkonto:account_mgmt
    product_id  TEXT NOT NULL REFERENCES product(id),
    bank_id     TEXT NOT NULL REFERENCES bank(id),  -- denormalized
    fee_type    TEXT NOT NULL,          -- standardized key
    label       TEXT,                   -- human-readable German label from PDF
    amount      REAL,                   -- NULL if text-only or varies
    currency    TEXT DEFAULT 'CHF',     -- CHF, EUR, USD, percent
    frequency   TEXT,                   -- monthly, annual, quarterly, per_txn, one_time, per_annum_pct
    tier        TEXT,                   -- for tiered pricing: "3rd card onwards", "vol:>250k", "member"
    channel     TEXT,                   -- ebanking, paper, counter, atm, app, post_office, all
    note        TEXT,                   -- conditions, fine print
    source_page INTEGER,
    valid_from  TEXT,
    access_tier TEXT NOT NULL DEFAULT 'free'  -- freemium gating; propagated from parent product
        CHECK (access_tier IN ('free', 'pro', 'business'))
);
CREATE INDEX idx_fee_product ON fee(product_id);
CREATE INDEX idx_fee_bank ON fee(bank_id);
CREATE INDEX idx_fee_type ON fee(fee_type);
CREATE INDEX idx_fee_category ON fee(fee_type, bank_id);
CREATE INDEX idx_fee_access_tier ON fee(access_tier);
Powered by Datasette · Queries took 23.797ms · Data license: CC-BY-4.0 · Data source: bankproducts.info