Aller au contenu
GET /v1/video

One video's full detail by watch id

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/niconico-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}