> ## 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.

# Get card

> Retrieves a single card by its unique identifier.



## OpenAPI

````yaml /api-reference/openapi.json get /cards/{id}
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/{id}:
    get:
      tags:
        - Cards
      summary: Get card
      description: Retrieves a single card by its unique identifier.
      operationId: get_cards
      parameters:
        - name: id
          in: path
          required: true
          schema:
            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: Card resource with directly-attached spend policies
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardDetail'
        '404':
          description: Card not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: CARD_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: CardNotFoundError
components:
  schemas:
    CardDetail:
      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
        policies:
          type: array
          items:
            $ref: '#/components/schemas/Policy'
          description: >-
            Active spend policies attached directly to this card. Only
            directly-attached policies are included - those attached at other
            scopes and platform-enforced limits are not.
      required:
        - id
        - accountId
        - userId
        - type
        - status
        - blockReason
        - cardholderName
        - last4
        - 3dsChallengeMethod
        - physicalCardStatus
        - createdAt
        - updatedAt
        - policies
    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
    Policy:
      oneOf:
        - $ref: '#/components/schemas/MerchantRestrictionPolicy'
          title: MerchantRestriction
        - $ref: '#/components/schemas/ChannelRestrictionPolicy'
          title: ChannelRestriction
        - $ref: '#/components/schemas/TransactionAmountLimitPolicy'
          title: TransactionAmountLimit
        - $ref: '#/components/schemas/SpendLimitPolicy'
          title: SpendLimit
        - $ref: '#/components/schemas/AuthorizationCountLimitPolicy'
          title: AuthorizationCountLimit
      description: Policy resource
    MerchantRestrictionPolicy:
      type: object
      properties:
        id:
          type: string
          description: >-
            Policy ID. A UUID for your policies; a stable identifier for
            platform policies.
        type:
          type: string
          const: MERCHANT_RESTRICTION
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: USER
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: User
            - type: object
              properties:
                type:
                  type: string
                  const: CARD
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Card
          description: Where the policy attaches.
        status:
          type: string
          enum:
            - ACTIVE
            - DISABLED
          example: ACTIVE
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: Human-readable label.
        config:
          type: object
          properties:
            match:
              oneOf:
                - type: object
                  properties:
                    dimension:
                      type: string
                      const: MCC
                    codes:
                      minItems: 1
                      type: array
                      items:
                        type: string
                  required:
                    - dimension
                    - codes
                  title: Mcc
                - type: object
                  properties:
                    dimension:
                      type: string
                      const: MERCHANT_COUNTRY
                    countries:
                      minItems: 1
                      type: array
                      items:
                        type: string
                        minLength: 2
                        maxLength: 2
                  required:
                    - dimension
                    - countries
                  title: MerchantCountry
          required:
            - match
          description: Block transactions whose merchant matches the criteria.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - scope
        - status
        - name
        - config
        - createdAt
        - updatedAt
    ChannelRestrictionPolicy:
      type: object
      properties:
        id:
          type: string
          description: >-
            Policy ID. A UUID for your policies; a stable identifier for
            platform policies.
        type:
          type: string
          const: CHANNEL_RESTRICTION
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: USER
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: User
            - type: object
              properties:
                type:
                  type: string
                  const: CARD
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Card
          description: Where the policy attaches.
        status:
          type: string
          enum:
            - ACTIVE
            - DISABLED
          example: ACTIVE
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: Human-readable label.
        config:
          type: object
          properties:
            channels:
              minItems: 1
              type: array
              items:
                type: string
                enum:
                  - ATM
                  - POS
                  - ECOMMERCE
                example: ATM
          required:
            - channels
          description: Block transactions on the listed channels.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - scope
        - status
        - name
        - config
        - createdAt
        - updatedAt
    TransactionAmountLimitPolicy:
      type: object
      properties:
        id:
          type: string
          description: >-
            Policy ID. A UUID for your policies; a stable identifier for
            platform policies.
        type:
          type: string
          const: TRANSACTION_AMOUNT_LIMIT
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: USER
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: User
            - type: object
              properties:
                type:
                  type: string
                  const: CARD
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Card
          description: Where the policy attaches.
        status:
          type: string
          enum:
            - ACTIVE
            - DISABLED
          example: ACTIVE
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: Human-readable label.
        config:
          type: object
          properties:
            maxAmount:
              type: number
              exclusiveMinimum: 0
              examples:
                - 100.5
                - 0
                - 1234.99
              description: Amount in USD.
          required:
            - maxAmount
          description: Cap the amount of a single transaction.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - scope
        - status
        - name
        - config
        - createdAt
        - updatedAt
    SpendLimitPolicy:
      type: object
      properties:
        id:
          type: string
          description: >-
            Policy ID. A UUID for your policies; a stable identifier for
            platform policies.
        type:
          type: string
          const: SPEND_LIMIT
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: USER
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: User
            - type: object
              properties:
                type:
                  type: string
                  const: CARD
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Card
          description: Where the policy attaches.
        status:
          type: string
          enum:
            - ACTIVE
            - DISABLED
          example: ACTIVE
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: Human-readable label.
        config:
          type: object
          properties:
            window:
              type: object
              properties:
                type:
                  type: string
                  const: CALENDAR
                period:
                  type: string
                  enum:
                    - DAILY
                    - WEEKLY
                    - MONTHLY
                    - YEARLY
                    - LIFETIME
                  example: DAILY
              required:
                - type
                - period
            maxAmount:
              type: number
              exclusiveMinimum: 0
              examples:
                - 100.5
                - 0
                - 1234.99
              description: Amount in USD.
            filter:
              type: object
              properties:
                channels:
                  minItems: 1
                  type: array
                  items:
                    type: string
                    enum:
                      - ATM
                      - POS
                      - ECOMMERCE
                    example: ATM
                merchant:
                  oneOf:
                    - type: object
                      properties:
                        dimension:
                          type: string
                          const: MCC
                        codes:
                          minItems: 1
                          type: array
                          items:
                            type: string
                      required:
                        - dimension
                        - codes
                      title: Mcc
                    - type: object
                      properties:
                        dimension:
                          type: string
                          const: MERCHANT_COUNTRY
                        countries:
                          minItems: 1
                          type: array
                          items:
                            type: string
                            minLength: 2
                            maxLength: 2
                      required:
                        - dimension
                        - countries
                      title: MerchantCountry
          required:
            - window
            - maxAmount
          description: Cap cumulative spend over a calendar window.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - scope
        - status
        - name
        - config
        - createdAt
        - updatedAt
    AuthorizationCountLimitPolicy:
      type: object
      properties:
        id:
          type: string
          description: >-
            Policy ID. A UUID for your policies; a stable identifier for
            platform policies.
        type:
          type: string
          const: AUTHORIZATION_COUNT_LIMIT
        scope:
          oneOf:
            - type: object
              properties:
                type:
                  type: string
                  const: PROJECT
              required:
                - type
              title: Project
            - type: object
              properties:
                type:
                  type: string
                  const: USER
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: User
            - type: object
              properties:
                type:
                  type: string
                  const: CARD
                id:
                  type: string
                  format: uuid
              required:
                - type
                - id
              title: Card
          description: Where the policy attaches.
        status:
          type: string
          enum:
            - ACTIVE
            - DISABLED
          example: ACTIVE
        name:
          type: string
          minLength: 1
          maxLength: 128
          description: Human-readable label.
        config:
          type: object
          properties:
            window:
              type: object
              properties:
                type:
                  type: string
                  const: CALENDAR
                period:
                  type: string
                  enum:
                    - DAILY
                    - WEEKLY
                    - MONTHLY
                    - YEARLY
                    - LIFETIME
                  example: DAILY
              required:
                - type
                - period
            maxCount:
              type: integer
              exclusiveMinimum: 0
              maximum: 9007199254740991
              description: Maximum number of transactions in the window.
            filter:
              type: object
              properties:
                channels:
                  minItems: 1
                  type: array
                  items:
                    type: string
                    enum:
                      - ATM
                      - POS
                      - ECOMMERCE
                    example: ATM
                merchant:
                  oneOf:
                    - type: object
                      properties:
                        dimension:
                          type: string
                          const: MCC
                        codes:
                          minItems: 1
                          type: array
                          items:
                            type: string
                      required:
                        - dimension
                        - codes
                      title: Mcc
                    - type: object
                      properties:
                        dimension:
                          type: string
                          const: MERCHANT_COUNTRY
                        countries:
                          minItems: 1
                          type: array
                          items:
                            type: string
                            minLength: 2
                            maxLength: 2
                      required:
                        - dimension
                        - countries
                      title: MerchantCountry
          required:
            - window
            - maxCount
          description: Cap the number of transactions over a calendar window.
        createdAt:
          type: string
          description: ISO 8601 creation timestamp.
        updatedAt:
          type: string
          description: ISO 8601 last-update timestamp.
      required:
        - id
        - type
        - scope
        - status
        - name
        - config
        - createdAt
        - updatedAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````