Products
Data license: CC-BY-4.0 · Data source: bankproducts.info
10 rows where bank_id = "alpian" sorted by bank_id descending
This data as json, CSV (advanced)
Suggested facets: category, target_group, access_tier
| id | bank_id ▲ | category | name | currency | client_type | target_group | description | valid_from | source_document_id | bpg | access_tier | is_tailored | notice_period_days | iso_account_type |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| alpian:account | Alpian SA alpian | current_account | Alpian Konto (Multi-Waehrung) | CHF | private | standard | Multi-Waehrungs-Konto in CHF/EUR/USD/GBP. App-only. Kontoeroeffnung und -aufloesung kostenlos. Eingehende Ueberweisungen in CHF/EUR/USD/GBP inklusive. esisuisse-Mitglied. Negativsaldo: 5% p.a. Negativzinsgebuehr. | BPG003DZPDGY | free | 0 | ||||
| alpian:sparkonto | Alpian SA alpian | savings_account | Alpian Sparkonto | CHF | private | standard | Sparkonto. Bei einem Kontostand unter CHF 125'000: 0.01% auf gesamtes Guthaben. Bei Stand ueber CHF 125'000: 0.10% auf gesamtes Guthaben (Sprung-Tier, nicht marginal). Negativzinsgebuehr 5% p.a. bei Negativsaldo. | BPG003DTC0B0 | free | 0 | ||||
| alpian:virtual_visa_debit | Alpian SA alpian | debit_card | Alpian Virtuelle Visa Debit | CHF | private | standard | Virtuelle Visa Debit Karte. Ausstellung kostenlos. Apple Pay und Google Pay. Multi-Waehrung CHF/EUR/USD/GBP Transaktionen inklusive. | BPG003EASJBV | free | 0 | ||||
| alpian:physical_visa_debit | Alpian SA alpian | debit_card | Alpian Physische Visa Debit | CHF | private | standard | Physische Visa Debit Karte. Bestellung oder Ersatz CHF 60 (auch wenn nach 5 Jahren ablaeuft und automatisch ersetzt wird). Apple Pay und Google Pay. | BPG003R45R3R | free | 0 | ||||
| alpian:standard_plan | Alpian SA alpian | wealth_management | Alpian Standard-Plan Anlagemandat | CHF | private | standard | Standard Anlagemandat mit pauschaler Gebuehr 0.75% p.a. All-in (Verwahrung, Transaktionen, Beratung inklusive). Quartalsweise belastet auf Basis durchschnittlichen Marktwerts. | BPG003T6N769 | pro | 0 | ||||
| alpian:signature_plan | Alpian SA alpian | wealth_management | Alpian Signature-Plan Anlagemandat | CHF | private | wealthy | Signature Anlagemandat mit gestaffelter Gebuehr 0.69% bis CHF 300k / 0.60% bis CHF 500k / 0.50% ab CHF 500k. All-in (Verwahrung, Transaktionen, Beratung inklusive). Staffel pro Mandat separat. Quartalsweise belastet. | BPG003DRQAHG | pro | 0 | ||||
| alpian:pillar_3a | Alpian SA alpian | pillar_3a | Alpian Saeule 3a | CHF | private | standard | Vorsorgekonto 3a mit Anlageverwaltung. Verwaltungsgebuehr 0.60% p.a. Lancierungsangebot: 0% bis 31.12.2026 fuer die ersten 1'000 Kundinnen und Kunden. Distinktiv im CH-Vorsorge-Markt (peer norm flat 0.10-0.30%). | BPG0037SVMB5 | pro | 0 | ||||
| alpian:managed_essentials | Alpian SA alpian | wealth_management | Alpian Managed Essentials | CHF | private | standard | Vermoegensverwaltungsmandat mit Tiered-AUM-Gebuehr. Mindesteinlage CHF 2'000 — NIEDRIGSTE Robo-VV-Einstiegsschwelle im DB-Cohort (Migros VV Focus + BLKB Digifolio bei CHF 5'000). Gebuehrenstaffel 0.69%/0.60%/0.50% bei 0/300k/500k. | BPG003PEE36N | pro | 0 | ||||
| alpian:managed_premium | Alpian SA alpian | wealth_management | Alpian Managed Premium | CHF | private | wealthy | Vermoegensverwaltungsmandat fuer hoehere Anlagevolumen. Mindesteinlage CHF 30'000. Gleiche Tiered-AUM-Gebuehrenstaffel. | BPG003PDPNQG | pro | 0 | ||||
| alpian:guided_premium | Alpian SA alpian | wealth_management | Alpian Guided Premium | CHF | private | wealthy | Beratungsmandat (advisory mandate, nicht vollstaendig delegiert). Mindesteinlage CHF 10'000. Gebuehrenstaffel gilt jeweils getrennt fuer jedes Mandat. | BPG0038VGKY7 | pro | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product (
id TEXT PRIMARY KEY, -- zkb:privatkonto, ubs:key4_banking
bank_id TEXT NOT NULL REFERENCES bank(id),
category TEXT NOT NULL, -- current_account, savings_account, pillar_3a, vested_benefits,
-- debit_card, credit_card, prepaid_card, package, ebanking,
-- mortgage, wealth_management, term_deposit, securities_trading,
-- fiduciary_deposit, safe_deposit, guarantee, leasing,
-- financial_planning, personal_advisory, loyalty_program,
-- digital_vault, fx_subscription, robo_advisory, self_directed_trading,
-- metal_account, deposit_account, check
name TEXT NOT NULL, -- bank's own product name
currency TEXT DEFAULT 'CHF',
client_type TEXT DEFAULT 'private', -- private, business, institutional
target_group TEXT, -- standard, young, children, students, seniors, eco, gift, rental_deposit, member
description TEXT,
valid_from TEXT,
source_document_id INTEGER REFERENCES source_document(id),
bpg CHAR(12) -- opaque global id, BPG003xxxxxx; populated post-load by bpg_assignments.sql
CHECK (bpg IS NULL OR bpg GLOB 'BPG003[0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z][0-9A-HJKMNP-TV-Z]'),
access_tier TEXT NOT NULL DEFAULT 'free' -- freemium gating: free public, pro/business paid
CHECK (access_tier IN ('free', 'pro', 'business')),
is_tailored INTEGER -- v2.6 (atom #278): mirrors CDS-AU (Australian Open Banking) isTailored.
-- 0 = pricing publicly published in a schedule (machine-readable, comparable);
-- 1 = negotiated per client (UHNW classical private banking, business loans);
-- NULL = unknown / not yet classified (default for new loads).
-- Distinguishes "we haven't crawled it" (NULL) from "bank deliberately
-- doesn't publish because it's relationship-priced" (1) — three states
-- that previously collapsed into "fee.amount IS NULL".
CHECK (is_tailored IS NULL OR is_tailored IN (0, 1)),
notice_period_days INTEGER -- v2.7 (atom #307): normalised withdrawal notice in days.
-- 0/NULL = on-demand; X = days notice. Conversion: months×30,
-- years×365, days verbatim. Backfilled from
-- product_feature.notice_period free-text by
-- db/notice_period_backfill.sql.
CHECK (notice_period_days IS NULL OR notice_period_days >= 0),
iso_account_type CHAR(4) -- v2.8 (atom #308): ISO 20022 ExternalCashAccountType1Code.
-- 4-letter code from the official ISO enum: CACC (Current),
-- SVGS (Savings), LOAN, SACC (Special), MOMA (Money Market),
-- CHAR (Charges), CASH, etc.
-- NULL for categories outside ISO scope: cards
-- (debit/credit/prepaid), mandates (wealth_management,
-- securities_trading, fiduciary_deposit), CH-specific
-- (pillar_3a, vested_benefits, pension_account).
-- Mapped from `category` by db/iso_account_type_backfill.sql.
-- Backfill is conservative — when in doubt, leave NULL rather
-- than force-fit a code that misrepresents the product.
CHECK (iso_account_type IS NULL OR iso_account_type GLOB '[A-Z][A-Z][A-Z][A-Z]')
);
CREATE INDEX idx_product_bank ON product(bank_id);
CREATE INDEX idx_product_category ON product(category);
CREATE INDEX idx_product_lookup ON product(bank_id, category, client_type, target_group);
CREATE UNIQUE INDEX idx_product_bpg ON product(bpg) WHERE bpg IS NOT NULL;
CREATE INDEX idx_product_access_tier ON product(access_tier);
CREATE INDEX idx_product_is_tailored ON product(is_tailored) WHERE is_tailored IS NOT NULL;
CREATE INDEX idx_product_iso_account_type ON product(iso_account_type) WHERE iso_account_type IS NOT NULL;
CREATE INDEX idx_product_notice_period ON product(notice_period_days) WHERE notice_period_days IS NOT NULL;