/v1/article
One article in full by id
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/qiita-api/v1/article" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/qiita-api/v1/article", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/qiita-api/v1/article");
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/qiita-api/v1/article",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "06420caf41a34a910c53",
"url": "https://qiita.com/ot12/items/06420caf41a34a910c53",
"note": "One Qiita article in full: its LGTM likes, stocks (saves), comment count, tags, author, created/updated dates and body length in characters. likes are LGTM up-votes; stocks are saves. Live, cached ~15m.",
"tags": [
"Claude",
"AIエージェント",
"ClaudeCode"
],
"likes": 787,
"title": "Opus4.7の登場により、Claude Codeの開発者と公式が「これはもうやめろ」と言い始めた6つのこと",
"author": "ot12",
"source": "Qiita public v2 API (qiita.com/api/v2/items), keyless",
"stocks": 624,
"created": "2026-04-22T09:28:50+09:00",
"updated": "2026-04-25T10:44:00+09:00",
"comments": 2,
"body_chars": 9180,
"author_name": null
},
"meta": {
"timestamp": "2026-06-13T04:42:08.299Z",
"request_id": "f1a456ea-6ca3-4ac8-933e-276ea5cef8f8"
},
"status": "ok",
"message": "Article retrieved successfully",
"success": true
}