> For the complete documentation index, see [llms.txt](https://docs.pretium.africa/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pretium.africa/utilities/transactions/all-txns.md).

# All txns

Retrieve all transactions within a 3-day period.

```
POST {{url}}/v1/transactions/{currency_code}
```

**Body request**

```
{
    "start_date": "2025-02-19",
    "end_date": "2025-07-20"
}
```

{% tabs %}
{% tab title="200 - Success" %}

```
{
    "code": 200,
    "message": "Transactions",
     "data": [
        {
            "id": 52146,
            "transaction_code": "9ecb7d1f-94c8-499e-ba0c-8aa951d8c65d",
            "status": "COMPLETE",
            "amount": "20",
            "amount_in_usd": "1.00",
            "type": "MOBILE",
            "shortcode": "0700123456",
            "account_number": null,
            "public_name": "PUBLIC NAME",
            "receipt_number": "TIOQR5GQRM",
            "category": "DISBURSEMENT",
            "chain": "CELO",
            "asset": "USDT",
            "transaction_hash": "0x2cc419f14f6f1fefdb58e0359480fa3451866a10668513488e71677c345339f27",
            "message": "Transaction processed successfully.",
            "currency_code": "KES",
            "is_released": false,
            "created_at": "2025-09-24T20:21:51.000000Z"
        }
        ]
}
```

{% endtab %}

{% tab title="400 - Bad Request" %}

```
{
   "code": 400,
   "message": "Failed - Bad Request"
}
```

{% endtab %}
{% endtabs %}
