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

8 rows where product_id = "bivial:debit_card_physical" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: fee_type, amount, currency, frequency, valid_from (date)

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
bivial:debit_card_physical:maintenance Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial annual_fee Card maintenance (per card per month) 60.0 CHF annual     Mirrored from PDF p.7 — shared with virtual card. ; (billed monthly at CHF 5/month) 7 2026-02-10 free
bivial:debit_card_physical:delivery_express Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial service_fee Physical card delivery (express) 40.0 CHF one_time       7 2026-02-10 free
bivial:debit_card_physical:delivery_standard Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial service_fee Physical card delivery (standard) 5.0 CHF one_time       7 2026-02-10 free
bivial:debit_card_physical:issuance Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial issuance_fee Card issuance 5.0 CHF one_time     Mirrored from PDF p.7 ("Virtual or Physical Debit cards" — shared fees). 7 2026-02-10 free
bivial:debit_card_physical:atm_intl Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial atm_withdrawal Cash withdrawal international 4.0 percent per_use   atm 4.00% of withdrawal amount, minimum CHF 5. Physical cards only. Outside Euro area. 7 2026-02-10 free
bivial:debit_card_physical:fx_markup Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial fx_markup Foreign exchange markup 3.0 percent per_use     Mirrored from PDF p.7 — applies to both card types when transaction currency differs from card currency. 7 2026-02-10 free
bivial:debit_card_physical:card_payment Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial transaction_fee Card payment (per transaction) 0.5 CHF per_txn     Mirrored from PDF p.7. 7 2026-02-10 free
bivial:debit_card_physical:atm_euro Physical Corporate Debit Card (EUR or USD) bivial:debit_card_physical Bivial AG bivial atm_withdrawal Cash withdrawal Euro area 0.25 percent per_use   atm 0.25% of withdrawal amount, minimum CHF 5. Physical cards only. 7 2026-02-10 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 28.567ms · Data license: CC-BY-4.0 · Data source: bankproducts.info