Zum Inhalt springen
GET /v1/article

One article in full by id

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/qiita-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}