/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}