Endpoint Playground
Test Crawlora's Get Prada 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/prada/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Partial search query | |
| limit | integer | No | Maximum suggestions, defaults to 10, maximum 20 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "bag",
"count": 2,
"suggestions": [
{
"query": "bags",
"result_count": 3367,
"popularity": 309
},
{
"query": "bag charm",
"result_count": 138,
"popularity": 277
}
]
}
}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 Prada's own search-box typeahead suggestions for a partial query -- a ranked list of suggested search phrases with the live result count each one would return. Pass a suggestion straight through to prada-search's own q parameter for product results. A query with no genuine matches returns a well-formed empty result rather than an error.
{
"code": 200,
"msg": "OK",
"data": {
"query": "bag",
"count": 2,
"suggestions": [
{
"query": "bags",
"result_count": 3367,
"popularity": 309
},
{
"query": "bag charm",
"result_count": 138,
"popularity": 277
}
]
}
}curl "https://api.crawlora.net/api/v1/prada/suggest?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"