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

# List my cards

> List the authenticated user's cards.

<Note>
  Requires `Authorization: Bearer <user-access-token>` — the token from [Verify login code](/api-reference/users/verify-otp).
</Note>

The response is a bare array of the authenticated user's cards, ordered by creation date. Use `status` to filter or `q` to search.

Possible card states are `notActivated`, `active`, `locked`, and `canceled`.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/cards/me
openapi: 3.1.0
info:
  title: QASH API
  description: >-
    QASH endpoints for exchange rates, cards, and partner-facing financial
    workflows.
  version: 1.0.0
servers:
  - url: https://api.qash.ai
    description: Partner API (Production)
  - url: https://staging.qash.ai
    description: Staging
  - url: https://app.qash.ai
    description: Production
security: []
tags:
  - name: Exchange rates
    description: Public endpoints for supported assets and TRM-based quotes.
  - name: Cards
    description: >-
      Authenticated partner endpoints for card state, controls, limits, and
      balances.
  - name: Users
    description: Admin endpoints for user provisioning and account management.
paths:
  /api/v1/cards/me:
    get:
      tags:
        - Cards
      summary: List my cards
      description: >-
        Lists the authenticated user's cards. Returns a bare array (not
        paginated unless cursors are used).
      operationId: listMyCards
      parameters:
        - name: status
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/CardStatus'
        - name: q
          in: query
          required: false
          description: Search query.
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            example: 20
        - name: cursor
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: The authenticated user's cards.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardListResponse'
              examples:
                default:
                  summary: Two virtual cards
                  value:
                    - id: 3c90c3cc-0d44-4b50-8888-8dd25736052a
                      type: virtual
                      status: active
                      last4: '8567'
                      expirationMonth: '08'
                      expirationYear: '31'
                      limit:
                        amount: 1000
                        frequency: per24HourPeriod
                    - id: 7a1b2c3d-0d44-4b50-8888-1a2b3c4d5e6f
                      type: virtual
                      status: locked
                      last4: '1234'
                      expirationMonth: '03'
                      expirationYear: '29'
                      limit:
                        amount: 1000
                        frequency: per24HourPeriod
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - bearerAuth: []
components:
  schemas:
    CardStatus:
      type: string
      enum:
        - notActivated
        - active
        - locked
        - canceled
    CardListResponse:
      type: array
      items:
        $ref: '#/components/schemas/CardListItem'
      description: Bare array of the authenticated user's cards.
    CardListItem:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          type: string
          example: virtual
        status:
          $ref: '#/components/schemas/CardStatus'
        last4:
          type: string
          example: '8567'
        expirationMonth:
          type: string
          example: '08'
        expirationYear:
          type: string
          example: '31'
        limit:
          $ref: '#/components/schemas/CardLimit'
        createdAt:
          type: string
          format: date-time
          description: Local card creation timestamp (enriched from cards' own records).
        updatedAt:
          type: string
          format: date-time
          description: Local card last-update timestamp (enriched from cards' own records).
      required:
        - id
    CardLimit:
      type: object
      properties:
        amount:
          type: number
        frequency:
          $ref: '#/components/schemas/LimitFrequency'
      required:
        - amount
        - frequency
    LimitFrequency:
      type: string
      enum:
        - per24HourPeriod
        - perWeek
        - perMonth
        - allTime
  responses:
    Unauthorized:
      description: Invalid or expired JWT.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````