> ## 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://gp-auth-module.prod.gnosispay.com/openapi.json get /cards
openapi: 3.0.0
info:
  version: 1.0.0
  title: SIWE Authentication API
  description: Sign In With Ethereum authentication service
servers:
  - url: https://gp-auth-module.prod.gnosispay.com
    description: API server
security: []
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.
      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: Internal server error - Failed to list cards
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - Bearer: []
components:
  schemas:
    ListCardsSuccess:
      type: object
      properties:
        cards:
          type: array
          items:
            $ref: '#/components/schemas/Card'
      required:
        - cards
    Error:
      type: object
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
      required:
        - success
        - error
    Card:
      type: object
      properties:
        id:
          type: string
          format: uuid
        accountId:
          type: string
          format: uuid
        cardholderId:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - all
            - provisioning
            - pending_activation
            - active
            - blocked
            - canceled
        name:
          type: string
        type:
          type: string
          enum:
            - virtual
            - plastic
        createdAt:
          type: string
          format: date-time
        canceledAt:
          type: string
          nullable: true
          format: date-time
        nativeCurrency:
          type: string
        additionalCurrencies:
          type: array
          items:
            type: string
        printedName:
          type: string
          nullable: true
        issuingDate:
          type: string
          nullable: true
          format: date-time
        expirationDate:
          type: string
          nullable: true
          format: date-time
        contactlessEnabled:
          type: boolean
          nullable: true
        mode:
          type: string
          nullable: true
        brand:
          type: string
          nullable: true
        bin:
          type: string
          nullable: true
        last4Digits:
          type: string
          nullable: true
        provisionedAt:
          type: string
          nullable: true
          format: date-time
        limit:
          $ref: '#/components/schemas/CardLimitSummary'
      required:
        - id
        - accountId
        - cardholderId
        - status
        - name
        - type
        - createdAt
        - canceledAt
        - nativeCurrency
        - additionalCurrencies
        - printedName
        - issuingDate
        - expirationDate
        - contactlessEnabled
        - mode
        - brand
        - bin
        - last4Digits
        - provisionedAt
        - limit
    CardLimitSummary:
      type: object
      nullable: true
      properties:
        amount:
          type: integer
          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
          description: Number of decimal places for this currency (e.g. 2 for USD).
        syncStatus:
          type: string
          enum:
            - pending
            - synced
            - failed
          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.
      required:
        - amount
        - currency
        - decimals
        - syncStatus
        - updatedAt
      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.

````