/v1/user
A user profile: followers, articles, linked accounts
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/qiita-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/qiita-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/qiita-api/v1/user");
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/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": "Qiita",
"url": "https://qiita.com/Qiita",
"name": "Qiita キータ",
"note": "A Qiita user profile: followers, followees, how many articles they've published (articles) and their linked GitHub/Twitter, organisation and location where the user set them. Find user ids in any article's author field. Live, cached ~15m.",
"github": "qiitan",
"source": "Qiita public v2 API (qiita.com/api/v2/users), keyless",
"twitter": "Qiita",
"articles": 66,
"location": "Qiitaの中",
"followees": 2,
"followers": 928134,
"description": "Qiita公式アカウントです。Qiitaに関するお問い合わせに反応したり、お知らせなどを発信しています。",
"organization": "Qiita",
"profile_image": "https://s3-ap-northeast-1.amazonaws.com/qiita-image-store/0/88/ccf90b557a406157dbb9d2d7e543dae384dbb561/large.png?1575443439"
},
"meta": {
"timestamp": "2026-06-13T13:47:50.954Z",
"request_id": "fbfa07e6-6e7d-4e09-824d-9a2f904c0346"
},
"status": "ok",
"message": "User retrieved successfully",
"success": true
}