# Get Card Details

Returns detailed information for a specific virtual card using its unique `cardId`. Data includes the full masked card number, CVV, expiry, current balance, currency, and card status (e.g., active, blocked). This is useful for viewing card details before a transaction or for internal monitoring.

{% hint style="warning" %}
**Before you begin!**

Sensitive fields like card number and CVV are returned securely for one-time use. Never cache or store these details on the client.
{% endhint %}

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/get-card/{cardid}`&#x20;

```
--header 'Accept: application/json'
--header 'Authorization: Bearer {{  access_token }}'
```

Below are the request body parameters :tada:

**Request Body**

| Name   | Type   | Description                                       |
| ------ | ------ | ------------------------------------------------- |
| cardid | String | The unique ID of the virtual card (from Padiwise) |
|        |        |                                                   |

Response Body

```
{
  "success": true,
  "message": "Card details successfully fetched.",
  "status_code": 200,
    "data": {
      "type": "virtual",
      "brand": "visa",
      "number": "1234 56•• •••• 7890",
      "expiryMonth": "12",
      "expiryYear": "2028",
      "cvv": "•••",
      "status": "active",
      "balance": 42.55,
      "billingAddress": {
        "line1": "123 Main Street",
        "city": "Lagos",
        "state": "LA",
        "postalCode": "100001",
        "country": "NG"
      }
  }
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://padiwise.gitbook.io/padiwise/virtual-cards/get-card-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
