Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
6 rows where product_id = "vpbank_ch:depot" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| vpbank_ch:depot:delivery_physical | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Physische Wertpapierlieferung | 250.0 | CHF | per_txn | 7 | 2026-01-01 | pro | |||
| vpbank_ch:depot:delivery_out_electronic | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Wertpapierlieferung Ausgang elektronisch | 150.0 | CHF | per_txn | 7 | 2026-01-01 | pro | |||
| vpbank_ch:depot:internal_transfer | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Interne Depotuebertraege | 10.0 | CHF | per_txn | Pro Valor; mindestens CHF 100 pro Transaktion | 7 | 2026-01-01 | pro | ||
| vpbank_ch:depot:custody_fee:outside | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Depotgebuehr ausserhalb Fokusmaerkte | 0.45 | percent | annual | outside_focus | 7 | 2026-01-01 | pro | ||
| vpbank_ch:depot:custody_fee:focus | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Depotgebuehr Fokusmaerkte | 0.35 | percent | annual | focus_markets | Mindestgebuehr CHF 10 p.a. pro Position | 7 | 2026-01-01 | pro | |
| vpbank_ch:depot:delivery_in_electronic | VP Bank (Schweiz) Wertschriftendepot vpbank_ch:depot | VP Bank (Schweiz) AG vpbank_ch | custody_fee | Wertpapierlieferung Eingang elektronisch | 0.0 | CHF | per_txn | 7 | 2026-01-01 | pro |
Advanced export
JSON shape: default, array, newline-delimited, object
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);