/v1/illust
One artwork in full by id
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/pixiv-api/v1/illust" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pixiv-api/v1/illust", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pixiv-api/v1/illust");
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/illust",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"sfw": true,
"url": "https://www.pixiv.net/artworks/145692794",
"note": "One pixiv artwork in full: its view, bookmark, like and comment counts, tags, work type, dimensions, page count and upload date. x_restrict is pixiv's age flag (0 = all-ages, 1 = R-18, 2 = R-18G); sfw is true only when x_restrict is 0. Live, cached ~5m.",
"tags": [
"VOCALOID",
"初音ミク",
"テレパシ",
"本家",
"DECO*27"
],
"type": "illustration",
"likes": 7365,
"pages": 1,
"title": "テレパシ",
"views": 58273,
"width": 1080,
"artist": "おむたつ/omutatsu",
"height": 1350,
"source": "pixiv public artwork endpoint (pixiv.net/ajax/illust), keyless",
"created": "2026-06-06T15:00:00+00:00",
"comments": 34,
"uploaded": "2026-06-06T15:00:00+00:00",
"artist_id": "1499614",
"bookmarks": 9181,
"illust_id": "145692794",
"x_restrict": 0,
"description": "DECO*27 - テレパシ feat. 初音ミク 2025制作"
},
"meta": {
"timestamp": "2026-06-13T04:42:38.407Z",
"request_id": "768beed6-499e-4cb5-a5a2-ae0e2c01ad16"
},
"status": "ok",
"message": "Artwork retrieved successfully",
"success": true
}