Vai al contenuto
GET /v1/software

Software breakdown, or one platform's detail

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/fediverse-api/v1/software" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fediverse-api/v1/software", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fediverse-api/v1/software");
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/software",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

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

{
    "data": {
        "name": "Mastodon",
        "slug": "mastodon",
        "posts": 979907529,
        "users": 8574538,
        "license": "AGPL",
        "website": "https://joinmastodon.org",
        "instances": 9011,
        "description": "Mastodon is an open source decentralized social network - by the people for the people",
        "source_repo": "https://github.com/mastodon/mastodon",
        "top_hosting": [
            {
                "provider": "OVH",
                "instances": 2999
            },
            {
                "provider": "Cloudflare",
                "instances": 1792
            },
            {
                "provider": "Hetzner",
                "instances": 1672
            },
            {
                "provider": "DigitalOcean",
                "instances": 660
            },
            {
                "provider": "Akamai Connected Cloud",
                "instances": 341
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:37.754Z",
        "request_id": "2fc4355b-8f46-4444-85d4-3a8f884ac34b"
    },
    "status": "ok",
    "message": "Software retrieved successfully",
    "success": true
}