/v1/channel
Resolve a channel
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/odysee-api/v1/channel" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/odysee-api/v1/channel", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/odysee-api/v1/channel");
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/channel",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"tags": [
"odysee",
"lbry",
"news",
"blockchain",
"education"
],
"cover": "https://thumbs.odycdn.com/7e3550dc3ff08654e4d8d39943ff8ca4.webp",
"title": "Odysee",
"avatar": "https://thumbs.odycdn.com/5a920753363de87d6f1f4b0d90b44706.webp",
"handle": "@Odysee",
"created": 1600203894,
"claim_id": "80d2590ad04e36fb1d077a9b9e3a8bba76defdf8",
"languages": [
"en"
],
"watch_url": "https://odysee.com/@Odysee:8",
"lbc_staked": 251402.3807,
"description": null,
"video_count": 134
},
"meta": {
"timestamp": "2026-06-09T11:39:51.304Z",
"request_id": "9b3620c9-1c0a-48bc-8695-ab51a2b11a2e"
},
"status": "ok",
"message": "Channel retrieved successfully",
"success": true
}