Endpoint Playground
Test Crawlora's Vinted item 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/item?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Vinted item ID, from a /vinted/catalog result's id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "9595406652",
"title": "Vintage leather Cabelas Women's jacket",
"description": "In good condition. Has scratches and scuffs.",
"brand": "Cabela's",
"size": "L / US 12-14",
"condition": "Good",
"material": "Leather",
"color": "Brown",
"price_raw": "$20.00",
"categories": [
"Women",
"Clothing",
"Coats & Jackets"
],
"photos": [
"https://images1.vinted.net/t/01_00ebe/f800/1786075414.webp"
],
"url": "https://www.vinted.com/items/9595406652",
"source_url": "https://www.vinted.com/items/9595406652"
}
}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 a single Vinted listing's detail: title, description, brand, size, condition, material, color, price, category breadcrumb, and photos. Public data, sourced from Vinted's own server-rendered item page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "9595406652",
"title": "Vintage leather Cabelas Women's jacket",
"description": "In good condition. Has scratches and scuffs.",
"brand": "Cabela's",
"size": "L / US 12-14",
"condition": "Good",
"material": "Leather",
"color": "Brown",
"price_raw": "$20.00",
"categories": [
"Women",
"Clothing",
"Coats & Jackets"
],
"photos": [
"https://images1.vinted.net/t/01_00ebe/f800/1786075414.webp"
],
"url": "https://www.vinted.com/items/9595406652",
"source_url": "https://www.vinted.com/items/9595406652"
}
}curl "https://api.crawlora.net/api/v1/vinted/item?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"