Skip to main content
POST
/
api
/
vinted
/
users
/
items
/vinted/users/items
curl --request POST \
  --url https://api.anysite.io/api/vinted/users/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": 123,
  "count": 2,
  "timeout": 300,
  "domain": "vinted.de"
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "@type": "@vinted_wardrobe_item",
    "url": "<string>",
    "path": "<string>",
    "price": {
      "@type": "@vinted_price",
      "amount": 123,
      "currency": "<string>"
    },
    "total_price": {
      "@type": "@vinted_price",
      "amount": 123,
      "currency": "<string>"
    },
    "brand": "<string>",
    "size": "<string>",
    "status": "<string>",
    "image": "<string>",
    "images": [],
    "favourite_count": 0,
    "view_count": 0,
    "is_closed": false,
    "is_reserved": false,
    "is_hidden": false,
    "is_draft": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
integer
required

Vinted user ID or member profile URL

Examples:

103792107

3154471098

count
integer
required

Max number of items 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

Response

Successful Response

id
integer
required
title
string
required
@type
string
default:@vinted_wardrobe_item
url
string | null
path
string | null
price
VintedPrice · object
total_price
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_closed
boolean
default:false
is_reserved
boolean
default:false
is_hidden
boolean
default:false
is_draft
boolean
default:false