The Seismic Cards API is a PCI-compliant card issuance platform that lets you embed virtual Visa and Mastercard cards directly into your product. From a single API integration, you can provision user accounts, run identity verification, create cardholders, fund budgets, issue cards, and track authorizations in real time — without ever touching raw card data.Documentation Index
Fetch the complete documentation index at: https://docs.seismic-cards.systems/llms.txt
Use this file to discover all available pages before exploring further.
What you can do
| Capability | Description |
|---|---|
| Sub-account provisioning | Create one Seismic sub-account per end user. Each sub-account is the legal envelope that owns the user’s cardholder, budget, and cards. |
| KYC / KYB | Submit identity verification via supported KYC providers or Seismic’s hosted flow. KYC must pass before a card can be issued. |
| Cardholder management | Create one persistent cardholder profile per user. Update phone, email, and name at any time. |
| Budgets | Per-user funding pools that back cards. Top up and withdraw on demand. |
| Virtual card issuance | Issue Visa or Mastercard virtual cards (VIRTUAL_CARD). Up to N cards per user (configurable per program). |
| Card lifecycle | Freeze, unfreeze, rename, and delete cards. |
| Spending controls | Set per-card velocity limits — per transaction, daily, weekly, monthly, quarterly, yearly, or lifetime. |
| PCI display widget | Show full PAN, CVV, and expiry in your iOS, Android, or web app inside an iframe. Your servers never touch raw card data. |
| Real-time webhooks | Receive card authorizations, KYC status updates, and cardholder events. All payloads are HMAC-SHA256 signed. |
| Transactions | List card authorizations and settled transactions with merchant name, MCC, amount, and status. |
Architecture overview
Seismic’s card platform uses a two-tier hierarchy. Your partner account sits at the top; every end user gets their own sub-account underneath it.- Your partner account is created by Seismic during onboarding. You receive a
clientId,clientSecret,parentAccountId, and amerchantId. - One sub-account per end user. Every cardholder, budget, and card lives under exactly one user sub-account.
- One cardholder per user. All of a user’s cards share one KYC’d cardholder identity.
- One or more budgets per user. Cards spend from the budget they’re attached to. The budget must be funded before authorizations can succeed.
- Many cards per user. Each card is
VIRTUAL_CARDby default and inherits the cardholder’s identity and the budget’s balance.
Card issuance flow
Every card you issue follows this six-step path. Steps 1–3 happen once per user. Steps 4–6 happen every time you issue a new card for that user.ACTIVE and ready for online purchases. Use the PCI widget to display full card details in your UI, and consume webhooks to track authorizations in real time.
For a complete step-by-step walkthrough with copy-paste curl examples, see Issuing a Card.
Conventions
Understanding these conventions will help you read every endpoint’s documentation consistently. Format All requests and responses useapplication/json with UTF-8 encoding.
Success responses always have this shape:
"100.00" or "0.50".
Timestamps
All timestamps are Unix milliseconds (as strings) unless a field’s documentation notes otherwise.
UUIDs
All IDs are UUID v4. The referenceId field is your chosen idempotency key per resource — keep it unique per request.
Idempotency
Mutating endpoints (POST to create or transfer) require an Idempotency-Key header — a UUID v4 you generate. Sending the same key with the same body returns the same response, so it’s safe to retry on network errors.
Support
- Sandbox dashboard: provided by your account manager during onboarding
- Status page: status.seismic.systems
- Email: support@seismic.systems
- Production access: complete your sandbox integration, then request production credentials from your account manager