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

# GET /api/v1/inventory/reservations

> GET /api/v1/inventory/reservations

### Query parameters

<ParamField query="page" type="integer (int64)">
  Page number (1-indexed)
</ParamField>

<ParamField query="limit" type="integer (int64)">
  Items per page (max 1000)
</ParamField>

<ParamField query="status" type="string">
  Filter by status
</ParamField>

<ParamField query="product_id" type="string">
  Filter by product ID
</ParamField>

<ParamField query="include_expired" type="boolean">
  Include expired reservations
</ParamField>

### Responses

<ResponseField name="200" type="ApiResponse_ReservationListResponse">
  List of reservations
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.stateset.com/api/v1/inventory/reservations' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "limit": 1,
      "page": 1,
      "reservations": [
        {
          "created_at": null,
          "expires_at": null,
          "id": null,
          "is_expired": null,
          "location_id": null,
          "product_id": null,
          "quantity": null,
          "reference_id": null,
          "reference_type": null,
          "status": null,
          "updated_at": null
        }
      ],
      "total": 1
    },
    "errors": null,
    "message": null,
    "meta": null,
    "success": true
  }
  ```
</ResponseExample>
