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/odysee-api

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "source": "Odysee/LBRY public backend (live)",
        "service": "odysee-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Search the platform for videos (q=bitcoin, limit up to 50), trending order.",
            "GET /v1/videos": "A channel's recent uploads (name=@Odysee, limit up to 50).",
            "GET /v1/channel": "Resolve a channel (name=@Odysee): title, avatar, video count, staked LBC, tags."
        },
        "description": "Live data for Odysee, the decentralised video platform on the LBRY blockchain: resolve a @channel to its title, description, avatar, video count, staked LBC and tags; list a channel's recent uploads with title, duration, thumbnail, release date and watch URL; or search the whole platform for videos by keyword in trending order. Live from the LBRY network, no key, nothing stored. Distinct from centralised-platform video APIs — this is the on-chain Odysee/LBRY catalogue.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:53.320Z",
        "request_id": "71456190-7fde-4a93-af27-ec70fa05eaaf"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}