/v1/server
Live NodeInfo for any server, read directly from it
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/fediverse-api/v1/server" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fediverse-api/v1/server", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fediverse-api/v1/server");
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/server",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Live NodeInfo for one fediverse server, read directly from the server (not the FediDB aggregate) — so it works for any ActivityPub server, including small or new ones FediDB doesn't track, and is as fresh as the server reports. users_total is registered accounts; active_month/active_halfyear are active users; local_posts is statuses posted on this server. Some servers omit active counts (null). Pass domain (e.g. mastodon.social).",
"domain": "mastodon.social",
"source": "NodeInfo (live, direct from the server)",
"version": "4.6.0-nightly.2026-06-12",
"software": "mastodon",
"node_name": "Mastodon",
"protocols": [
"activitypub"
],
"server_url": "https://mastodon.social",
"local_posts": 177681098,
"users_total": 3307019,
"active_month": 273548,
"local_comments": null,
"active_halfyear": 713385,
"node_description": "The original server of Mastodon, operated by Mastodon GmbH for the common good.",
"open_registrations": true
},
"meta": {
"timestamp": "2026-06-13T14:10:42.291Z",
"request_id": "89d6ab03-4027-4bf9-aab1-2e1da9ef5e8e"
},
"status": "ok",
"message": "Server NodeInfo retrieved successfully",
"success": true
}