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

> Returns transfers for a vendor with optional pagination.

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

<ParamField path="vendorId" type="string" required>
  Vendor UUID.
</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="include_cancelled" type="boolean">
  Include cancelled transfers. Default `false`.
</ParamField>

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

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "xfr_01j5k...",
        "from_store_id": "str_main_01...",
        "to_store_id": "str_satelite_01...",
        "external_reference": "TRF-2026-0042",
        "status": "COMPLETED",
        "created_at": "2026-08-07T09:00:00.000Z"
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  }
  ```
</ResponseExample>
