> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Cards

> List all cards for the authenticated user. Returns both virtual and physical
cards. Returns an empty list if no cardholder has been created yet.



## OpenAPI

````yaml https://core.prod.gnosispay.com/user-api/openapi.json get /cards
openapi: 3.1.0
info:
  title: User Service
  version: 0.0.0
servers: []
security: []
tags:
  - name: Health
  - name: Auth
  - name: User
  - name: Cards
  - name: Phone
  - name: PCI
  - name: Terms
  - name: Source of Funds
paths:
  /cards:
    get:
      tags:
        - Cards
      summary: List Cards
      description: >-
        List all cards for the authenticated user. Returns both virtual and
        physical

        cards. Returns an empty list if no cardholder has been created yet.
      operationId: Cards_listCards
      parameters: []
      responses:
        '200':
          description: Cards retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCardsSuccess'
        '401':
          description: Unauthorized - Invalid JWT
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: User not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Server error - Failed to list cards
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    ListCardsSuccess:
      type: object
      required:
        - cards
      properties:
        cards:
          type: array
          items:
            $ref: '#/components/schemas/Card'
      description: Cards retrieved successfully
    Error:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    Card:
      type: object
      required:
        - id
        - accountId
        - cardholderId
        - status
        - name
        - type
        - createdAt
        - canceledAt
        - nativeCurrency
        - additionalCurrencies
        - printedName
        - issuingDate
        - expirationDate
        - contactlessEnabled
        - mode
        - brand
        - bin
        - last4Digits
        - provisionedAt
        - limit
      properties:
        id:
          $ref: '#/components/schemas/uuid'
        accountId:
          $ref: '#/components/schemas/uuid'
        cardholderId:
          $ref: '#/components/schemas/uuid'
        status:
          $ref: '#/components/schemas/CardStatus'
        name:
          type: string
        type:
          $ref: '#/components/schemas/CardType'
        createdAt:
          type: string
          format: date-time
        canceledAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
        nativeCurrency:
          type: string
        additionalCurrencies:
          type: array
          items:
            type: string
        printedName:
          anyOf:
            - type: string
            - type: 'null'
        issuingDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
        expirationDate:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
        contactlessEnabled:
          anyOf:
            - type: boolean
            - type: 'null'
        mode:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        bin:
          anyOf:
            - type: string
            - type: 'null'
        last4Digits:
          anyOf:
            - type: string
            - type: 'null'
        provisionedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
        limit:
          anyOf:
            - $ref: '#/components/schemas/CardLimitSummary'
            - type: 'null'
          description: >-
            Currently configured daily spending limit. Null if no limit has been
            set for

            this card. Call `GET /cards/{id}/limit` for today's spend and
            remaining

            headroom.
    uuid:
      type: string
      format: uuid
    CardStatus:
      type: string
      enum:
        - all
        - provisioning
        - pending_activation
        - active
        - blocked
        - canceled
    CardType:
      type: string
      enum:
        - virtual
        - plastic
    CardLimitSummary:
      type: object
      required:
        - amount
        - currency
        - decimals
        - syncStatus
        - updatedAt
      properties:
        amount:
          type: integer
          format: int64
          description: >-
            Daily limit in the currency's smallest unit (e.g. cents for USD).
            Divide by

            10^decimals to get the major-unit value. For USD (decimals=2):
            amount=1000

            means $10.00, amount=1000000 means $10,000.00.
        currency:
          type: string
          description: ISO-4217 currency code, e.g. USD.
        decimals:
          type: integer
          format: int32
          description: Number of decimal places for this currency (e.g. 2 for USD).
        syncStatus:
          allOf:
            - $ref: '#/components/schemas/CardLimitSyncStatus'
          description: >-
            Replication state of the limit. 'pending' immediately after an
            update,

            'synced' once the change has been applied downstream, 'failed' if
            the change

            could not be applied after retries.
        updatedAt:
          type: string
          format: date-time
          description: Last time this limit was modified.
    CardLimitSyncStatus:
      type: string
      enum:
        - pending
        - synced
        - failed
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````