/v1/video
One video's full detail by watch id
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/niconico-api/v1/video" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/niconico-api/v1/video", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/niconico-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/niconico-api/v1/video",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "One Niconico video's full detail: its view count, scrolling-comment count and mylist (bookmark) count, its length, upload date, genre, uploader and tags. Live, cached ~60s.",
"tags": [
"陰陽師",
"レッツゴー!陰陽師",
"公式",
"音楽",
"ゲーム",
"弾幕動画",
"矢部野彦麿",
"3月6日投稿動画",
"重要ニコニコ文化財",
"お前らの愛で見えなくしたい",
"ニコニ国歌"
],
"genre": "未設定",
"title": "新・豪血寺一族 -煩悩解放 - レッツゴー!陰陽師",
"views": 22965866,
"length": "5:20",
"source": "Niconico getthumbinfo API (ext.nicovideo.jp), keyless",
"mylists": 183056,
"comments": 5670147,
"uploaded": "2007-03-06T00:33:00+09:00",
"uploader": "中の",
"video_url": "https://www.nicovideo.jp/watch/sm9",
"content_id": "sm9",
"description": "レッツゴー!陰陽師(フルコーラスバージョン)",
"thumbnail_url": "https://nicovideo.cdn.nimg.jp/thumbnails/9/9"
},
"meta": {
"timestamp": "2026-06-13T04:42:53.079Z",
"request_id": "54e5d028-75fb-4ffb-96ef-07afe9b6eff9"
},
"status": "ok",
"message": "Video retrieved successfully",
"success": true
}