> ## 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.

# Get Bundle History Item

> Retrieve a specific bundle purchase by ID

<ParamField path="id" type="integer" required>
  The ID of the bundle purchase
</ParamField>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true,
    "data": {
      "id": 1,
      "package_name": "Premium Bundle",
      "credits": 5000,
      "amount": 400.00,
      "payment_method": "paystack",
      "transaction_reference": "TXN_1767234120056_zetjslzfe",
      "created_at": "2026-01-05T00:00:00.000000Z"
    }
  }
  ```

  ```json 404 - Not Found theme={null}
  {
    "success": false,
    "message": "Bundle history not found."
  }
  ```
</ResponseExample>
