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

# Query Card Information



## OpenAPI

````yaml /CARDPLUS-API.json get /wallet/api/user/cardInfo
openapi: 3.0.3
info:
  description: Wallet API Documentation
  version: '2.0'
  title: Wallet API Documentation
servers:
  - url: http://access-wallet.test.ftrader.pro
    description: Test development server
security: []
tags:
  - name: General
    description: General common APIs
  - name: Address Management
    description: User address CRUD operations
  - name: Agency Management
    description: Agency-related operations including card application and asset management
  - name: Asset Management
    description: User asset list and asset transfer operations
  - name: Card Management
    description: >-
      Card operations including activation, locking, balance, top-up, transfers,
      and queries
  - name: Deposit
    description: Deposit and top-up from user assets to card
  - name: KYT
    description: Know Your Transaction check
  - name: User Management
    description: User registration, KYC, card application, and information queries
paths:
  /wallet/api/user/cardInfo:
    get:
      tags:
        - User Management
      summary: Query Card Information
      operationId: userCardInfoUsingGET
      parameters:
        - name: agencyCode
          in: query
          description: Agency code
          required: true
          schema:
            type: string
        - name: appId
          in: query
          description: App identifier
          required: true
          schema:
            type: string
        - name: appUserId
          in: query
          description: App user ID
          required: true
          schema:
            type: string
        - name: cardId
          in: query
          description: Card ID
          required: true
          schema:
            type: integer
            format: int64
        - name: sign
          in: query
          description: Signature
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseUserCardInfo'
components:
  schemas:
    ResponseUserCardInfo:
      type: object
      required:
        - code
        - msg
      properties:
        code:
          type: integer
          format: int32
        data:
          $ref: '#/components/schemas/UserCardInfo'
        msg:
          type: string
    UserCardInfo:
      type: object
      required:
        - appId
        - appUserId
      properties:
        appId:
          type: string
          description: App identifier
        appUserId:
          type: string
          description: App user ID
        cardAccountStatus:
          type: string
          description: Card account status
          enum:
            - APPROVED
            - CONFIRM
            - NOT_APPLY
            - PENDING_APPROVE
            - PENDING_REVIEW
            - REJECTED
            - REQUIRE_DOC_UPDATE
        cardAssetId:
          type: integer
          format: int64
          description: Card asset account ID
        cardHolder:
          type: string
          description: Cardholder name
        cardId:
          type: integer
          format: int64
          description: User card ID
        cardName:
          type: string
          description: Card name
        cardNumber:
          type: string
          description: Card number (with asterisks)
        cardUUID:
          type: string
          description: Card identifier ID
        currency:
          type: string
          description: Card currency
        currencyIcon:
          type: string
          description: Currency icon
        currencySymbol:
          type: string
          description: Currency symbol
        decimalPlaces:
          type: integer
          format: int32
          description: Decimal places
        expireMonth:
          type: string
          description: Expiry month
        expireYear:
          type: string
          description: Expiry year
        last4:
          type: string
          description: Last 4 digits of card number
        marginAssetId:
          type: integer
          format: int64
          description: Margin asset ID
        network:
          type: string
          description: 'Card network: Mastercard, Visa'
        rejectReason:
          type: string
          description: Rejection reason
        status:
          type: string
          description: Card status
          enum:
            - ACTIVE
            - ARRIVED
            - CANCELED
            - DELIVERING
            - DISABLE
            - FAILURE
            - LOCKED
            - PENDING_ACTIVATION
            - PENDING_DELIVERY
            - PENDING_ISSUE
            - SUSPENDED
        type:
          type: string
          description: 'Card type: virtual card, physical card'
        userEmail:
          type: string
          description: User email

````