Skip to main content
POST
/
api
/
vinted
/
products
/
search
/vinted/products/search
curl --request POST \
  --url https://api.anysite.io/api/vinted/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "domain": "vinted.de",
  "order": "relevance",
  "catalog_ids": [
    123
  ],
  "brand_ids": [
    123
  ],
  "size_ids": [
    123
  ],
  "status_ids": [
    123
  ],
  "color_ids": [
    123
  ],
  "price_from": 1,
  "price_to": 1,
  "currency": "EUR"
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "@type": "@vinted_search_item",
    "url": "<string>",
    "path": "<string>",
    "price": {
      "@type": "@vinted_price",
      "amount": 123,
      "currency": "<string>"
    },
    "total_price": {
      "@type": "@vinted_price",
      "amount": 123,
      "currency": "<string>"
    },
    "service_fee": {
      "@type": "@vinted_price",
      "amount": 123,
      "currency": "<string>"
    },
    "brand": "<string>",
    "size": "<string>",
    "status": "<string>",
    "image": "<string>",
    "images": [],
    "favourite_count": 0,
    "view_count": 0,
    "is_visible": false,
    "is_promoted": false,
    "user": {
      "id": 123,
      "@type": "@vinted_search_user",
      "alias": "<string>",
      "profile_url": "<string>",
      "image": "<string>",
      "is_business": false
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"nike"

"levis jeans"

count
integer
required

Max number of results to return

Required range: x >= 1
Example:

20

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
domain
enum<string>
default:vinted.de

Vinted country domain to query

Available options:
vinted.de,
vinted.fr,
vinted.com,
vinted.es,
vinted.it,
vinted.nl,
vinted.pl,
vinted.co.uk
order
enum<string>
default:relevance

Result ordering

Available options:
relevance,
newest_first,
price_high_to_low,
price_low_to_high
catalog_ids
integer[] | null

Filter by Vinted category (catalog) IDs

brand_ids
integer[] | null

Filter by brand IDs

size_ids
integer[] | null

Filter by size IDs

status_ids
integer[] | null

Filter by condition (status) IDs

color_ids
integer[] | null

Filter by color IDs

price_from
number | null

Minimum price

Required range: x >= 0
price_to
number | null

Maximum price

Required range: x >= 0
currency
string | null

Currency code for price filters

Example:

"EUR"

Response

Successful Response

id
integer
required
title
string
required
@type
string
default:@vinted_search_item
url
string | null
path
string | null
price
VintedPrice · object
total_price
VintedPrice · object
service_fee
VintedPrice · object
brand
string | null
size
string | null
status
string | null
image
string | null
images
string[]
favourite_count
integer
default:0
view_count
integer
default:0
is_visible
boolean
default:false
is_promoted
boolean
default:false
user
VintedSearchUser · object