Vai al contenuto
GET /v1/tags

Tech tags ranked by article count

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "note": "Qiita's tech tags ranked by article count — the live map of what Japan's engineers write about most, each with its number of articles and followers. Pass limit (1-100). Live, cached ~15m.",
        "tags": [
            {
                "tag": "Python",
                "rank": 1,
                "articles": 102448,
                "followers": 253454
            },
            {
                "tag": "JavaScript",
                "rank": 2,
                "articles": 64932,
                "followers": 208128
            },
            {
                "tag": "AWS",
                "rank": 3,
                "articles": 57381,
                "followers": 109012
            },
            {
                "tag": "初心者",
                "rank": 4,
                "articles": 51152,
                "followers": 148974
            },
            {
                "tag": "Ruby",
                "rank": 5,
                "articles": 43531,
                "followers": 72592
            },
            {
                "tag": "Rails",
                "rank": 6,
                "articles": 42420,
                "followers": 56237
            },
            {
                "tag": "PHP",
                "rank": 7,
                "articles": 31995,
                "followers": 89561
            },
            {
                "tag": "Docker",
                "rank": 8,
                "articles": 30928,
                "followers": 75544
            },
            {
                "tag": "Java",
                "rank": 9,
                "articles": 29113,
                "followers": 116065
            },
            {
                "tag": "Linux",
                "rank": 10,
                "articles": 24222,
                "followers": 126736
            },
            {
                "tag": "React",
                "rank": 11,
                "articles": 23894,
                "followers": 65573
            },
            {
                "tag": "Swift",
                "rank": 12,
                "articles": 23806,
                "followers": 11034
            },
            {
                "tag": "iOS",
                "rank": 13,
                "articles": 23482,
                "followers": 48248
            },
            {
                "tag": "Android",
                "rank": 14,
                "articles": 22383,
                "followers": 57707
            },
            {
                "tag": "AI",
                "rank": 15,
                "articles": 21037,
                "followers": 99514
            },
            {
                "tag": "TypeScript",
                "rank": 16,
                "articles": 20919,
                "followers": 59017
            },
            {
                "tag": "C#",
                "rank": 17,
                "articles": 19974,
                "followers": 56751
            },
            {
                "tag": "Git",
                
…