/v1/instance
Stats for a Pixelfed instance
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}