Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/vinted-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/vinted-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/vinted-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/vinted-api/v1/meta");
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/meta",
    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": {
        "sample": {
            "newest": "Momcozy 22oz mint green insulated breast milk cooler designed for safe, travel"
        },
        "source": "Vinted public web API (vinted.com/api/v2), anonymous-session, keyless",
        "service": "vinted-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/user": "A seller's public profile (id; omit for a recent seller).",
            "GET /v1/closet": "A seller's public listings (id; omit for a recent seller).",
            "GET /v1/search": "Search the Vinted catalogue (q, price_from, price_to, order, limit)."
        },
        "description": "Live Vinted second-hand fashion marketplace data with no key: search the catalogue by keyword with price filters and sort, list a seller's public listings (their closet), and read a seller's public profile (ratings, item and follower counts). The resale / second-hand-commerce layer for shopping aggregators, price-comparison and fashion-resale analytics. Vinted's public API sits behind an anonymous session; this bootstraps it. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:46.528Z",
        "request_id": "9a489f86-d3b0-446d-9708-4b3b581add50"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}