/v1/software
Software breakdown, or one platform's detail
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/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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}