Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
14 rows where bank_id = "tellco" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: product_id, fee_type, amount, 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 | tier_floor | tier_ceiling | compliance_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 | ||||||
| tellco:bib_best_idea_esg:cleanup_sweep_on_request | BIB Best Idea ESG Anlagefonds tellco:bib_best_idea_esg | Tellco Bank AG tellco | mgmt_fee | CHF | annual | Konditionen fuer BIB Best Idea ESG Anlagefonds (wealth_management) nicht im 2026-Q3 Crawl publiziert / auf Anfrage. Bulk NULL-anchor via cleanup-sweep. | pro | |||||||||
| tellco:bib_sustainable_heritage:cleanup_sweep_on_request | BIB Sustainable Heritage Anlagefonds tellco:bib_sustainable_heritage | Tellco Bank AG tellco | mgmt_fee | CHF | annual | Konditionen fuer BIB Sustainable Heritage Anlagefonds (wealth_management) nicht im 2026-Q3 Crawl publiziert / auf Anfrage. Bulk NULL-anchor via cleanup-sweep. | 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')),
-- v3.2 (2026-08-12): structured tier bounds. NULL = open-ended.
-- tier_ceiling is EXCLUSIVE (matches interest_rate convention).
-- Populated by db/fee_tier_backfill.sql from free-text fee.label regex-parse.
tier_floor REAL
CHECK (tier_floor IS NULL OR tier_floor >= 0),
tier_ceiling REAL
CHECK (tier_ceiling IS NULL OR tier_ceiling >= 0),
-- v3.4 (2026-08-12, PR #411): compliance-tier attribution.
compliance_tier TEXT
CHECK (compliance_tier IS NULL OR compliance_tier IN ('standard', 'enhanced_monitoring', 'pep', 'sanctioned_jurisdiction'))
);
CREATE INDEX idx_fee_product ON fee(product_id);
CREATE INDEX idx_fee_bank ON fee(bank_id);
CREATE INDEX idx_fee_tier ON fee(tier_floor, tier_ceiling) WHERE tier_floor IS NOT NULL OR tier_ceiling IS NOT NULL;
CREATE INDEX idx_fee_compliance_tier ON fee(compliance_tier) WHERE compliance_tier IS NOT NULL;
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);