Endpoint Playground
Test Crawlora's Get Moncler search-box suggestions 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/moncler/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query |
{
"code": 200,
"msg": "OK",
"data": {
"query": "jack",
"terms": [
{
"term": "jacket"
}
],
"phrases": [
"Short Down Jackets",
"All Down Jackets",
"Ski Jackets"
],
"categories": [
{
"category_id": "men-outerwear-short-down-jackets",
"name": "Short Down Jackets",
"parent_category_name": "Outerwear"
}
]
}
}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 the storefront's own search-box suggestions (typeahead) for a partial query: completed/corrected search terms, suggested full phrases, and matching categories. Not product data.
{
"code": 200,
"msg": "OK",
"data": {
"query": "jack",
"terms": [
{
"term": "jacket"
}
],
"phrases": [
"Short Down Jackets",
"All Down Jackets",
"Ski Jackets"
],
"categories": [
{
"category_id": "men-outerwear-short-down-jackets",
"name": "Short Down Jackets",
"parent_category_name": "Outerwear"
}
]
}
}curl "https://api.crawlora.net/api/v1/moncler/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"