Endpoint Playground
Test Crawlora's Vinted categories 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/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.vinted.com/catalog",
"categories": [
{
"id": "1904",
"name": "Women",
"url": "https://www.vinted.com/catalog/1904-women_root"
},
{
"id": "5",
"name": "Men",
"url": "https://www.vinted.com/catalog/5-mens"
},
{
"id": "1193",
"name": "Kids",
"url": "https://www.vinted.com/catalog/1193-children_new"
},
{
"id": "1918",
"name": "Home",
"url": "https://www.vinted.com/catalog/1918-home"
},
{
"id": "2994",
"name": "Electronics",
"url": "https://www.vinted.com/catalog/2994-electronics"
},
{
"id": "4332",
"name": "Sports",
"url": "https://www.vinted.com/catalog/4332-sports"
},
{
"id": "2309",
"name": "Entertainment",
"url": "https://www.vinted.com/catalog/2309-entertainment"
},
{
"id": "4824",
"name": "Hobbies & collectibles",
"url": "https://www.vinted.com/catalog/4824-hobbies_collectables"
}
]
}
}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 top-level catalog categories (e.g. Women, Men, Kids, Home, Electronics, Sports, Entertainment, Hobbies & collectibles). This is the root level only -- Vinted's full category tree goes several levels deeper on the live site, but deeper levels aren't server-rendered so aren't covered here. Each entry's `id` is usable directly as the `id` query parameter to /vinted/category. Public data, sourced from Vinted's own server-rendered catalog navigation.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.vinted.com/catalog",
"categories": [
{
"id": "1904",
"name": "Women",
"url": "https://www.vinted.com/catalog/1904-women_root"
},
{
"id": "5",
"name": "Men",
"url": "https://www.vinted.com/catalog/5-mens"
},
{
"id": "1193",
"name": "Kids",
"url": "https://www.vinted.com/catalog/1193-children_new"
},
{
"id": "1918",
"name": "Home",
"url": "https://www.vinted.com/catalog/1918-home"
},
{
"id": "2994",
"name": "Electronics",
"url": "https://www.vinted.com/catalog/2994-electronics"
},
{
"id": "4332",
"name": "Sports",
"url": "https://www.vinted.com/catalog/4332-sports"
},
{
"id": "2309",
"name": "Entertainment",
"url": "https://www.vinted.com/catalog/2309-entertainment"
},
{
"id": "4824",
"name": "Hobbies & collectibles",
"url": "https://www.vinted.com/catalog/4824-hobbies_collectables"
}
]
}
}curl "https://api.crawlora.net/api/v1/vinted/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"