/v1/user
A seller's public profile
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/vinted-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vinted-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vinted-api/v1/user");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/vinted-api/v1/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"id": 3150832693,
"note": "A Vinted seller's public profile — their item count, follower/following counts, positive/negative feedback counts and reputation. Omit id to use a recent listing's seller.",
"login": "dorifindings1",
"avatar": "https://images1.vinted.net/t/01_00386_XAPBUGVvr598nHM7TZppDNMh/f800/1777039113.jpeg?s=5e29b7d02f397d6808553bf1324301d8792c195b",
"source": "Vinted",
"country": "United States",
"created_at": null,
"item_count": 73,
"profile_url": "https://www.vinted.com/member/3150832693-dorifindings1",
"followers_count": 1,
"following_count": 0,
"given_item_count": 19,
"feedback_reputation": 1,
"negative_feedback_count": 0,
"positive_feedback_count": 15
},
"meta": {
"timestamp": "2026-06-14T17:03:46.424Z",
"request_id": "b6075107-bb33-47d5-b2e8-9ed303251b6d"
},
"status": "ok",
"message": "User retrieved successfully",
"success": true
}