-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (47 loc) · 2.72 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>ニコニコ非公式APIドキュメント</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="./static/favicon32x32.png" sizes="32x32">
<link rel="icon" href="./static/favicon16x16.png" sizes="16x16">
<link rel="stylesheet" type="text/css" href="./static/index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&family=Montserrat:wght@300;400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a class="logoLink" href="./index.html">
<img src="./static/logo.png" class="logo">
<p>ニコニコ非公式APIドキュメント</p>
</a>
<a href="./index.html" class="headerLink active">top</a>
<a href="./public/index.html" class="headerLink">public</a>
<a href="./nvapi/index.html" class="headerLink">nvapi</a>
<a href="./other/index.html" class="headerLink">other</a>
</header>
<main class="index">
<h1>ニコニコ非公式APIドキュメント</h1>
<h2>非公開API</h2>
<p>存在は公開されていませんが、実際にニコニコ上で使用されているAPIです。</p>
<p style="color: red;font-weight: bold;font-size:150%;">
※悪用厳禁・使用は自己責任でお願いします。<br/>
またこれらのAPIの使用時には独自の<code>User-Agent</code>をヘッダーにつけるようにしてください。
</p>
<h3><a href="/api/public">Public API</a></h3>
<p>主にニコニコ全体に共通する情報を取得するためのAPI</p>
<h3><a href="/api/nvapi">Nicovideo API</a></h3>
<p>ニコニコ動画に関する情報を取得するAPI</p>
<h3><a href="/api/other">Other API</a></h3>
<p>ニコニコ動画に関するその他のAPI(主にドメイン名が違うもの)</p>
<h2>公開API</h2>
<p>公式が正式にドキュメントを公開しているAPIです。</p>
<h3><a href="https://site.nicovideo.jp/search-api-docs/snapshot" target="_blank" rel="noopener noreferrer">スナップショット検索API v2</a></h3>
<p>簡単に動画情報を検索できるAPI</p>
<h3><a href="https://dwango.github.io/niconico/genre_ranking/ranking_log/" target="_blank" rel="noopener noreferrer">ランキング過去ログAPI</a></h3>
<p>新ランキング以降のランキングデータアーカイブを取得するAPI</p>
</main>
</body>
</html>