Endpoint Playground
Test Crawlora's Vinted member API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/vinted/member?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Numeric Vinted member ID, from a /vinted/item result's seller link |
{
"code": 200,
"msg": "OK",
"data": {
"id": "3159465141",
"username": "alexist738",
"location": "Scottsbluff, United States",
"rating": 5,
"followers_count": 5,
"following_count": 0,
"url": "https://www.vinted.com/member/3159465141",
"source_url": "https://www.vinted.com/member/3159465141"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a Vinted seller's public storefront profile: username, self-disclosed coarse location, rating, and follower/following counts. Deliberately excludes online-presence and activity data (last-seen timestamps, upload-frequency badges) present on the live page. Public data, sourced from Vinted's own server-rendered member page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "3159465141",
"username": "alexist738",
"location": "Scottsbluff, United States",
"rating": 5,
"followers_count": 5,
"following_count": 0,
"url": "https://www.vinted.com/member/3159465141",
"source_url": "https://www.vinted.com/member/3159465141"
}
}curl "https://api.crawlora.net/api/v1/vinted/member?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"