> ## 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 goods receipts

> Returns goods receipts for a vendor with optional filters.

<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="purchase_order_id" type="string">
  Filter by purchase order UUID.
</ParamField>

<ParamField query="reference" type="string">
  Filter by reference string.
</ParamField>

<ParamField query="include_cancelled" type="boolean">
  Include cancelled receipts. Default `false`.
</ParamField>

<ResponseField name="items" type="object[]">
  Array of goods receipt objects with their lines.
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "rcpt_01j5k...",
        "account_id": "acc_01...",
        "vendor_id": "vnd_01...",
        "store_id": "str_main_01...",
        "supplier_id": "sup_best_foods_01...",
        "reference": "INV-2026-1234",
        "status": "COMPLETED",
        "created_at": "2026-08-07T14:30:00.000Z"
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  }
  ```
</ResponseExample>
