Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "auth": "none upstream; this gateway requires x-api-key",
        "name": "Billboard API",
        "note": "Live chart data, no cache. Pass ?date=YYYY-MM-DD for any historical week (default: latest published chart). Entries carry rank, title, artist, image, last_week, peak_position and weeks_on_chart. For artist/album charts the title is the artist/album and artist may be null.",
        "source": "Billboard charts (billboard.com/charts) — public HTML, parsed live",
        "endpoints": 7
    },
    "meta": {
        "timestamp": "2026-06-02T16:53:13.818Z",
        "request_id": "ecdfaf81-2941-49cb-a6df-94823fbe3c55"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}