/v1/featured
Featured (most-reacted) notes
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/misskey-api/v1/featured" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/misskey-api/v1/featured", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/misskey-api/v1/featured");
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/featured",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 10,
"notes": [
{
"cw": null,
"id": "an9dr1ww2af90bgl",
"url": "https://misskey.io/notes/an9dr1ww2af90bgl",
"text": "怒ってないし喜んでいる:touhou_patchouli_face:\n\n\n今日はパチュリーの日だった:blobcat_taremimi_smile:",
"user": {
"host": null,
"name": "おおやまぼくち:pixiv_icon::skeb: 🔞",
"username": "oyamabokuti"
},
"files": 1,
"renotes": 51,
"replies": 0,
"reactions": 112,
"created_at": "2026-06-08T23:02:07.472Z",
"visibility": "public"
},
{
"cw": null,
"id": "an9dmzsusu2y00hs",
"url": "https://misskey.io/notes/an9dmzsusu2y00hs",
"text": null,
"user": {
"host": null,
"name": "真経津晨の女a.k.a佐原小麦",
"username": "sahara_komugi"
},
"files": 1,
"renotes": 89,
"replies": 0,
"reactions": 249,
"created_at": "2026-06-08T22:58:58.110Z",
"visibility": "public"
},
{
"cw": null,
"id": "an9dke8fgf3601oc",
"url": "https://misskey.io/notes/an9dke8fgf3601oc",
"text": ":aramaki_futon::blobcat_melt2:",
"user": {
"host": null,
"name": "ことと :nsfw:",
"username": "kttktkt"
},
"files": 1,
"renotes": 140,
"replies": 0,
"reactions": 375,
"created_at": "2026-06-08T22:56:56.847Z",
"visibility": "public"
},
{
"cw": null,
"id": "an9cnk4v969q069z",
"url": "https://misskey.io/notes/an9cnk4v969q069z",
"text": "本日は誕生日でございます:ablobblewobble:\nって言っても普通の日ではございます:blobcat_cactus:",
"user": {
"host": null,
"name": "熊澤",
"username": "SCARL556"
},
"files": 0,
"renotes": 56,
"replies": 5,
"reactions": 252,
"created_at": "2026-06-08T22:31:24.847Z",
"visibility": "public"
},
{
"cw": null,
"id": "an9ckv2y32p809rg",
"url": "https://misskey.io/notes/an9ckv2y32p809rg",
"text": "misskey.ioに新しい絵文字 :kono_dajare_ga_kiniiranai: (`kono_dajare_ga_kiniiranai`)が追加されたかも。\n$[tada.speed=0s :kono_dajare_ga_kiniiranai:]",
"user": {
"host": null,
"name": "絵文字bot🤖(2代目)",
…