Get Wallet Transactions

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

GET /wallet/transactions

Required Permission

read:UserWalletDailyTransactions

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

Example Request

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

Replace YOUR_API_KEY with your API key.

circle-info

All endpoints shown in this documentation use a sample base URL. The production API endpoint is provided by our team upon request.

Response (HTTP 200)

{
  "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"
    }
  ]
}

Last updated