Vai al contenuto
GET /v1/ranking

Official pixiv ranking by mode

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/pixiv-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "date": "20260601",
        "mode": "daily",
        "note": "The official pixiv daily ranking — the top artworks ranked, each with its rank (and previous rank), title, artist, view count, ranking points (bookmark-weighted), work type and tags. mode: daily/weekly/monthly/rookie/original/male/female; content: all/illust/manga/ugoira; page 1-10 (50 per page); optional date=YYYYMMDD for a past day's ranking. Only safe-for-work modes are exposed. Live, cached ~5m.",
        "page": 1,
        "count": 50,
        "source": "pixiv public ranking endpoint (pixiv.net/ranking.php), keyless",
        "content": "illust",
        "ranking": [
            {
                "url": "https://www.pixiv.net/artworks/145430123",
                "rank": 1,
                "tags": [
                    "からめる",
                    "謎の疾走感",
                    "発想の源が狂ってるシリーズ",
                    "カオスが極まる",
                    "丘サーファー",
                    "ブルドーザーだっ!!!",
                    "そうはならんやろ",
                    "地球クリーン作戦",
                    "乗るしかねぇよな!このビッグウェーブに!",
                    "ブラックジョーク"
                ],
                "type": "illustration",
                "pages": 1,
                "title": "商店街でも海を感じたい猫",
                "views": 25940,
                "artist": "からめる",
                "points": 1185,
                "uploaded": "2026-05-31T06:31:08.000Z",
                "artist_id": "6382123",
                "illust_id": "145430123",
                "prev_rank": 1
            },
            {
                "url": "https://www.pixiv.net/artworks/145412444",
                "rank": 2,
                "tags": [
                    "空崎ヒナ",
                    "ブルアカ",
                    "ブルーアーカイブ",
                    "ブルーアーカイブ10000users入り"
                ],
                "type": "illustration",
                "pages": 2,
                "title": "ヒナ ANGEL COS VER.",
                "views": 48150,
                "artist": "モ誰",
                "points": 1282,
                "uploaded": "2026-06-03T02:42:45.000Z",
                "artist_id": "1878082",
                "illust_id": "145412444",
                "prev_rank": 3
            },
            {
                "url": "https://www.pixiv.net/artworks/145454290",
                "rank": 3,
                "tags": [
                    "原神",
                    "ニコ・リヤン",
                    "GenshinImpact",
                    "白タイツ",
                    "原神10000users入り",
                    "金髪"
                ],
                "type": "illustration",
                "pages": 1,
                "title": "アフタヌーン・ライティング",
                "views": 30623,
                "artist": "torino",
                "points": 4812,
                "uploaded": "2026-05-31T15:00:21.000Z",
                "artist_id": "1960050",
                "illust_id": "145454290",
                "prev_rank": null
            },
            {
                "url": "https://www.
…