/v1/instance
Stats for a Pixelfed instance
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/pixelfed-api/v1/instance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/pixelfed-api/v1/instance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/pixelfed-api/v1/instance");
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/pixelfed-api/v1/instance",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"posts": 17035103,
"title": "pixelfed",
"users": 568076,
"domain": "pixelfed.social",
"contact": "[email protected]",
"version": "3.5.3 (compatible; Pixelfed 0.12.7)",
"instance": "pixelfed.social",
"languages": [
"en"
],
"thumbnail": "https://pixelfed.social/storage/headers/Hb2Qs2gfWofB4kEmSRArGqfr0h3DeBgrjLcwZ23r.jpg",
"description": "The original Pixelfed instance, operated by the main developer @dansup",
"known_domains": 40019,
"active_users_month": 71742,
"registrations_open": true
},
"meta": {
"timestamp": "2026-06-13T14:08:06.680Z",
"request_id": "3a8069fe-f147-4e42-b0ae-ecef945741a8"
},
"status": "ok",
"message": "Instance retrieved successfully",
"success": true
}