Piloterr

Vinted User Info

Retrieve public profile information for a Vinted user by profile URL or user ID, including item count, followers, location, and verification status.

Status: Deprecated

Credit cost: 1 credit per call

GET
/v2/vinted/user/info

Authorization

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Query Parameters

query*string

Vinted user profile URL or numeric user ID.

Accepted formats:

  • URL: full Vinted member URL (e.g. https://www.vinted.fr/member/133607xx-xx)
  • ID: numeric Vinted user ID (e.g. 133607)

Examples:

https://www.vinted.fr/member/133607xx-xx

133607

Notes:

  • Both the full profile URL and the numeric ID are supported.
  • The response includes the user's public profile data: location, item count, followers, following, and identity verification statuses.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.piloterr.com/v2/vinted/user/info?query=string"
{
  "id": 999999,
  "city": "Sainte-Maxime",
  "items": 192,
  "login": "xxx",
  "country": "France",
  "business": null,
  "username": "xxx",
  "followers": 278,
  "following": 72,
  "verification": {
    "email": {
      "valid": true,
      "available": true
    },
    "phone": {
      "valid": true,
      "available": true,
      "verified_at": "2019-11-08T16:08:41+01:00"
    },
    "google": {
      "valid": true,
      "available": true,
      "verified_at": "2022-06-15T18:35:59+02:00"
    },
    "facebook": {
      "valid": true,
      "available": true,
      "verified_at": "2017-06-29T11:14:54+02:00"
    }
  }
}
{
  "error": "Bad Request"
}
{
  "error": "Invalid API Key"
}
{
  "error": "Payment required"
}
{
  "error": "Rate limit exceeded for the API key: quota monthly"
}
{
  "error": "Internal Error"
}