cURL
curl --request POST \ --url https://{portalApiUrl}/product/get_all \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "start": 0, "limit": 10, "criterias": [ { "column": "product_type_id", "operator": "equal", "value": "micro" } ] } '
{ "status": true, "total": 42, "result": [ { "product_id": 4821, "product_key": "advanced-leadership-2024", "product_type_id": "micro", "product_status": "published", "product_i18n_language_id": "fr", "product_i18n_title": "Leadership avancé", "product_price": 149.99, "product_for_sale": 1, "product_add_to_catalog": 1 } ] }
Returns a paginated list of products, with optional filtering via criterias.
Documentation IndexFetch the complete documentation index at: https://docs.illuxi.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.illuxi.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication token obtained from POST /token
Offset for pagination
Maximum number of products to return
List of filter criteria to apply
Show child attributes
List of products
Total number of products matching the criterias