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

# Get full card details

> Return masked details for the primary card, with optional PAN and CVC.

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

Returns the same masked details as [Get card details](/api-reference/cards/details), plus the masked PAN and CVC when you pass `includeSecrets=true`. Secrets are omitted while the card is `locked` or when `includeSecrets` is not `true`.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/cards/details/full
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/details/full:
    get:
      tags:
        - Cards
      summary: Get full card details
      description: >-
        Returns masked details for the authenticated user's primary card, plus
        the masked PAN and CVC when includeSecrets=true and the card is not
        locked.
      operationId: getMyCardFullDetails
      parameters:
        - name: includeSecrets
          in: query
          required: false
          description: Set to 'true' to include the masked PAN and CVC.
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
      responses:
        '200':
          description: Full card details returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardFullDetailsResponse'
              examples:
                withSecrets:
                  summary: Full details with secrets
                  value:
                    id: 3c90c3cc-0d44-4b50-8888-8dd25736052a
                    type: virtual
                    status: active
                    last4: '8567'
                    expirationMonth: '08'
                    expirationYear: '31'
                    limit:
                      amount: 1000
                      frequency: per24HourPeriod
                    tokenWallets:
                      - applePay
                    cardNumber: 4549********8567
                    cvc: '739'
                withoutSecrets:
                  summary: Details without secrets
                  value:
                    id: 3c90c3cc-0d44-4b50-8888-8dd25736052a
                    type: virtual
                    status: active
                    last4: '8567'
                    expirationMonth: '08'
                    expirationYear: '31'
                    limit:
                      amount: 1000
                      frequency: per24HourPeriod
                    tokenWallets:
                      - applePay
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/CardNotFound'
      security:
        - bearerAuth: []
components:
  schemas:
    CardFullDetailsResponse:
      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'
        tokenWallets:
          type: array
          items:
            type: string
          example:
            - applePay
        cardNumber:
          type: string
          example: 4549********8567
          description: >-
            Masked PAN. Only present when includeSecrets=true and the card is
            not locked.
        cvc:
          type: string
          example: '739'
          description: Only present when includeSecrets=true and the card is not locked.
      required:
        - id
        - type
        - status
        - last4
        - expirationMonth
        - expirationYear
        - limit
    CardStatus:
      type: string
      enum:
        - notActivated
        - active
        - locked
        - canceled
    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.
    CardNotFound:
      description: The authenticated user does not have a registered card.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````