Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
8 rows where product_id = "vz:privatkonto" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: amount, currency, frequency, note, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| vz:privatkonto:withdrawal_penalty | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | excess_payment_fee | Penalty fuer Bezug ueber CHF 100k/31 Tage ohne Kuendigung | 0.5 | percent | per_txn | Auf den die Limite ueberschreitenden Betrag. Beim Uebertrag in ein Mandat keine Kuendigung erforderlich. | 2 | 2024-09-01 | free | ||
| vz:privatkonto:account_open | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | account_opening_fee | Kontoeroeffnung | 0.0 | CHF | one_time | kostenlos | 1 | 2024-09-01 | free | ||
| vz:privatkonto:account_close | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | closing_fee | Kontosaldierung | 0.0 | CHF | one_time | kostenlos | 1 | 2024-09-01 | free | ||
| vz:privatkonto:account_mgmt | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | account_mgmt | Kontofuehrung | 0.0 | CHF | monthly | kostenlos | 1 | 2024-09-01 | free | ||
| vz:privatkonto:postage | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | postage | Versandspesen | 0.0 | CHF | per_txn | Werden nicht belastet. | 1 | 2024-09-01 | free | ||
| vz:privatkonto:wire_ch | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | transfer_domestic | Zahlungsverkehr Inland (elektronisch und schriftlich) | 0.0 | CHF | per_txn | all | Kostenlos. Sowohl elektronisch als auch schriftlich erteilte Auftraege. | 3 | 2024-09-01 | free | |
| vz:privatkonto:sepa | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | transfer_sepa | SEPA in EUR (elektronisch und schriftlich) | 0.0 | CHF | per_txn | all | Kostenlos. SEPA in EUR ueber 30+ Laender. | 3 | 2024-09-01 | free | |
| vz:privatkonto:wire_intl | Privatkonto / Hauptkonto vz:privatkonto | VZ Depotbank AG vz | transfer_intl | Zahlungsverkehr Ausland (non-SEPA) | 0.0 | CHF | per_txn | Keine Kosten der VZ Depotbank — jedoch koennen Gebuehren der Empfaengerbank oder von Drittbanken anfallen (passthrough). | 3 | 2024-09-01 | free |
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);