Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
15 rows where product_id = "baloise:zahlen_easy" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: fee_type, amount, frequency, channel, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| baloise:zahlen_easy:numbered_account | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | numbered_account_fee | Nummernbeziehung | 1000.0 | CHF | annual | 14 | 2026-01-01 | free | |||
| baloise:zahlen_easy:banklagernd | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | held_mail | Banklagernd-Gebuehr | 600.0 | CHF | annual | 14 | 2026-01-01 | free | |||
| baloise:zahlen_easy:tax_statement_intl | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | tax_statement | Steuerreport Ausland (D/F/I) | 240.0 | CHF | annual | 14 | 2026-01-01 | free | |||
| baloise:zahlen_easy:domicile_abroad | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | foreign_domicile_fee | Gebuehr Domizil ausserhalb Schweiz | 30.0 | CHF | monthly | Pro Kundenbeziehung. Kunden mit Grenzgaengerbewilligung befreit. Vorsorgekonten nicht gebuehrenpflichtig. | 3 | 2026-01-01 | free | ||
| baloise:zahlen_easy:transfer_chf_paper | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | transfer_paper | Zahlung CHF Inland via Brief/Formular | 15.0 | CHF | per_txn | paper | 10 | 2026-01-01 | free | ||
| baloise:zahlen_easy:standing_order_setup | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | standing_order_setup | Eroeffnung Dauerauftrag (E-Banking kostenlos) | 15.0 | CHF | one_time | counter | 10 | 2026-01-01 | free | ||
| baloise:zahlen_easy:express | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | express_fee | Expresszahlung Zuschlag | 15.0 | CHF | per_txn | 10 | 2026-01-01 | free | |||
| baloise:zahlen_easy:transfer_intl_ebank | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | transfer_intl | Auslandszahlung via E-Banking | 7.0 | CHF | per_txn | ebanking | 10 | 2026-01-01 | free | ||
| baloise:zahlen_easy:tax_statement_ch | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | tax_statement | Steuerauszug Schweiz | 7.0 | CHF | per_txn | Pro Position; min CHF 50 / max CHF 650 pro Auszug. | 14 | 2026-01-01 | free | ||
| baloise:zahlen_easy:base_fee | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | base_fee | Paketpreis pro Monat | 5.0 | CHF | monthly | CHF 5 normal; CHF 0 bei Nutzung von Hypothek oder Anlageprodukt (Delegate, Guide, Baloise Fonds Portfolio). 6 Monate Gratiseinstieg bei Neuabschluss. | 4 | 2026-01-01 | free | ||
| baloise:zahlen_easy:statement_a | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | statement | Monatsauszug A-Post | 2.0 | CHF | per_txn | paper | 4 | 2026-01-01 | free | ||
| baloise:zahlen_easy:statement_b2 | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | statement | Monatsauszug B2-Post | 1.5 | CHF | per_txn | paper | 4 | 2026-01-01 | free | ||
| baloise:zahlen_easy:transfer_eur_ebank | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | transfer_sepa | Zahlung EUR Inland via E-Banking | 1.0 | CHF | per_txn | ebanking | 10 | 2026-01-01 | free | ||
| baloise:zahlen_easy:statement_ebank | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | statement | E-Bankbelege | 0.0 | CHF | per_txn | ebanking | 4 | 2026-01-01 | free | ||
| baloise:zahlen_easy:transfer_chf_ebank | Baloise Zahlen Easy baloise:zahlen_easy | Baloise Bank AG baloise | transfer_domestic | Zahlung CHF Inland via E-Banking | 0.0 | CHF | per_txn | ebanking | 10 | 2026-01-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);