Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/qiita-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/qiita-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/qiita-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/qiita-api/v1/meta");
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/meta",
    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": "articles takes q (keyword), tag (a Qiita tag), min_stocks (minimum saves) and limit (1-50); with no filters it returns popular articles (over 100 stocks). article takes id (a Qiita article id). tags takes limit (1-100). meta takes no parameters. likes are LGTM up-votes, stocks are saves/bookmarks — two distinct signals. Qiita rate-limits unauthenticated callers to 60/hour, so a ~15-minute cache fronts the upstream and stale data is served if the limit is hit.",
        "sample": {
            "top_tag": "Python",
            "followers": 253454
        },
        "source": "Qiita public v2 API (qiita.com/api/v2), keyless, live",
        "service": "qiita-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tags": "Tech tags ranked by article count (limit=30).",
            "GET /v1/article": "One article in full by id.",
            "GET /v1/articles": "Search/list articles (q=react, tag=JavaScript, min_stocks=50)."
        },
        "description": "Articles, engagement and trending tech tags from Qiita (qiita.com), Japan's largest developer knowledge-sharing community, keyless. The articles endpoint searches/lists articles (LGTM likes, stocks/saves, comments, tags, author) filterable by keyword, tag and minimum stocks; the article endpoint returns one article by id; the tags endpoint ranks Qiita's tech tags by articles and followers — what Japan's engineers care about. The Qiita platform cut — distinct from dev.to, Medium and the other blogging/social feeds, with its own LGTM/stock engagement model. Japanese (and English) text as Qiita publishes it.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:10.105Z",
        "request_id": "a646918e-9981-4b53-9a50-e4e8338e28f7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}