Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/misskey-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "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
}