GET
/
wallets
/
transactions
/
{id}
{
  "data": {
    "account_id": "c2f9e33c-7f28-402b-974f-493546f11f2b",
    "amount": {
      "amount": 1000,
      "currency": "USD"
    },
    "correlation_id": "9f7d3278-71f4-44b0-968d-99ef6c0e983d",
    "created_at": "2025-08-08T11:17:34Z",
    "customer_id": "0997de13-834c-4cc5-88ca-ca321730c938",
    "description": "Id consequatur distinctio et!",
    "destination": null,
    "error": null,
    "fee": {
      "amount": 0,
      "currency": "USD"
    },
    "id": "48160506-2dbb-4f7d-ab2f-09af335aca1d",
    "metadata": {},
    "reference": null,
    "source": null,
    "type": "credit",
    "updated_at": "2025-08-08T11:17:34Z",
    "wallet_id": "c4f43392-1438-4ab4-8d85-5327f34ca238"
  }
}

Path Parameters

id
string
required

Transaction ID

Response

Wallet

Response schema for a transaction

data
object

Transaction details

Example:
{
"account_id": "c2f9e33c-7f28-402b-974f-493546f11f2b",
"amount": { "amount": 1000, "currency": "USD" },
"correlation_id": "9f7d3278-71f4-44b0-968d-99ef6c0e983d",
"created_at": "2025-08-08T11:17:34Z",
"customer_id": "0997de13-834c-4cc5-88ca-ca321730c938",
"description": "Id consequatur distinctio et!",
"destination": null,
"error": null,
"fee": { "amount": 0, "currency": "USD" },
"id": "48160506-2dbb-4f7d-ab2f-09af335aca1d",
"metadata": {},
"reference": null,
"source": null,
"type": "credit",
"updated_at": "2025-08-08T11:17:34Z",
"wallet_id": "c4f43392-1438-4ab4-8d85-5327f34ca238"
}