/v1/note
One note in full by id
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/note" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/misskey-api/v1/note", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/misskey-api/v1/note");
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/note",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": {
"cw": null,
"id": "anei6co453z806p5",
"url": "https://misskey.io/notes/anei6co453z806p5",
"text": "misskey.ioに新しい絵文字 :ota_omurice: (`ota_omurice`)が追加されたかも。\n$[tada.speed=0s :ota_omurice:]",
"user": {
"host": null,
"name": "絵文字bot🤖(2代目)",
"username": "emoji_bot"
},
"files": 0,
"renotes": 113,
"replies": 0,
"reactions": 458,
"created_at": "2026-06-12T13:04:50.596Z",
"visibility": "public"
}
},
"meta": {
"timestamp": "2026-06-13T14:11:40.793Z",
"request_id": "d49f8e45-779a-40e2-b3ad-d757d9bf6775"
},
"status": "ok",
"message": "Note retrieved successfully",
"success": true
}