home / bankproducts

Fees

One row per fee charged on a product. Every row carries a source_page reference to the original bank PDF. NULL amount means 'on request' (tailored pricing) or 'not published in current source'.

Data license: CC-BY-4.0 · Data source: bankproducts.info

12 rows where product_id = "nekb:mandat_gestion_premium" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: amount, note

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
nekb:mandat_gestion_premium:croissance_action_tier1 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Croissance et Action jusqu'a CHF 1'000'000 1.7 percent annual strategy=croissance_action;vol=<=1M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:croissance_action_tier2 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Croissance et Action jusqu'a CHF 2'000'000 1.6 percent annual strategy=croissance_action;vol=<=2M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:revenu_equilibre_tier1 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Revenu et Equilibre jusqu'a CHF 1'000'000 1.5 percent annual strategy=revenu_equilibre;vol=<=1M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:croissance_action_tier3 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Croissance et Action jusqu'a CHF 5'000'000 1.5 percent annual strategy=croissance_action;vol=<=5M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:revenu_equilibre_tier2 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Revenu et Equilibre jusqu'a CHF 2'000'000 1.4 percent annual strategy=revenu_equilibre;vol=<=2M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:croissance_action_tier4 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Croissance et Action au-dessus de CHF 5'000'000 1.4 percent annual strategy=croissance_action;vol=>5M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:revenu_equilibre_tier3 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Revenu et Equilibre jusqu'a CHF 5'000'000 1.3 percent annual strategy=revenu_equilibre;vol=<=5M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:revenu_equilibre_tier4 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Revenu et Equilibre au-dessus de CHF 5'000'000 1.2 percent annual strategy=revenu_equilibre;vol=>5M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:obligation_tier1 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Obligation jusqu'a CHF 1'000'000 0.95 percent annual strategy=obligation;vol=<=1M   Forfait all-in: courtages+depot+gestion+releve fiscal 11   pro
nekb:mandat_gestion_premium:obligation_tier2 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Obligation jusqu'a CHF 2'000'000 0.85 percent annual strategy=obligation;vol=<=2M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:obligation_tier3 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Obligation jusqu'a CHF 5'000'000 0.75 percent annual strategy=obligation;vol=<=5M   Forfait all-in 11   pro
nekb:mandat_gestion_premium:obligation_tier4 Mandat de gestion Premium BCN nekb:mandat_gestion_premium Banque Cantonale Neuchateloise nekb mgmt_fee Obligation au-dessus de CHF 5'000'000 0.65 percent annual strategy=obligation;vol=>5M   Forfait all-in 11   pro

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 24.919ms · Data license: CC-BY-4.0 · Data source: bankproducts.info