/v1/tags
Tech tags ranked by article count
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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",
…