Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/odysee-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}