Endpoint Playground
Test Crawlora's Vinted 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/vinted/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.vinted.com/brands",
"brands": [
{
"id": "14",
"name": "adidas",
"url": "https://www.vinted.com/brand/14-adidas"
},
{
"id": "49",
"name": "ASOS",
"url": "https://www.vinted.com/brand/49-asos"
},
{
"id": "19553",
"name": "Amazon",
"url": "https://www.vinted.com/brand/19553-amazon"
}
]
}
}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 Vinted's "Popular brands" directory. This is Vinted's own curated list, not an exhaustive list of every brand in its catalog. Each entry's `id` is usable directly as the `id` query parameter to /vinted/brand. Public data, sourced from Vinted's own server-rendered brands page.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.vinted.com/brands",
"brands": [
{
"id": "14",
"name": "adidas",
"url": "https://www.vinted.com/brand/14-adidas"
},
{
"id": "49",
"name": "ASOS",
"url": "https://www.vinted.com/brand/49-asos"
},
{
"id": "19553",
"name": "Amazon",
"url": "https://www.vinted.com/brand/19553-amazon"
}
]
}
}curl "https://api.crawlora.net/api/v1/vinted/brands" \
-H "x-api-key: $CRAWLORA_API_KEY"