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

# Get specified account card



## OpenAPI

````yaml get /cards/{card_id}
openapi: 3.0.0
info:
  title: FinUp Wallet
  description: API Documentation for Finup
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /cards/{card_id}:
    get:
      tags:
        - Card
      summary: Get specified account card
      operationId: CardController_getAccountCard
      parameters:
        - name: card_id
          required: true
          in: path
          description: Mongo ID of the card
          schema:
            type: string
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      responses:
        '201':
          description: Card created successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      id:
                        type: string
                        example: 67aa1234567890abcdef1234
                      created_at:
                        type: string
                        format: date-time
                        example: '2025-01-15T10:30:45.123Z'
                      updated_at:
                        type: string
                        format: date-time
                        example: '2025-06-20T16:45:30.789Z'
                      member:
                        type: string
                        example: 67bb0987654321fedcba5678
                      user:
                        type: string
                        example: 67cc112233445566778899aa
                      account:
                        type: string
                        example: 67dd2233445566778899bbaa
                      PAN:
                        type: string
                        example: '1234567812345678'
                      EXP:
                        type: string
                        example: 12/30
                      CVV:
                        type: string
                        example: '123'
                      masked_PAN:
                        type: string
                        example: 1234 56•• •••• 5678
                      name:
                        type: string
                        example: Virtual Card
                      balance:
                        type: number
                        example: 100
                      deposit:
                        type: number
                        example: 4500.5
                      withdraw:
                        type: number
                        example: 1200.75
                      spent:
                        type: number
                        example: 3300.25
                      status:
                        type: string
                        example: Active
                      currency:
                        type: string
                        example: USD
                      currency_short_name:
                        type: string
                        example: USD
                      future_balance:
                        type: number
                        example: 150
                      past_balance:
                        type: number
                        example: 200
                      category:
                        type: string
                        example: Business
                      bin_id:
                        type: string
                        example: 67ee33445566778899aabbcc
                      3ds:
                        type: boolean
                        example: true
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 401
                  error_message:
                    type: string
                    example: Unauthorized
        '404':
          description: Card not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 404
                  error_message:
                    type: string
                    example: Card not found

````