Endpoint Playground
Test Crawlora's Depop suggest 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/depop/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Partial search query to autocomplete |
{
"code": 200,
"msg": "OK",
"data": {
"query": "red corte",
"suggestions": [
{
"value": "red corset",
"group": "tops",
"suggested_filter_label": "in Women's Tops",
"gender": "female"
},
{
"value": "red corset"
},
{
"value": "red corset top"
}
]
}
}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 Depop's own search-box autocomplete suggestions for a partial query, including the category a suggestion maps to when relevant. Public data sourced from Depop's own search-suggestions API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "red corte",
"suggestions": [
{
"value": "red corset",
"group": "tops",
"suggested_filter_label": "in Women's Tops",
"gender": "female"
},
{
"value": "red corset"
},
{
"value": "red corset top"
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/suggest?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"