/v1/user
A user profile
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/misskey-api/v1/user" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/misskey-api/v1/user", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/misskey-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/misskey-api/v1/user",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"user": {
"id": "7rkr3b1c1c",
"url": "https://misskey.io/@ai",
"host": null,
"name": "藍",
"notes": 275451,
"handle": "@ai",
"is_bot": true,
"is_cat": true,
"username": "ai",
"followers": 21623,
"following": 1456,
"avatar_url": "https://proxy.misskeyusercontent.jp/avatar.webp?url=https%3A%2F%2Fmedia.misskeyusercontent.jp%2Fmisskey%2Fwebpublic-ecc1008f-3e2e-4206-ae7e-5093221f08be.png&avatar=1",
"created_at": "2019-04-14T17:11:39.168Z",
"description": "Misskey常駐AIの藍です!\nよろしくお願いします♪\n\n[私のサイト](https://xn--931a.moe/) | [説明書](https://github.com/syuilo/ai/blob/master/torisetu.md)\n\nRepository: [Public](https://github.com/syuilo/ai)"
}
},
"meta": {
"timestamp": "2026-06-09T03:03:34.760Z",
"request_id": "dab919fd-d7a6-4b6e-a861-00292edb94bb"
},
"status": "ok",
"message": "User retrieved successfully",
"success": true
}