Ir al contenido
GET /v1/closet

A seller's public listings

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/vinted-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/vinted-api/v1/closet" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vinted-api/v1/closet", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vinted-api/v1/closet");
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/closet",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "A Vinted seller's public listings (their 'closet') — every item the seller currently has for sale, each with price, brand, size, condition, photo and favourite count. Pass id (the seller's numeric user id from /v1/user or /v1/search), or omit to use a recent seller.",
        "count": 20,
        "items": [
            {
                "id": 9173913426,
                "url": "https://www.vinted.com/items/9173913426-momcozy-22oz-mint-green-insulated-breast-milk-cooler-designed-for-safe-travel",
                "size": null,
                "brand": "Momcozy",
                "photo": "https://images1.vinted.net/t/06_01fc9_7p2JF357tkwMEWwUn9sHxirg/f800/1781456613.jpeg?s=c4770b230ee82449495d94cf2c5f9ce31cccc194",
                "price": 65,
                "title": "Momcozy 22oz mint green insulated breast milk cooler designed for safe, travel",
                "seller": "dorifindings1",
                "status": "New with tags",
                "currency": "USD",
                "seller_id": 3150832693,
                "favourites": 0
            },
            {
                "id": 9173913284,
                "url": "https://www.vinted.com/items/9173913284-jane-delancey-womens-striped-button-up-shirt-star-embroidery-1x-summer-resort",
                "size": "Other",
                "brand": "Jane and Delancey",
                "photo": "https://images1.vinted.net/t/06_01494_BAGZ1Fg4tbgvjc3maUuqmurS/f800/1781456612.jpeg?s=ba5f24ea81ab6917bebb383e0e01ccddd7251571",
                "price": 11,
                "title": "Jane & Delancey Womens Striped Button-Up Shirt Star Embroidery 1X Summer Resort",
                "seller": "vintagehndcrftd",
                "status": "Very good",
                "currency": "USD",
                "seller_id": 3150276188,
                "favourites": 0
            },
            {
                "id": 9173914059,
                "url": "https://www.vinted.com/items/9173914059-jessica-simpson-baby-girl-dress-size-3-6-months",
                "size": "3-6M",
                "brand": "Jessica Simpson",
                "photo": "https://images1.vinted.net/t/05_00e70_DxMFjZgxxSC7ieSarxfBjj7y/f800/1781456616.jpeg?s=1910a10504e29b759430cbed7a13da64248bff0f",
                "price": 2,
                "title": "Jessica Simpson Baby girl dress size 3-6 months",
                "seller": "nwisecondchance",
                "status": "Very good",
                "currency": "USD",
                "seller_id": 3157417623,
                "favourites": 0
            },
            {
                "id": 9173913803,
                "url": "https://www.vinted.com/items/9173913803-vintage-board-game-ten-commandments-bible-game",
                "size": null,
                "brand": "Cadaco",
                "photo": "https://images1.vinted.net/t/06_006b3_T9myyjsWRDQHemPvc2zXoPv7/f800/1781456615.jpeg?s=09db587e8ab793539d65825df8544fcd45e6c829",
                "price": 7,
                "
…