products_list
Retrieve a list of products with optional filters by owner, saved filter, or product IDs, and paginate results.
Instructions
List all products with optional filtering and pagination.
Supports filtering by:
user_id: Filter by owner
filter_id: Apply a saved filter
ids: Array of specific product IDs to return
first_char: Filter by first character of name (single letter)
get_summary: Include total count in response
Returns paginated results. Use start/limit for manual pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | Array of product IDs to return | |
| limit | No | Items per page, max 500 (default: 100) | |
| start | No | Pagination start (default: 0) | |
| user_id | No | Filter by owner user ID | |
| filter_id | No | Filter ID to apply | |
| first_char | No | Filter by first character of name (e.g., "A", "B") | |
| get_summary | No | Include total count in response |