Skip to main content
GET
/
v1
/
vinted
/
users
/
{user_id}
Get User Profile
curl --request GET \
  --url https://api.example.com/v1/vinted/users/{user_id}
{
  "id": 123,
  "login": "<string>",
  "photo": {},
  "given_item_count": 123,
  "item_count": 123,
  "followers_count": 123,
  "following_count": 123,
  "feedback_reputation": 123,
  "feedback_count": 123,
  "city": "<string>",
  "country_title": "<string>",
  "last_loged_on": "<string>",
  "created_at": "<string>"
}

Path Parameters

user_id
integer
required
The unique Vinted user ID. You can find this in search results or item detail responses.

Query Parameters

market
string
default:"fr"
Vinted market where the user is registered.Examples: fr, de, uk, it, es, pl, us

Response

id
integer
User ID.
login
string
Username.
photo
object
Profile photo with url, width, height.
given_item_count
integer
Number of items the user has sold.
item_count
integer
Number of items currently listed.
followers_count
integer
Number of followers.
following_count
integer
Number of users followed.
feedback_reputation
number
Reputation score between 0 and 1.
feedback_count
integer
Total number of feedback ratings received.
city
string
User’s city (if public).
country_title
string
User’s country.
last_loged_on
string
ISO 8601 timestamp of last login.
created_at
string
ISO 8601 timestamp when the account was created.

Example Response

{
  "id": 12345678,
  "login": "seller_username",
  "photo": {
    "url": "https://images1.vinted.net/t/...",
    "width": 400,
    "height": 400
  },
  "given_item_count": 87,
  "item_count": 23,
  "followers_count": 156,
  "following_count": 42,
  "feedback_reputation": 0.98,
  "feedback_count": 74,
  "city": "Paris",
  "country_title": "France",
  "last_loged_on": "2026-03-29T18:00:00Z",
  "created_at": "2022-06-10T12:00:00Z"
}
Each user profile request costs 1 credit. Failed requests are not charged.