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

# List transactions

> Lists recent inventory transactions for the account.

<ParamField header="x-api-key" type="string" required>
  API key with `inventory:read` scope.
</ParamField>

<ParamField query="limit" type="number">
  Results per page (1–200, default 50).
</ParamField>

<ParamField query="offset" type="number">
  Pagination offset (default 0).
</ParamField>

<ParamField query="status" type="string">
  Filter by status: `PENDING`, `PROCESSING`, `COMPLETED`, or `FAILED`.
</ParamField>

<ResponseField name="items" type="object[]">
  Array of transaction objects.
</ResponseField>

<ResponseField name="total" type="number">
  Total matching records.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "txn_01j5k...",
        "tracking_id": "trk_01j5k...",
        "type": "GOODS_RECEIPT",
        "status": "COMPLETED",
        "created_at": "2026-08-07T14:30:00.000Z"
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  }
  ```
</ResponseExample>
