Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/vinted-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}