Endpoint Playground
Test Crawlora's Depop sizes 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/sizes" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"id": "womenswear",
"name": "Women",
"categories": [
{
"id": "wmns-tops-sizes",
"name": "Tops",
"regions": [
{
"region": "US",
"sizes": [
{
"id": "4.17",
"name": "M"
},
{
"id": "4.18",
"name": "L"
}
]
}
]
}
]
}
]
}
}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 full, multi-region size taxonomy -- every composite id usable with /depop/search's and /depop/shop/{username}'s sizes filter. Public data sourced from Depop's own size-filter API.
{
"code": 200,
"msg": "OK",
"data": {
"departments": [
{
"id": "womenswear",
"name": "Women",
"categories": [
{
"id": "wmns-tops-sizes",
"name": "Tops",
"regions": [
{
"region": "US",
"sizes": [
{
"id": "4.17",
"name": "M"
},
{
"id": "4.18",
"name": "L"
}
]
}
]
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/sizes" \
-H "x-api-key: $CRAWLORA_API_KEY"