Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
8 rows where product_id = "vontobel:access_ch_li" sorted by amount descending
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| vontobel:access_ch_li:annual | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | mgmt_fee | Access Mandate Fee CH/LI | 2400.0 | CHF | annual | 7 | 2025-11-01 | pro | |||
| vontobel:access_ch_li:closing_gt5m | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | closing_fee | Closing Fee (>CHF 5M) | 1500.0 | CHF | one_time | 15 | 2025-11-01 | pro | |||
| vontobel:access_ch_li:closing_lt250k | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | closing_fee | Closing Fee (≤CHF 250k) | 500.0 | CHF | one_time | Tiered: ≤250k = CHF 500 / ≤1M = CHF 750 / ≤5M = CHF 1,000 / >5M = CHF 1,500. Beinhaltet Saldierung, Dokumenten-Archivierung, Postversand, Kartenkonto-Schliessung, Auftrag-Aufloesungen. | 15 | 2025-11-01 | pro | ||
| vontobel:access_ch_li:securities_delivery | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | service_fee | Securities Delivery (Schweiz und Ausland) | 200.0 | CHF | per_txn | Pro item. | 15 | 2025-11-01 | pro | ||
| vontobel:access_ch_li:physical_docs | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | statement_fee | Physical Delivery of Bank Documents | 120.0 | CHF | annual | Bei Papier-Lieferung statt digital. | 15 | 2025-11-01 | pro | ||
| vontobel:access_ch_li:rm_payment_order | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | service_fee | Payment Order via Relationship Manager | 75.0 | CHF | per_txn | Erste 12 RM-eingereichten Payments/Quartal kostenlos, ab dem 13. CHF 75/Order. Digitale Channel: kostenlos. | 15 | 2025-11-01 | pro | ||
| vontobel:access_ch_li:foreign_payment_our | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | service_fee | Foreign-currency Payment with OUR Cost Option | 20.0 | CHF | per_txn | Flat fee fuer dritte-Bank-Kosten bei Option "All costs charged to ordering client". | 15 | 2025-11-01 | pro | ||
| vontobel:access_ch_li:withholding_tax_reimb | Vontobel Access (CH/LI Domicile) vontobel:access_ch_li | Bank Vontobel AG vontobel | service_fee | Withholding Tax Reimbursement | 9.0 | percent | per_txn_pct | 9% des rueckforderbaren Betrags. Min CHF 250, max CHF 750/Application + third-party expenses. Nur bei min CHF 100 rueckforderbarem Betrag. | 16 | 2025-11-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);