Skip to main content
GET
/
user
/
transactions
/
{uuid}
Get Transaction
curl --request GET \
  --url https://api.example.com/user/transactions/{uuid}
{
  "success": true,
  "data": {
    "id": 1,
    "uuid": "63a13fba-84a4-4fe1-becc-9a305925cf2b",
    "type": "credit",
    "amount": 500.00,
    "status": "completed",
    "description": "Credit purchase - Premium Bundle",
    "reference": "TXN_1767234120056_zetjslzfe",
    "created_at": "2026-01-05T00:00:00.000000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.sendazi.com/llms.txt

Use this file to discover all available pages before exploring further.

uuid
string
required
The unique identifier (UUID) of the transaction
{
  "success": true,
  "data": {
    "id": 1,
    "uuid": "63a13fba-84a4-4fe1-becc-9a305925cf2b",
    "type": "credit",
    "amount": 500.00,
    "status": "completed",
    "description": "Credit purchase - Premium Bundle",
    "reference": "TXN_1767234120056_zetjslzfe",
    "created_at": "2026-01-05T00:00:00.000000Z"
  }
}