Naar de inhoud
GET /v1/instance

Stats for a Pixelfed instance

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/pixelfed-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "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
}