> For the complete documentation index, see [llms.txt](https://docs.sendstackhq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sendstackhq.com/delivery-api/wallet/get-wallet-transactions.md).

# Get Wallet Transactions

## Get Wallet Transactions

<mark style="color:blue;">`GET`</mark> `{{baseUrl}}/wallet/transactions`

{% tabs %}
{% tab title="200: OK Retrieved transactions" %}

```javascript
{
    "status": true,
    "message": "Transactions retrieved",
    "data": [
        {
            "id": "6166b0be3dd87d46743a7ca2",
            "amount": 1000,
            "description": "For delivery with batchId - ENIB61",
            "type": "DEBIT",
            "balance": 1000,
            "createdAt": "2021-10-13T10:11:10.667Z"
        },
        {
            "id": "61a72922fd4492a136466941",
            "amount": 1000,
            "description": "For delivery with batchId - 1XZG7Q",
            "type": "DEBIT",
            "balance": 0,
            "createdAt": "2021-12-01T07:49:54.946Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}

```json
// Sample Response Body - 200 OK
{
    "status": true,
    "message": "Transactions retrieved",
    "data": []
}
```
