Endpoint Playground
Test Crawlora's Vinted category 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/category?id=<id>&order=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Vinted category ID, from a /vinted/item result's categories breadcrumb 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": "1904",
"name": "Women",
"page": 1,
"url": "https://www.vinted.com/catalog/1904",
"items": [
{
"id": "9402122092",
"title": "Denim jacket",
"url": "https://www.vinted.com/items/9402122092-denim-jacket",
"condition": "Very good",
"price_raw": "$15.00",
"total_price_raw": "$16.20"
}
]
}
}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 category, 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 category page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1904",
"name": "Women",
"page": 1,
"url": "https://www.vinted.com/catalog/1904",
"items": [
{
"id": "9402122092",
"title": "Denim jacket",
"url": "https://www.vinted.com/items/9402122092-denim-jacket",
"condition": "Very good",
"price_raw": "$15.00",
"total_price_raw": "$16.20"
}
]
}
}curl "https://api.crawlora.net/api/v1/vinted/category?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"