> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Track Transaction

> Get a live status timeline for a transaction

Returns a step-by-step timeline of a transaction's progress from initiation through completion.

```
GET /v1/transaction/tracking/{quote_id}
```

## Path Parameters

<ParamField path="quote_id" type="string" required>
  The `quote_id` associated with the transaction. This is the quote ID returned when the transaction or quote was created — not a generic transaction ID.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/transaction/tracking/4a72ecf8-6c8a-4e38-9971-8aabe9f785ed' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Request successful",
    "data": [
      {
        "tracking_status": "Payment credited to beneficiary",
        "transaction_type": "withdrawal",
        "created_at": "2026-04-01T10:03:22.000000Z"
      },
      {
        "tracking_status": "With Beneficiary's Bank/Rail",
        "transaction_type": "withdrawal",
        "created_at": "2026-04-01T10:02:54.000000Z"
      },
      {
        "tracking_status": "Processed by Yativo",
        "transaction_type": "withdrawal",
        "created_at": "2026-04-01T10:01:45.000000Z"
      },
      {
        "tracking_status": "Send money initiated",
        "transaction_type": "withdrawal",
        "created_at": "2026-04-01T10:00:00.000000Z"
      }
    ]
  }
  ```
</ResponseExample>
