/v1/software
Software breakdown, or one platform's detail
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}