> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reap.global/llms.txt
> Use this file to discover all available pages before exploring further.

# List cards

> Retrieves a paginated list of cards. Use cursor-based pagination. Filter by `accountId` to get cards for a specific account.



## OpenAPI

````yaml /api-reference/openapi.json get /cards/
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /cards/:
    get:
      tags:
        - Cards
      summary: List cards
      description: >-
        Retrieves a paginated list of cards. Use cursor-based pagination. Filter
        by `accountId` to get cards for a specific account.
      operationId: list_cards
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            default: 20
            examples:
              - 20
              - 50
              - 100
            description: 'Maximum number of items to return (1-100, default: 20)'
            type: integer
            exclusiveMinimum: 0
            maximum: 100
        - name: cursor
          in: query
          required: false
          schema:
            description: >-
              Opaque cursor for pagination. Pass nextCursor from previous
              response to get next page.
            type: string
        - name: id
          in: query
          required: false
          schema:
            description: Filter cards by exact ID match
            type: string
            format: uuid
        - name: status
          in: query
          required: false
          schema:
            description: Filter cards by status (comma-separated)
            type: array
            items:
              type: string
              enum:
                - ACTIVE
                - FROZEN
                - BLOCKED
                - EXPIRED
              description: >-
                - `ACTIVE`: Card is active and can be used

                - `FROZEN`: Card is frozen (e.g. lost card). End user or client
                can unfreeze.

                - `BLOCKED`: Card is blocked for risk/compliance. Internal
                operation only; unblock via support.

                - `EXPIRED`: Card has expired
              example: ACTIVE
        - name: type
          in: query
          required: false
          schema:
            description: Filter cards by type (comma-separated)
            type: array
            items:
              type: string
              enum:
                - VIRTUAL
                - PHYSICAL
              example: VIRTUAL
        - name: physicalCardStatus
          in: query
          required: false
          schema:
            description: >-
              Filter cards by physical card lifecycle status (comma-separated).
              Only meaningful for `PHYSICAL` cards.
            type: array
            items:
              type: string
              enum:
                - NOT_ORDERED
                - REQUESTED
                - IN_PRODUCTION
                - PRODUCTION_COMPLETED
                - IN_TRANSIT
                - OUT_FOR_DELIVERY
                - DELIVERED
                - ACTIVATED
                - CANCELED
                - DELIVERY_FAILED
                - EXCEPTION
              example: NOT_ORDERED
        - name: accountId
          in: query
          required: false
          schema:
            description: Filter cards by account ID(s) (comma-separated)
            type: array
            items:
              type: string
              format: uuid
        - name: userId
          in: query
          required: false
          schema:
            description: Filter cards by user ID(s) (comma-separated)
            type: array
            items:
              type: string
              format: uuid
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
      responses:
        '200':
          description: Response for status 200
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Card'
                      description: Card resource
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
                    description: Cursor for next page, or null if no more items
                required:
                  - items
                  - nextCursor
components:
  schemas:
    Card:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique card identifier
        accountId:
          type: string
          format: uuid
          description: ID of the account the card belongs to
        userId:
          type: string
          format: uuid
          description: ID of the user the card belongs to
        type:
          type: string
          enum:
            - VIRTUAL
            - PHYSICAL
          description: Card type (`VIRTUAL` or `PHYSICAL`)
          example: VIRTUAL
        status:
          type: string
          enum:
            - ACTIVE
            - FROZEN
            - BLOCKED
            - EXPIRED
          description: Current card status
          example: ACTIVE
        blockReason:
          anyOf:
            - $ref: '#/components/schemas/CardBlockReason'
              title: CardBlockReason
            - type: 'null'
          description: Block reason details (only present when status is `BLOCKED`)
        cardholderName:
          type: string
          description: Cardholder name displayed on card
        last4:
          type: string
          description: >-
            Last 4 digits of the card number. Use reveal endpoint for full
            details.
        3dsChallengeMethod:
          type: string
          enum:
            - SMS
            - WEBHOOK
          description: 3DS challenge verification method
          example: SMS
        physicalCardStatus:
          anyOf:
            - type: string
              enum:
                - NOT_ORDERED
                - REQUESTED
                - IN_PRODUCTION
                - PRODUCTION_COMPLETED
                - IN_TRANSIT
                - OUT_FOR_DELIVERY
                - DELIVERED
                - ACTIVATED
                - CANCELED
                - DELIVERY_FAILED
                - EXCEPTION
              example: NOT_ORDERED
            - type: 'null'
          description: >-
            Physical lifecycle of the card (production + shipping + activation
            rollup). Defaults to `NOT_ORDERED` for newly created physical cards.
            `null` for virtual cards, which have no physical lifecycle.
        createdAt:
          type: string
          description: ISO 8601 timestamp of creation
        updatedAt:
          type: string
          description: ISO 8601 timestamp of last update
      required:
        - id
        - accountId
        - userId
        - type
        - status
        - blockReason
        - cardholderName
        - last4
        - 3dsChallengeMethod
        - physicalCardStatus
        - createdAt
        - updatedAt
    CardBlockReason:
      type: object
      properties:
        type:
          type: string
          enum:
            - SUSPECTED_FRAUD_CVV
            - SUSPECTED_FRAUD_EXPIRY
            - SUSPECTED_FRAUD_PIN
            - ACCOUNT_RESTRICTED
            - OTHER
          description: Machine-readable code for the block reason
          example: SUSPECTED_FRAUD_CVV
        message:
          type: string
          description: Human-readable message for the block reason
      required:
        - type
        - message
      description: Card block reason details
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````