/v1/video
One video in full by claim_id
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/odysee-api/v1/video" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/odysee-api/v1/video", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/odysee-api/v1/video");
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/video",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"video": {
"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
}
},
"meta": {
"timestamp": "2026-06-13T14:09:13.624Z",
"request_id": "4ed57dc1-7b3e-4d7f-83ac-c44bcf4247e9"
},
"status": "ok",
"message": "Video retrieved successfully",
"success": true
}