Zum Inhalt springen
GET /v1/videos

A channel's recent uploads

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/odysee-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 20,
        "videos": [
            {
                "tags": [
                    "channel roundup",
                    "channel roundup odysee",
                    "odysee creators",
                    "odysee",
                    "channel roundup creators",
                    "c:scheduled:show"
                ],
                "title": "Channel Roundup: May 2026",
                "channel": "@Odysee",
                "claim_id": "ee58d95e7e42ec9479e13b28d57556f9ffb373dc",
                "thumbnail": "https://thumbs.odycdn.com/54de7817b7cd25f526b368570edd7399.webp",
                "watch_url": "https://odysee.com/@Odysee:8/channel-roundup-may-2026:e",
                "description": "Discover unique channels that create authentic, unfiltered content in this new Channel Roundup.\n\n1. [Maya Clars](https://odysee.com/@mayaclars:4?view=content)\n2. [Fossery Tech](https://odysee.com/@fossery-tech:4?view=content)\n3. [Privacy Guides](https://odysee.com/@PrivacyGuides:c?view=content)\n4. [Efrat Fenigson](https://odysee.com/@Efrat:0?view=content)\n5. [Cooptonian](https://odysee.com/@coopto",
                "release_time": 1780063201,
                "duration_seconds": 413
            },
            {
                "tags": [
                    "channel roundup",
                    "odysee",
                    "odysee creators",
                    "channel roundup odysee",
                    "odysee sync tool (ost)"
                ],
                "title": "Channel Roundup: April 2026",
                "channel": "@Odysee",
                "claim_id": "5cbb7a5cc3684e98872b81a344af2a7ae8f4647d",
                "thumbnail": "https://thumbs.odycdn.com/9e6b54e310e15bb29abbf888f2bbf73c.webp",
                "watch_url": "https://odysee.com/@Odysee:8/channel-roundup-april-2026:5",
                "description": null,
                "release_time": 1777583156,
                "duration_seconds": null
            },
            {
                "tags": [
                    "odysee sync tool (ost)",
                    "odysee sync tool",
                    "odysee sync",
                    "odysee"
                ],
                "title": "Introducing: Odysee Sync Tool (OST)",
                "channel": "@Odysee",
                "claim_id": "9a666006bc8f46114eede9d0f608a4c2b97335cc",
                "thumbnail": "https://thumbs.odycdn.com/0b8acf4d70c072b3d16756cf3db8d006.webp",
                "watch_url": "https://odysee.com/@Odysee:8/introducing-odysee-sync-tool-ost:9",
                "description": null,
                "release_time": 1775151080,
                "duration_seconds": null
            },
            {
                "tags": [
                    "channel roundup",
                    "channel roundup march",
                    "channel roundup odysee",
                    "odysee"
                ],
                "title": "Channel Roundup: March 2026",
                "chann
…