# Get Card Transactions

Retrieves the transaction history (credits, debits, charges) associated with a specific virtual card. Each transaction record includes type, amount, currency, description, and date. Useful for displaying detailed activity logs or generating monthly statements.

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

You can filter or paginate this data on the frontend if needed. Ideal for auditing or user self-service.
{% endhint %}

&#x20;<mark style="color:green;">`POST`</mark>  `{{ BASE }}/get-card-history/{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

```
{
    "status": true,
    "message": "All card transactions retrieved successfully",
    "data": [
        {
            "paymentReference": "PadiwiseHUSVC-c4c1553aebbe5",
            "externalReference": "CW-67fcd713871ca",
            "type": "Debit",
            "amount": 3,
            "provider": "PadiwiseHUSVC",
            "narration": "Padiwise Visa Card Withdrawal|PadiwiseHUSVC-c4c1553aebbe5",
            "runningBalance": -3,
            "createdAt": "2025-04-16T09:17:14.407Z"
        },
        {
            "paymentReference": "41b6a7af-bb5c-4209-bce9-88e4d4c0b0c1",
            "externalReference": null,
            "type": "Debit",
            "amount": 0.3,
            "provider": "PadiwiseHUSVC",
            "narration": "41b6a7af-bb5c-4209-bce9-88e4d4c0b0c1|GOOGLE *TEMPORARY HOLD g.co/helppay US",
            "runningBalance": 0,
            "createdAt": "2025-04-11T18:15:14.618Z"
        },
        
        ..........
}

```


---

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