# Get Wallet Transactions

Retrieve a list of recent wallet transactions, including debits and credits.

### <mark style="color:green;">`GET`</mark> `/wallet/transactions`

#### Required Permission

```
read:UserWalletDailyTransactions
```

Your API key must have this permission enabled in order to use this endpoint.

#### Example Request

```bash
curl --location 'https://<hostname>/wallet/transactions' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY'
```

Replace `YOUR_API_KEY` with your API key.

{% hint style="info" %}
All endpoints shown in this documentation use a **sample base URL**. The production API endpoint is provided by our team upon request.
{% endhint %}

#### Response (HTTP 200)

```json
{
  "success": true,
  "transactions": [
    {
      "id": "txn_001",
      "type": "credit",
      "amount": 50.00,
      "currency": "USD",
      "created_on": "2025-02-01T12:00:00.000Z"
    },
    {
      "id": "txn_002",
      "type": "debit",
      "amount": 10.00,
      "currency": "USD",
      "created_on": "2025-02-02T08:45:00.000Z"
    }
  ]
}
```
