/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.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/misskey-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/misskey-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/misskey-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/misskey-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": {
"stats": {
"notes": 518168112,
"users": 720211
},
"source": "Misskey.io public API (live)",
"service": "misskey-api",
"instance": "misskey.io",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "User profile (username=, e.g. ai).",
"GET /v1/stats": "Instance-wide stats (notes, users, instances, reactions).",
"GET /v1/trends": "Currently trending hashtags with poster counts.",
"GET /v1/featured": "Featured (most-reacted) notes (limit).",
"GET /v1/user-notes": "A user's recent notes (username=, limit)."
},
"description": "Live data from Misskey.io, the largest Misskey instance (a decentralised Fediverse microblog, distinct from Mastodon): trending hashtags, featured (most-reacted) notes, user profiles, a user's recent notes, and instance stats. Live, no key."
},
"meta": {
"timestamp": "2026-06-09T03:03:35.008Z",
"request_id": "2e3c18b0-61d4-418c-bf33-4fe0c4fd77ec"
},
"status": "ok",
"message": "Meta",
"success": true
}