Endpoint Playground
Test Crawlora's YOOX search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/yoox/search?department=women&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| department | string | Yes | women | Department |
| q | string | No | Free-text search | |
| category | string | No | Category slug from yoox-categories | |
| designer | string | No | Designer slug from yoox-designers | |
| color | string | No | Color filter | |
| size | string | No | Size filter | |
| price_min | number | No | Minimum price | |
| price_max | number | No | Maximum price | |
| on_sale | boolean | No | Sale items only | |
| sort | string | No | relevance | Sort |
| page | integer | No | 1-based page | |
| limit | integer | No | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"department": "women",
"query": "gucci",
"page": 1,
"limit": 48,
"count": 1,
"products": [
{
"id": "123456",
"name": "Gucci handbag",
"brand": "Gucci",
"price": 950,
"currency": "USD",
"in_stock": true
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches or browses YOOX's public catalog with department, category, designer, color, size, price, sale, sort, and page filters.
{
"code": 200,
"msg": "OK",
"data": {
"department": "women",
"query": "gucci",
"page": 1,
"limit": 48,
"count": 1,
"products": [
{
"id": "123456",
"name": "Gucci handbag",
"brand": "Gucci",
"price": 950,
"currency": "USD",
"in_stock": true
}
]
}
}curl "https://api.crawlora.net/api/v1/yoox/search?department=<department>" \
-H "x-api-key: $CRAWLORA_API_KEY"