Ir al contenido
GET /v1/search

Search videos by query

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/rutube-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "count": 20,
        "query": "news",
        "source": "RUTUBE",
        "results": [
            {
                "id": "b68e4526d60f0945b36853edee93aca8",
                "url": "https://rutube.ru/video/b68e4526d60f0945b36853edee93aca8/",
                "title": "Первый информационный",
                "views": 233441,
                "channel": {
                    "id": 695267,
                    "url": "https://rutube.ru/video/person/695267/",
                    "name": "NEWS.BY: новости Беларуси и мира"
                },
                "category": "Телепередачи",
                "is_adult": false,
                "published": "2026-04-13T14:12:17",
                "thumbnail": "https://pic.rtbcdn.ru/video/2026-04-13/8e/a5/8ea5a0b08c6a36237f286fd786dd607c.jpg",
                "duration_sec": 0
            },
            {
                "id": "0214eb496e08748194b054d6598bed2c",
                "url": "https://rutube.ru/video/0214eb496e08748194b054d6598bed2c/",
                "title": "Манифест тотальной войны: Европа выдвинула России условия, достойные лишь трибунала",
                "views": 13898,
                "channel": {
                    "id": 23323865,
                    "url": "https://rutube.ru/video/person/23323865/",
                    "name": "Rogandar NEWs"
                },
                "category": "Новости и СМИ",
                "is_adult": false,
                "published": "2026-06-10T18:05:04",
                "thumbnail": "https://pic.rtbcdn.ru/video/2026-06-10/dd/91/dd91151b5124847e862f3665fd6a0388.jpg",
                "duration_sec": 610
            },
            {
                "id": "8549b47ac1f8088b1f3b530654aaed83",
                "url": "https://rutube.ru/video/8549b47ac1f8088b1f3b530654aaed83/",
                "title": "В одесском СИЗО бывшего военкома заставили приносить тапок в зубах",
                "views": 8938,
                "channel": {
                    "id": 23323865,
                    "url": "https://rutube.ru/video/person/23323865/",
                    "name": "Rogandar NEWs"
                },
                "category": "Новости и СМИ",
                "is_adult": false,
                "published": "2026-06-10T09:16:29",
                "thumbnail": "https://pic.rtbcdn.ru/video/2026-06-10/19/49/1949fc9fe6161c32dad84fb08037bf18.jpg",
                "duration_sec": 542
            },
            {
                "id": "3cdfd10f03d96ea01bb2bf7dcd74d9fa",
                "url": "https://rutube.ru/video/3cdfd10f03d96ea01bb2bf7dcd74d9fa/",
                "title": "Чёрный глаз Варшавы: как украинские «холопы» порют панов в прямом эфире",
                "views": 16817,
                "channel": {
                    "id": 23323865,
                    "url": "https://rutube.ru/video/person/23323865/",
                    "name": "Rogandar NEWs"
                },
                "category": "Новости и СМИ",
                "is_adult": false,
 
…