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

11 rows where product_id = "rahnbodmer:depot" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

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

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
rahnbodmer:depot:titellief_ch Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer custody_fee Titellieferung Schweiz 100.0 CHF per_txn ch_clearing   EU/NA 150; uebrige 200 21   pro
rahnbodmer:depot:closure Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer account_closing Saldierungsgebuehr Gesamtbeziehung 75.0 CHF one_time     Titellieferungen separat 29   pro
rahnbodmer:depot:courtage_row Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Courtage Aktien Restliche Welt bis CHF 50k 1.5 percent per_txn row_eq:up_to_50k   Tiered to 1.00% 19   pro
rahnbodmer:depot:fx_other Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer fx_markup Devisenmarge uebrige Waehrungen bis CHF 50k 1.4 percent per_txn other:up_to_50k     22   pro
rahnbodmer:depot:fx_main Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer fx_markup Devisenmarge Hauptwaehrungen bis CHF 50k 1.3 percent per_txn main:up_to_50k   Reduziert bei groesseren Volumen 22   pro
rahnbodmer:depot:courtage_eu_na Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Courtage Aktien EU/NA bis CHF 50k 1.2 percent per_txn eu_na_eq:up_to_50k   min CHF 80; Tiered to 0.70% 19   pro
rahnbodmer:depot:eurex Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Traded Options Eurex 1.0 percent per_txn eurex   1% Praemienwert; min CHF 100. Andere Boersen 1.5%/min CHF 150 20   pro
rahnbodmer:depot:courtage_ch_eq Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Courtage CH-Aktien bis CHF 50k 0.75 percent per_txn ch_equity:up_to_50k   min CHF 80; Tiered down to 0.28% 18   pro
rahnbodmer:depot:courtage_ch_bd Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Courtage Obligationen weltweit bis CHF 50k 0.55 percent per_txn bond:up_to_50k   min CHF 80; Tiered down to 0.15% 18   pro
rahnbodmer:depot:metals_t1 Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer transaction_fee Edelmetalle bis CHF 100k 0.5 percent per_txn metals:up_to_100k   min CHF 150; +25% physische Form 28   pro
rahnbodmer:depot:custody_fee Depot (Custody) rahnbodmer:depot Rahn+Bodmer Co. rahnbodmer custody_fee Depotgebuehr (tailored)   percent per_annum_pct     No public schedule.   2026-06-03 pro

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 38.401ms · Data license: CC-BY-4.0 · Data source: bankproducts.info