> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Item Details

> Get detailed information about a Vinted item.

## Path Parameters

<ParamField path="item_id" type="integer" required>
  The unique Vinted item ID. You can find this in search results or extract it from a Vinted listing URL.
</ParamField>

## Query Parameters

<ParamField query="market" type="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`
</ParamField>

## Response

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

### Example Response

```json theme={null}
{
  "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
  }
}
```

<Note>
  Each item detail request costs **1 credit**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/vinted/items/{item_id}
openapi: 3.1.0
info:
  title: ScrapeBadger Vinted API
  version: 1.0.0
  description: >-
    Vinted marketplace scraping API for searching items, fetching details, user
    profiles, and reference data.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/vinted/items/{item_id}:
    get:
      summary: Get Item Details
      description: Get detailed information about a Vinted item.
      operationId: getVintedItemDetail
      parameters:
        - name: item_id
          in: path
          required: true
          schema:
            type: integer
          description: The unique Vinted item ID.
        - name: market
          in: query
          schema:
            type: string
            default: fr
          description: Vinted market where the item is listed (e.g. fr, de, uk).
      responses:
        '200':
          description: Item details
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: Item ID.
                  title:
                    type: string
                    description: Item title.
                  description:
                    type: string
                    nullable: true
                    description: Full item description text.
                  price:
                    type: string
                    description: Price in local currency.
                  currency:
                    type: string
                    description: ISO 4217 currency code.
                  brand_title:
                    type: string
                    nullable: true
                    description: Brand name.
                  size_title:
                    type: string
                    nullable: true
                    description: Size label.
                  status:
                    type: string
                    nullable: true
                    description: Item condition (e.g. "New with tags", "Good").
                  color1:
                    type: string
                    nullable: true
                    description: Primary color.
                  color2:
                    type: string
                    nullable: true
                    description: Secondary color.
                  photos:
                    type: array
                    items:
                      $ref: '#/components/schemas/VintedPhoto'
                    description: Array of photo objects.
                  url:
                    type: string
                    description: Full URL to the Vinted listing.
                  view_count:
                    type: integer
                    description: Number of views.
                  favourite_count:
                    type: integer
                    description: Number of favourites.
                  created_at:
                    type: string
                    nullable: true
                    description: ISO 8601 timestamp when the item was listed.
                  updated_at:
                    type: string
                    nullable: true
                    description: ISO 8601 timestamp of the last update.
                  user:
                    $ref: '#/components/schemas/VintedUserSummary'
                    description: Seller information.
components:
  schemas:
    VintedPhoto:
      type: object
      properties:
        url:
          type: string
          description: Photo URL.
        width:
          type: integer
          nullable: true
          description: Width in pixels.
        height:
          type: integer
          nullable: true
          description: Height in pixels.
    VintedUserSummary:
      type: object
      properties:
        id:
          type: integer
          description: User ID.
        login:
          type: string
          description: Username.
        photo:
          type: object
          nullable: true
          properties:
            url:
              type: string
        feedback_reputation:
          type: number
          nullable: true
          description: Reputation score between 0 and 1.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````