Claims
Data license: CC-BY-4.0 · Data source: bankproducts.info
11 rows where bank_id = "ca_nextbank" sorted by bank_id
This data as json, CSV (advanced)
Suggested facets: claim_value, valid_from, valid_from (date)
| id | bank_id ▼ | product_id | category | claim_key | claim_value | display_text_de | display_text_en | display_text_fr | source | source_url | verifiable | valid_from | valid_to |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ca_nextbank:identity:bank_name | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | legal_name | Crédit Agricole next bank (Suisse) SA | Crédit Agricole next bank (Suisse) SA, gegründet 2000. | ca-nextbank.ch /about + Banking charges 2026 | 1 | 2000-01-01 | |||||
| ca_nextbank:identity:parent | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | parent_group | Crédit Agricole Group (France) | Tochter der Crédit Agricole Group — Europas führende Retail-Bank. | ca-nextbank.ch | 1 | 2000-01-01 | |||||
| ca_nextbank:identity:hq_branches | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | branches_ch | 10 (Basel, Bern, Fribourg, Geneva×3, La Chaux-de-Fonds, Lausanne, Lugano, Yverdon, Zürich×3) | 10 Schweizer Niederlassungen: Basel, Bern, Fribourg, Genf (3), La Chaux-de-Fonds, Lausanne, Lugano, Yverdon-les-Bains, Zürich (3). Kross-kantonale + kross-sprachliche Präsenz. | Banking charges 2026 p. 12 | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:transparency_posture | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | transparency_posture | published | Full retail bank — publiziert vollständige Gebührenliste (Banking charges 2026) inkl. 4-Pack-Struktur. | ca-nextbank.ch /fees | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:frontalier_specialization | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | frontalier_specialization | 1 | Atom #299: explizite Frontalier (FR/DE/IT Grenzgänger) Spezialisierung. CA Simply Pack nur für FR/DE/IT-IBAN-Inhaber. | ca-nextbank.ch /cross-border-commuters | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:pack_tier_structure | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | pack_tiers | 4 (Simply free / Start CHF 5 / Extra CHF 12 / First CHF 15) | Atom #298: 4-stufige Pack-Struktur — Simply (gratis, nur FR/DE/IT-IBAN), Start (CHF 5/Mt), Extra (CHF 12/Mt), First (CHF 15/Mt). | Banking charges 2026 p. 2-5 | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:pillar_3a_liberty | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | pension_partner | Liberty 3a + Lealta Vested Foundations + Pilla app | Säule 3a via Liberty-Stiftung-Partnerschaft (0.70% all-in). Freizügigkeit via Liberty + Lealta. Eigene Pilla-App für 100% digitales Vorsorge-Management. | ca-nextbank.ch /pillar-3a + pilla.swiss | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:credit_card_issuer | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | credit_card_issuer | Viseca | Kreditkartenausgabe via Viseca White-Label-Partnerschaft. | Banking charges 2026 p. 3 (Viseca footnote) | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:mortgage_cross_border | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | mortgage_cross_border | CH (0.1%) + FR/DE (0.8%) | Hypotheken sowohl für CH-Immobilien (0.1% Admin, min CHF 250) ALS AUCH für FR/DE-Immobilien (0.8% Admin, min CHF 600, max CHF 3,000). Cross-border Hypothekarangebot selten im CH-Retail. | Banking charges 2026 p. 6 | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:debit_apple_pay | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | apple_pay_support | 1 | Apple Pay Unterstützung auf Mastercard Debit. | ca-nextbank.ch /apple-pay | 1 | 2026-06-01 | |||||
| ca_nextbank:identity:25_year_anniversary | Crédit Agricole next bank (Suisse) SA ca_nextbank | identity | anniversary_year | 2025 (25 years) | 25-Jahre-Jubiläum 2025 mit HAPPY25 Promo-Aktion (iPhone 17 pro max + Elektrobike + CHF 500 Manor-Voucher Verlosung). | ca-nextbank.ch /25-year-offer | 1 | 2025-01-01 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE claim (
id TEXT PRIMARY KEY, -- zkb:safety:credit_rating
bank_id TEXT NOT NULL REFERENCES bank(id),
product_id TEXT, -- nullable: bank-level claims have no product
category TEXT NOT NULL, -- safety, digital, convenience, esg, identity, media
claim_key TEXT NOT NULL, -- credit_rating, staatsgarantie, apple_pay, ...
claim_value TEXT, -- AAA, true, 4.7, https://...
display_text_de TEXT,
display_text_en TEXT,
display_text_fr TEXT,
source TEXT, -- "S&P Global, March 2026" or "self-reported"
source_url TEXT,
verifiable INTEGER DEFAULT 0, -- 1 = independently verifiable, 0 = self-asserted
valid_from TEXT,
valid_to TEXT
);
CREATE INDEX idx_claim_bank ON claim(bank_id);
CREATE INDEX idx_claim_category ON claim(category);
CREATE INDEX idx_claim_key ON claim(claim_key);