Skip to main content
POST
/
product
/
get_all
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
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.illuxi.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authentication token obtained from POST /token

Body

application/json
start
integer
default:0

Offset for pagination

limit
integer
default:10

Maximum number of products to return

criterias
object[]

List of filter criteria to apply

Response

List of products

status
boolean
total
integer

Total number of products matching the criterias

result
object[]