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

11 rows where bank_id = "sygnum" sorted by amount descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: product_id, currency, frequency, note, access_tier, valid_from (date)

id product_id bank_id fee_type label amount ▲ currency frequency tier channel note source_page valid_from access_tier
sygnum:ebanking:base_fee Sygnum e-Banking sygnum:ebanking Sygnum Bank AG sygnum base_fee e-Banking Platform Access 0.0 CHF annual     Public statement: included with account relationship; no separate platform fee.   2026-05-31 free
sygnum:cash_account:account_opening Sygnum Cash Account sygnum:cash_account Sygnum Bank AG sygnum account_opening Onboarding (private individuals) 0.0 CHF one_time     Public statement (help portal): onboarding for private individuals is free of charge. Different screening/opening fees apply for corporate and institutional clients (pricing on request).   2026-05-31 free
sygnum:cash_account:account_mgmt Sygnum Cash Account sygnum:cash_account Sygnum Bank AG sygnum account_mgmt Cash Account Maintenance   CHF annual     Not publicly disclosed: pricing gated by Swiss CISA Art. 10(3) qualified-investor classification (>= CHF 500k liquid assets). Onboarding for private individuals stated as free of charge per public help portal.   2026-05-31 free
sygnum:custody_digital_assets:custody_fee Sygnum Digital Asset Custody sygnum:custody_digital_assets Sygnum Bank AG sygnum custody_fee Digital Asset Custody Fee   percent annual     Not publicly disclosed: qualified-investor-only. Industry benchmark for institutional crypto custody is 25-100 bps p.a. (Sygnum not confirmed).   2026-05-31 free
sygnum:trading_digital_assets:transaction_commission Sygnum Digital Asset Trading sygnum:trading_digital_assets Sygnum Bank AG sygnum transaction_commission Digital Asset Trading Commission   percent per_txn     Not publicly disclosed: qualified-investor-only.   2026-05-31 pro
sygnum:staking:staking_fee Sygnum Staking sygnum:staking Sygnum Bank AG sygnum staking_fee Staking Service Fee   percent annual     Not publicly disclosed: qualified-investor-only. Staking-as-a-Service fee typically a percentage of staking rewards.   2026-05-31 free
sygnum:lending_crypto_collateral:interest_late_payment Sygnum Lombard Lending on Digital-Asset Collateral sygnum:lending_crypto_collateral Sygnum Bank AG sygnum interest_late_payment Lombard Interest Rate   percent annual     Not publicly disclosed: qualified-investor-only. Marketing copy claims "competitive rates with no hidden fees or conditions."   2026-05-31 free
sygnum:asset_management:mgmt_fee Sygnum Asset Management sygnum:asset_management Sygnum Bank AG sygnum mgmt_fee Discretionary Asset Management Fee   percent annual     Not publicly disclosed: qualified-investor-only.   2026-05-31 pro
sygnum:tokenization:setup_fee Sygnum Tokenization Platform sygnum:tokenization Sygnum Bank AG sygnum setup_fee Tokenization Project Setup   CHF one_time     Not publicly disclosed: corporate/institutional only. Desygnate primary issuance + SygnEx secondary trading platform.   2026-05-31 free
sygnum:b2b_banking:service_fee Sygnum B2B Banking Services sygnum:b2b_banking Sygnum Bank AG sygnum service_fee B2B Platform Subscription   CHF annual     Not publicly disclosed: B2B partnership pricing only.   2026-05-31 pro
sygnum:credit_card:annual_fee Sygnum Credit Card sygnum:credit_card Sygnum Bank AG sygnum annual_fee Credit Card Annual Fee   CHF annual     Not publicly disclosed: qualified-investor-only.   2026-05-31 free

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 138.068ms · Data license: CC-BY-4.0 · Data source: bankproducts.info