Endpoint Playground
Test Crawlora's Depop brands 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/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"total": 4213,
"brands": [
{
"id": 1,
"name": "Aloye",
"slug": "aloye"
},
{
"id": 2,
"name": "Diamond Supply Co.",
"slug": "diamond-supply-co"
},
{
"id": 270,
"name": "Nike",
"slug": "nike"
}
]
}
}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 brand directory (id, name, slug), not just brands with active listings for a given search -- resolves the search endpoint's otherwise-opaque brand_ids filter to human-readable names. Public data sourced from Depop's own brand-directory API.
{
"code": 200,
"msg": "OK",
"data": {
"total": 4213,
"brands": [
{
"id": 1,
"name": "Aloye",
"slug": "aloye"
},
{
"id": 2,
"name": "Diamond Supply Co.",
"slug": "diamond-supply-co"
},
{
"id": 270,
"name": "Nike",
"slug": "nike"
}
]
}
}curl "https://api.crawlora.net/api/v1/depop/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"