Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
7 rows where product_id = "alpian:physical_visa_debit" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: fee_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| alpian:physical_visa_debit:issuance | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | card_delivery | Bestellung oder Ersatz einer physischen Karte | 60.0 | CHF | one_time | Auch bei automatischer Erneuerung nach 5 Jahren. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:dispute | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | incident_fee | Beanstandung einer Transaktion (Mindestgebuehr bei abgelehntem Fall) | 25.0 | CHF | per_txn | Kostenlos bei bestaetigtem Betrug; mind. CHF 25 bei abgelehntem Fall. Visa-managed, ab CHF 50 Transaktionswert moeglich. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:atm_ch_eur | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | atm_domestic_other | Geldautomatenabhebung EUR Schweiz | 5.0 | EUR | per_txn | USD und GBP analog (5 in jeweiliger Waehrung). Zzgl. Drittspesen. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:atm_abroad | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | atm_abroad | Geldautomatenabhebung ausserhalb der Schweiz | 2.5 | percent | per_txn | Auf Transaktionsbetrag. Zzgl. eventueller Drittspesen. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:atm_ch_chf | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | atm_domestic_other | Geldautomatenabhebung CHF Schweiz | 2.0 | CHF | per_txn | Zzgl. zu eventueller Drittspesengebuehr. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:tx_native | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | fx_markup | Kartentransaktionen in CHF/EUR/USD/GBP | 0.0 | CHF | per_txn | Inklusive (Multi-Waehrung). Bei mangelnder Deckung automatischer FX vom hoechstdotierten Konto. | 1 | 2025-11-06 | free | ||
| alpian:physical_visa_debit:tx_other_fx | Alpian Physische Visa Debit alpian:physical_visa_debit | Alpian SA alpian | fx_markup | Kartentransaktionen in anderen Waehrungen | CHF | per_txn | VISA-Wechselkurs ohne Aufschlag der Bank (siehe separat Devisenwechsel-Aufschlag). | 1 | 2025-11-06 | 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);