Skip to main content
GET
/
v1
/
vinted
/
items
/
{item_id}
Get Item Details
curl --request GET \
  --url https://api.example.com/v1/vinted/items/{item_id}
{
  "id": 123,
  "title": "<string>",
  "description": "<string>",
  "price": "<string>",
  "currency": "<string>",
  "brand_title": "<string>",
  "size_title": "<string>",
  "status": "<string>",
  "color1": "<string>",
  "color2": "<string>",
  "photos": [
    {}
  ],
  "url": "<string>",
  "view_count": 123,
  "favourite_count": 123,
  "created_at": "<string>",
  "updated_at": "<string>",
  "user": {}
}

Path Parameters

item_id
integer
required
The unique Vinted item ID. You can find this in search results or extract it from a Vinted listing URL.

Query Parameters

market
string
default:"fr"
Vinted market where the item is listed. Must match the market the item belongs to.Examples: fr, de, uk, it, es, pl, us

Response

id
integer
Item ID.
title
string
Item title.
description
string
Full item description text.
price
string
Price in local currency.
currency
string
ISO 4217 currency code.
brand_title
string
Brand name.
size_title
string
Size label.
status
string
Item condition (e.g. "New with tags", "Good").
color1
string
Primary color.
color2
string
Secondary color (nullable).
photos
array
Array of photo objects with url, width, height.
url
string
Full URL to the Vinted listing.
view_count
integer
Number of views.
favourite_count
integer
Number of favourites.
created_at
string
ISO 8601 timestamp when the item was listed.
updated_at
string
ISO 8601 timestamp of the last update.
user
object
Seller information with id, login, photo, feedback_reputation.

Example Response

{
  "id": 4856231890,
  "title": "Nike Air Force 1 '07 White",
  "description": "Worn only twice, excellent condition. Size 42 EU. Original box included.",
  "price": "45.00",
  "currency": "EUR",
  "brand_title": "Nike",
  "size_title": "42",
  "status": "Very good",
  "color1": "White",
  "color2": null,
  "photos": [
    {
      "url": "https://images1.vinted.net/t/...",
      "width": 1200,
      "height": 900
    }
  ],
  "url": "https://www.vinted.fr/items/4856231890",
  "view_count": 234,
  "favourite_count": 12,
  "created_at": "2026-03-15T14:30:00Z",
  "updated_at": "2026-03-20T09:15:00Z",
  "user": {
    "id": 12345678,
    "login": "seller_username",
    "photo": {
      "url": "https://images1.vinted.net/t/..."
    },
    "feedback_reputation": 0.98
  }
}
Each item detail request costs 1 credit. Failed requests are not charged.