Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
12 rows where bank_id = "tellco" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: product_id, fee_type, amount, currency, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| tellco:strategie_100:ter | Tellco Classic Strategie 100 tellco:strategie_100 | Tellco Bank AG tellco | ter | TER Strategie 100 | 0.7 | percent | per_annum_pct | 1 | 2024-01-01 | pro | |||
| tellco:ast_kommerzielle_immobilien:ter | Tellco AST Kommerzielle Immobilien Schweiz tellco:ast_kommerzielle_immobilien | Tellco Bank AG tellco | ter | TER AST Kommerzielle Immobilien | 0.68 | percent | per_annum_pct | 3 | 2024-01-01 | pro | |||
| tellco:ast_immobilien_schweiz:ter | Tellco AST Immobilien Schweiz tellco:ast_immobilien_schweiz | Tellco Bank AG tellco | ter | TER AST Immobilien Schweiz | 0.67 | percent | per_annum_pct | 3 | 2024-01-01 | pro | |||
| tellco:strategie_25:ter | Tellco Classic Strategie 25 tellco:strategie_25 | Tellco Bank AG tellco | ter | TER Strategie 25 | 0.65 | percent | per_annum_pct | 1 | 2024-01-01 | pro | |||
| tellco:alkimia_esg:ter | Tellco Classic Actions Alkimia ESG V tellco:alkimia_esg | Tellco Bank AG tellco | ter | TER Alkimia ESG | 0.65 | percent | per_annum_pct | 2 | 2024-01-01 | pro | |||
| tellco:strategie_10:ter | Tellco Classic Strategie 10 tellco:strategie_10 | Tellco Bank AG tellco | ter | TER Strategie 10 | 0.6 | percent | per_annum_pct | 1 | 2024-01-01 | pro | |||
| tellco:strategie_45:ter | Tellco Classic Strategie 45 tellco:strategie_45 | Tellco Bank AG tellco | ter | TER Strategie 45 | 0.6 | percent | per_annum_pct | 1 | 2024-01-01 | pro | |||
| tellco:vorsorge_3a:depot_third_party | Tellco Vorsorge 3a tellco:vorsorge_3a | Tellco Bank AG tellco | depot_fee | Max. Depotgebuehr Drittfonds-ETFs | 0.45 | percent | per_annum_pct | Auf in der Anlageklasse gehaltene Drittfonds-ETFs. Tellco-eigene Fonds 0%. | 1 | 2024-01-01 | pro | ||
| tellco:freizuegigkeit:depot_third_party | Tellco Freizuegigkeit tellco:freizuegigkeit | Tellco Bank AG tellco | depot_fee | Max. Depotgebuehr Drittfonds-ETFs Freizuegigkeit | 0.45 | percent | per_annum_pct | Auf in der Anlageklasse gehaltene Drittfonds-ETFs. | 1 | 2024-01-01 | pro | ||
| tellco:privatdepot:depot_third_party | Tellco Privatdepot tellco:privatdepot | Tellco Bank AG tellco | depot_fee | Max. Depotgebuehr Drittfonds-ETFs Privatdepot | 0.45 | percent | per_annum_pct | 1 | 2024-01-01 | pro | |||
| tellco:vorsorge_3a:depot_tellco | Tellco Vorsorge 3a tellco:vorsorge_3a | Tellco Bank AG tellco | depot_fee | Depotgebuehr Tellco-eigene Fonds | 0.0 | CHF | per_annum_pct | Strategiefonds 10/25/45/100, Actions Alkimia ESG, AST Immobilien — keine Depotgebuehr. | 1 | 2024-01-01 | pro | ||
| tellco:freizuegigkeit:depot_tellco | Tellco Freizuegigkeit tellco:freizuegigkeit | Tellco Bank AG tellco | depot_fee | Depotgebuehr Tellco-eigene Fonds Freizuegigkeit | 0.0 | CHF | per_annum_pct | 1 | 2024-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);