/v1/backers
Who funds a collective
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/opencollective-api/v1/backers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/opencollective-api/v1/backers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/opencollective-api/v1/backers");
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/backers",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"slug": "webpack",
"count": 25,
"source": "Open Collective",
"backers": [
{
"name": "Aseem Sood",
"slug": "aseem",
"type": "INDIVIDUAL",
"since": "2016-10-15T15:47:40.951Z",
"total_donations": 14
},
{
"name": "Sean Clayton",
"slug": "_seanclayton",
"type": "INDIVIDUAL",
"since": "2016-10-15T17:06:06.404Z",
"total_donations": 100
},
{
"name": "Eric Clemmons",
"slug": "ericclemmons",
"type": "INDIVIDUAL",
"since": "2016-10-15T17:49:11.894Z",
"total_donations": 150
},
{
"name": "Andrey Popp",
"slug": "andreypopp",
"type": "INDIVIDUAL",
"since": "2016-10-15T17:49:51.529Z",
"total_donations": 30
},
{
"name": "Web Desserts",
"slug": "webdesserts",
"type": "INDIVIDUAL",
"since": "2016-10-15T17:50:15.219Z",
"total_donations": 30
},
{
"name": "Joel Kemp",
"slug": "mrjoelkemp",
"type": "INDIVIDUAL",
"since": "2016-10-15T19:06:33.869Z",
"total_donations": 25
},
{
"name": "Evan Jacobs",
"slug": "quantizor",
"type": "INDIVIDUAL",
"since": "2016-10-15T19:35:51.162Z",
"total_donations": 160
},
{
"name": "henry",
"slug": "left_pad",
"type": "INDIVIDUAL",
"since": "2016-10-15T21:02:15.324Z",
"total_donations": 11.21
},
{
"name": "Sean Larkin",
"slug": "seanlarkin",
"type": "INDIVIDUAL",
"since": "2016-10-15T21:31:18.066Z",
"total_donations": 80
},
{
"name": "Luke Page",
"slug": "lukepage",
"type": "INDIVIDUAL",
"since": "2016-10-16T06:29:11.578Z",
"total_donations": 8
},
{
"name": "Maarten Tibau",
"slug": "maarten",
"type": "INDIVIDUAL",
"since": "2016-10-16T08:23:23.965Z",
"total_donations": 10
},
{
"name": "Matt lewis",
"slug": "mattlewis92",
"type": "INDIVIDUAL",
"since": "2016-10-16T10:15:08.634Z",
"total_donations": 420
},
{
"name": "Eduardo Rabelo",
…