Ir al contenido
GET /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.

Encabezados personalizados (opcional)
api.oanor.com/fediverse-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/fediverse-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fediverse-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fediverse-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/fediverse-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": {
        "source": "FediDB public API (live)",
        "service": "fediverse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/stats": "Network-wide fediverse totals (instances, users, posts, MAU).",
            "GET /v1/servers": "Largest servers by user count (limit up to 40, optional software= filter).",
            "GET /v1/software": "Software breakdown ranked by users; add name=mastodon for one platform's detail."
        },
        "description": "Live Fediverse statistics from FediDB: network-wide totals (instances, users, posts, monthly active users), the breakdown by software (Mastodon, Misskey, Pixelfed, Lemmy, PeerTube and more — instances, users, license, source repo), and the largest servers ranked by users with an optional software filter. The meta-social layer for the decentralised social web. Live, no key. Distinct from single-platform Mastodon / Misskey / Mbin / Lemmy APIs — this is cross-fediverse statistics.",
        "total_instances": 42812
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:38.257Z",
        "request_id": "dcac35d3-57fe-4778-965e-c74984914eba"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}