Endpoint Playground
Test Crawlora's Vinted brand 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/brand?id=<id>&order=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Vinted brand ID, from a /vinted/item result's brand link | |
| price_from | number | No | Minimum price | |
| price_to | number | No | Maximum price | |
| order | string | No | relevance | Sort order. Allowed values: relevance, newest_first, price_high_to_low, price_low_to_high |
| page | integer | No | Page number, starting at 1 |
{
"code": 200,
"msg": "OK",
"data": {
"id": "386688",
"name": "Cabela's",
"page": 1,
"url": "https://www.vinted.com/brand/386688",
"items": [
{
"id": "9595406652",
"title": "Vintage leather Cabelas Women's jacket",
"url": "https://www.vinted.com/items/9595406652-vintage-leather-cabelas-womens-jacket",
"brand": "Cabela's",
"size": "L / US 12-14",
"condition": "Good",
"price_raw": "$20.00",
"total_price_raw": "$21.70"
}
]
}
}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 listings for a specific brand, with optional price filtering and sort order. `order` values: `relevance`, `newest_first`, `price_high_to_low`, `price_low_to_high`. Public data, sourced from Vinted's own server-rendered brand page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "386688",
"name": "Cabela's",
"page": 1,
"url": "https://www.vinted.com/brand/386688",
"items": [
{
"id": "9595406652",
"title": "Vintage leather Cabelas Women's jacket",
"url": "https://www.vinted.com/items/9595406652-vintage-leather-cabelas-womens-jacket",
"brand": "Cabela's",
"size": "L / US 12-14",
"condition": "Good",
"price_raw": "$20.00",
"total_price_raw": "$21.70"
}
]
}
}curl "https://api.crawlora.net/api/v1/vinted/brand?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"