# Get Cards

Fetches a list of all USD virtual cards created by the authenticated business account. Each card entry includes basic details such as last 4 digits, expiry date, current balance, and status. This endpoint is useful for displaying a user’s card overview in dashboards or reports.

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

Fetches cards according to query parameters.
{% endhint %}

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

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

Below are the request body parameters :tada:

**Request Body**

```
{
    "success": true,
    "message": "All cards successfully fetched",
    "status_code": 200,
    "data": {
        "card_id": {{ card_id }},
        "maskedPan": {{ maskedPan }},
        "last4": {{ last4 }},
        "name": {{ name }},
        "brand": {{ brand }},
        "currency": {{ currency }},
        "status": {{ status }},
        }

```


---

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