Retrieve a list of all products with optional filtering
Documentation Index
Fetch the complete documentation index at: https://docs.withgale.com/llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Type | Description |
|---|---|---|
limit | integer | Number of results per page (default: 10, max: 100) |
starting_after | integer | Cursor for pagination (product ID) |
status | enum | Filter by status: active, inactive, archived |
hsa_fsa_eligible | boolean | Filter by HSA/FSA eligibility (true/false) |
merchant_product_id | string | Filter by your product ID |
created_after | timestamp | Filter products created after this date |
created_before | timestamp | Filter products created before this date |
| Field | Type | Description |
|---|---|---|
data | array | Array of product objects |
has_more | boolean | Whether more results are available |
next_cursor | integer | Cursor for next page (use as starting_after) |
next_cursor value from the previous response as the starting_after parameter:
| Status Code | Error Code | Description |
|---|---|---|
| 400 | invalid_request | Invalid query parameters |
| 401 | unauthorized | Invalid or missing API key |
| 429 | rate_limit_exceeded | Too many requests |