Fees
Data license: CC-BY-4.0 · Data source: bankproducts.info
13 rows where product_id = "lukb:invest_on_demand" sorted by amount descending
This data as json, CSV (advanced)
Suggested facets: fee_type, amount, currency, frequency, note, source_page
| id | product_id | bank_id | fee_type | label | amount ▲ | currency | frequency | tier | channel | note | source_page | valid_from | access_tier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| lukb:invest_on_demand:depot_min | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | annual_fee | Mindestpreis Depotgebuehr | 80.0 | CHF | annual | 8 | pro | ||||
| lukb:invest_on_demand:custody_verwahrstueck | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | custody_fee | Verwahrstuecke | 50.0 | CHF | per_annum_fixed | pro Stueck p.a. | 8 | pro | |||
| lukb:invest_on_demand:courtage_futures | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | courtage | Courtage Financial Futures pro Kontrakt | 20.0 | CHF | per_txn | min CHF 100, max CHF 5'000 | 12 | pro | |||
| lukb:invest_on_demand:depot_tier1 | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Depotgebuehr bis CHF 1 Mio. | 0.4 | percent | per_annum_pct | Pauschalpreis; exkl. MwSt | 8 | pro | |||
| lukb:invest_on_demand:courtage | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | courtage | Courtage Wertschriften | 0.4 | percent | per_txn | min CHF 40, max CHF 1'000 | 12 | pro | |||
| lukb:invest_on_demand:courtage_options | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | courtage | Courtage Optionen und Warrants | 0.4 | percent | per_txn | min CHF 100, max CHF 1'000 | 12 | pro | |||
| lukb:invest_on_demand:depot_tier2 | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Depotgebuehr 1-10 Mio. | 0.35 | percent | per_annum_pct | Pauschalpreis; exkl. MwSt | 8 | pro | |||
| lukb:invest_on_demand:depot_lukb_namenaktien | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Spezialtarif LUKB-Namenaktien (LUKN) | 0.25 | percent | per_annum_pct | max. CHF 400 | 8 | pro | |||
| lukb:invest_on_demand:depot_lukb_obli | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Spezialtarif LUKB-Obligationen | 0.25 | percent | per_annum_pct | 8 | pro | ||||
| lukb:invest_on_demand:depot_lukb_anlagefonds | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Spezialtarif LUKB-Anlagefonds | 0.25 | percent | per_annum_pct | 8 | pro | ||||
| lukb:invest_on_demand:depot_grundpfand | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Depotgebuehr Grundpfandrechte | 0.25 | percent | per_annum_pct | max. CHF 125 | 8 | pro | |||
| lukb:invest_on_demand:depot_lukb_kassenobli | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Spezialtarif LUKB-Kassenobligationen | 0.1 | percent | per_annum_pct | 8 | pro | ||||
| lukb:invest_on_demand:depot_zuschlag_ausland | LUKB Invest on Demand lukb:invest_on_demand | Luzerner Kantonalbank AG lukb | depot_fee | Zuschlag auslaendische Depotstelle | 0.1 | percent | per_annum_pct | 8 | 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);