Endpoint Playground
Test Crawlora's Autocomplete a Zalando search query 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/zalando/suggest?q=<q>&market=at" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search text to complete | |
| market | string | Yes | at | Zalando country storefront |
{
"code": 200,
"data": {
"fetched_at": "sample",
"market": "de",
"query": "running sho",
"source_url": "https://example.com/resource",
"suggestions": [
"running shoes",
"running shoes nike",
"running shoes adidas"
]
},
"msg": "OK"
}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.
Returns Zalando's own search-box query completions for a partial keyword, e.g. "running sho" -> "running shoes", "running shoes nike". market is required (there is no default storefront) and accepts 25 country storefronts — see zalando-markets for the full current list with domains.
{
"code": 200,
"data": {
"fetched_at": "sample",
"market": "de",
"query": "running sho",
"source_url": "https://example.com/resource",
"suggestions": [
"running shoes",
"running shoes nike",
"running shoes adidas"
]
},
"msg": "OK"
}curl "https://api.crawlora.net/api/v1/zalando/suggest?q=<q>&market=<market>" \
-H "x-api-key: $CRAWLORA_API_KEY"