Documentation Index
Fetch the complete documentation index at: https://docs.scentxp.com/llms.txt
Use this file to discover all available pages before exploring further.
Filtering and pagination
Most list queries in the WikiParfum API support a shared set of filtering, pagination, and sorting parameters. Understanding these patterns lets you build precise, performant queries across perfumes, ingredients, brands, and recommendations.Pagination
Pagination uses an offset-based pattern via thepage parameter, formatted as a string: "offset,limit".
| Example | Meaning |
|---|---|
"0,20" | First 20 results |
"20,20" | Results 21–40 |
"40,10" | Results 41–50 |
Sorting
Use theorder_by parameter to control result ordering. The format is "field direction".
| Value | Description |
|---|---|
"name asc" | Alphabetical A–Z |
"name desc" | Alphabetical Z–A |
"year desc" | Newest first |
"year asc" | Oldest first |
"price-asc" | By market segment: mass → prestige → niche |
"price-desc" | By market segment: niche → prestige → mass |
"customerPrice-asc" | By customer price: lowest first |
"customerPrice-desc" | By customer price: highest first |
"popularity" | Most popular first (based on previous month’s traffic) |
The
price-asc and price-desc options sort by market classification (mass, prestige, niche) as a proxy for price tier, not by actual product price. Perfumes without a classification are placed last in ascending order and first in descending order.The
customerPrice-asc and customerPrice-desc options sort by your catalog’s actual product prices. Perfumes without a price in your catalog are placed last.Requirements:- Your Product Feed must include the
pricecolumn. - Use a dot (
.) as the decimal separator (e.g.,29.99). Comma-separated values (e.g.,29,99) will be converted automatically, but using dot format is recommended to avoid potential issues. - If a perfume has multiple EANs with different prices, the lowest price is used for sorting.
The
customerPrice sorting options and the customerPriceRange filter are available on findPerfumes, recommendedPerfumes, and findPerfumeByIngredient.The
popularity option ranks perfumes by their global view count from the previous calendar month across WikiParfum and the WikiParfum app. Perfumes without traffic data are placed at the end.The Filters input
TheFilters input type is shared across perfume, ingredient, brand, and recommendation queries. It provides fine-grained control over which results are returned.
Gender
Filter by target gender.| Value | Meaning |
|---|---|
"F" | Feminine |
"M" | Masculine |
"U" | Unisex |
Brand
Filter by brand slug or brand IDs.brandsIds for multiple brands: brandsIds: "42,87,103".
Use excludedBrandsIds to exclude specific brands: excludedBrandsIds: "55,60".
Olfactive family
Filter by primary family, secondary family, or both.| Filter | Description |
|---|---|
family | Primary family slug |
mainfamily | Alias for primary family slug |
subfamily | Secondary family slug |
mainFamilyIds | Primary family IDs (comma-separated) |
subFamilyIds | Secondary family IDs (comma-separated) |
familiesIds | Combined primary + secondary family IDs |
Market classification
| Value | Meaning |
|---|---|
"prestige" | Prestige / luxury segment |
"mass" | Mass market segment |
Intensity range
Filter by olfactive intensity using a min/max range.Customer price range
Filter by your catalog’s product prices using a min/max range."min,max" where both values are numeric. Perfumes without a price in your catalog are excluded from the results when this filter is applied.
This filter requires the
price column in your Product Feed. If a perfume has multiple EANs with different prices, the perfume is included if any of its EANs falls within the specified range.Discontinued products
| Value | Meaning |
|---|---|
"yes" | Only discontinued perfumes |
"no" | Only active perfumes |
Release date
Filter by release year or year-month.Region and country
Restrict results to perfumes available in specific regions or countries.Additional filters
| Filter | Type | Description |
|---|---|---|
withImage | Boolean | Only return perfumes with images |
popular | Boolean | Only popular perfumes |
onlyReleased | Boolean | Only released perfumes |
showVariant | Boolean | Include variant products |
fragranceType | String | Filter by fragrance type (e.g., EDP, EDT) |

