/v1/channel
A channel's recent uploads by person id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/rutube-api/v1/channel" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rutube-api/v1/channel", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rutube-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/rutube-api/v1/channel",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 20,
"source": "RUTUBE",
"videos": [
{
"id": "40849908dae223bd89b81c8d1c3b9f25",
"url": "https://rutube.ru/video/40849908dae223bd89b81c8d1c3b9f25/",
"title": "КОТ СЛИШКОМ ТЯЖЕЛЫЙ ДЛЯ БАБУЛИ #shorts #vr #iamcat",
"views": 159,
"channel": {
"id": 38770854,
"url": "https://rutube.ru/video/person/38770854/",
"name": "Shkav Games"
},
"category": "Разное",
"is_adult": false,
"published": "2026-06-09T16:00:52",
"thumbnail": "https://pic.rtbcdn.ru/video/2026-06-09/2a/7c/2a7c5441f585262e2cbcb3dc88ef7a96.jpg",
"duration_sec": 24
},
{
"id": "e7fe0b84da8ada5e0dd5a7bb79e6881a",
"url": "https://rutube.ru/video/e7fe0b84da8ada5e0dd5a7bb79e6881a/",
"title": "КОТ УМЕНЬШИЛ БАБУЛЮ В ПАНАМКЕ #shorts #vr #iamcat",
"views": 326,
"channel": {
"id": 38770854,
"url": "https://rutube.ru/video/person/38770854/",
"name": "Shkav Games"
},
"category": "Разное",
"is_adult": false,
"published": "2026-06-09T14:01:23",
"thumbnail": "https://pic.rtbcdn.ru/video/2026-06-09/b9/22/b9221544ceeb7bbcf59f7ea8d90cfca8.jpg",
"duration_sec": 42
},
{
"id": "831b28a985bf0860a1f36094ebb755fa",
"url": "https://rutube.ru/video/831b28a985bf0860a1f36094ebb755fa/",
"title": "КОТ УМЕНЬШИЛ БАБУЛЬКУ ШОКЕРОМ #shorts #vr #iamcat",
"views": 327,
"channel": {
"id": 38770854,
"url": "https://rutube.ru/video/person/38770854/",
"name": "Shkav Games"
},
"category": "Разное",
"is_adult": false,
"published": "2026-06-09T11:01:07",
"thumbnail": "https://pic.rtbcdn.ru/video/2026-06-09/69/ae/69ae13ee01fd796472553031b7897d55.jpg",
"duration_sec": 36
},
{
"id": "21d98e2b1d11ff1276c004f27a6b72ab",
"url": "https://rutube.ru/video/21d98e2b1d11ff1276c004f27a6b72ab/",
"title": "КОТ УДАРЯЕТ БАБУЛЮ ШОКЕРОМ #shorts #vr #iamcat",
"views": 108,
"channel": {
"id": 38770854,
"url": "https://rutube.ru/video/person/38770854/",
"name": "Shkav Games"
},
"category": "Разное",
"is_adult": false,
"published": "2026-06-09T09:00:43",
"thumbnail": "https://pic.rtbcdn.ru/video/2026-06-09/94/48/944814
…