list_products
Fetch a paginated list of products with optional filters for status, vendor, and product type. Use since_id for cursor-based navigation.
Instructions
List products with optional filters (status, vendor, product_type). Returns paginated results via since_id cursor. If has_more=true, call again with next_since_id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results per page (default 50, max 250). | |
| status | No | Filter by product status: active, archived, or draft. | |
| vendor | No | Filter by vendor name (exact match). | |
| since_id | No | Return products with ID greater than this value (cursor pagination). | |
| product_type | No | Filter by product type (exact match). | |
| created_on_max | No | Filter by created date max (ISO 8601). | |
| created_on_min | No | Filter by created date min (ISO 8601). |