Zum Inhalt springen
GET /v1/collective

Collective profile + finances

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/opencollective-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/opencollective-api/v1/collective" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/opencollective-api/v1/collective", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/opencollective-api/v1/collective");
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/opencollective-api/v1/collective",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "name": "webpack",
        "slug": "webpack",
        "type": "COLLECTIVE",
        "active": true,
        "source": "Open Collective",
        "balance": 94700.25,
        "currency": "USD",
        "created_at": "2016-10-02T23:30:48.944Z",
        "description": "webpack is THE build solution for modern web applications.",
        "admins_count": 5,
        "total_raised": 1971158.35,
        "backers_count": 2827,
        "contributors_count": 2638
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:28.599Z",
        "request_id": "f627bcfe-7027-4c65-aa31-46e695d0f827"
    },
    "status": "ok",
    "message": "Collective retrieved successfully",
    "success": true
}