> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.seismic-cards.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# Batch issue cards

> Issues up to 100 virtual or physical cards asynchronously. Returns issuer task_id and reference_ids for tracking. Prerequisites match single card issuance.



## OpenAPI

````yaml /openapi.json post /v1/cards/batch
openapi: 3.1.0
info:
  title: Seismic Card Issuance API
  version: 1.0.0
  description: >-
    The Seismic Card Issuance API is the integration surface for issuing and
    managing cards. Authenticate with your Seismic API key, onboard applicants,
    run KYC, and issue virtual or physical cards — all through one white-labeled
    API.
  contact:
    name: Seismic Support
    url: https://seismic.systems
servers:
  - url: https://api.seismic-cards.systems
    description: Production
  - url: http://localhost:4000
    description: Local development
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Exchange Seismic API keys for a short-lived access token.
  - name: Applicants
    description: End-users and businesses, plus their identity verification (KYC).
  - name: KYC
    description: >-
      Identity verification settings, hosted sessions, BYOK share tokens, and
      issuer readiness.
    x-group: Identity verification (KYC)
  - name: Accounts
    description: Funding accounts that back issued cards.
  - name: Cardholders
    description: Approved applicants turned into cardholders.
  - name: Cards
    description: Issue and manage virtual and physical cards.
  - name: Transactions
    description: Card transaction history from the issuer or local ledger.
  - name: Widget SDK
    description: >-
      Public Seismic-hosted Widget.js for Method 1 card reveal (no auth).
      PAN/CVV render inside PCI iframes.
  - name: Card funding
    description: >-
      Fund prepaid cards with stablecoins: Seismic wallet service or
      bring-your-own (BYO) external wallet.
paths:
  /v1/cards/batch:
    post:
      tags:
        - Cards
      summary: Batch issue cards
      description: >-
        Issues up to 100 virtual or physical cards asynchronously. Returns
        issuer task_id and reference_ids for tracking. Prerequisites match
        single card issuance.
      operationId: createCardsBatch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - program_id
                - account_id
                - cardholder_id
                - cards
              properties:
                program_id:
                  type: string
                account_id:
                  type: string
                cardholder_id:
                  type: string
                form_factor:
                  type: string
                  enum:
                    - VIRTUAL
                    - PHYSICAL
                  default: VIRTUAL
                cards:
                  type: array
                  maxItems: 100
                  items:
                    type: object
                    properties:
                      label:
                        type: string
                      spend_limit_cents:
                        type: integer
            example:
              program_id: prog_demo_usd_debit
              account_id: acct_abc123
              cardholder_id: ch_abc123
              form_factor: VIRTUAL
              cards:
                - label: Ops card 1
                - label: Ops card 2
                  spend_limit_cents: 50000
      responses:
        '202':
          description: Batch accepted (async processing).
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      product_type:
                        type: string
                        enum:
                          - DEBIT
                          - PREPAID
                      reference_ids:
                        type: array
                        items:
                          type: string
                      issuer:
                        type: object
                        additionalProperties: true
              example:
                data:
                  product_type: DEBIT
                  reference_ids:
                    - ref_001
                    - ref_002
                  issuer:
                    task_id: task_abc123
                    status: PROCESSING
        '400':
          $ref: '#/components/responses/BadRequest'
components:
  responses:
    BadRequest:
      description: The request was invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: INVALID_REQUEST
              message: Applicant must be approved
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Stable, machine-readable error code.
            message:
              type: string
              description: Human-readable explanation.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer access token obtained from `POST /v1/oauth/token` using your
        Seismic API key.

````