Skip to main content
The catalog list endpoint accepts several filters. They are AND-combined across fields: a product must match every filter you supply. Within a single field you can pass multiple comma-separated values (treated as OR for that field).
country
string
ISO country code(s), e.g. GB or GB,IE.
language
string
Language code(s), e.g. en or en,fr.
brand
string
Brand name(s), e.g. PlayStation.
category
string
Category / main category, e.g. Gaming.
tag
string
Tag(s), e.g. bestseller,gaming.
Free-text search across product name and EAN.

Examples

curl -G "https://api.kalixo.io/v2/catalog/products" \
  -H "x-api-key: $KALIXO_API_KEY" \
  --data-urlencode "country=GB" \
  --data-urlencode "category=Gaming" \
  --data-urlencode "tag=bestseller"
Filters are case-insensitive. Combine them with pagination (skip / take) to page through filtered results.