Ir al contenido
GET /v1/backers

Who funds a collective

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/opencollective-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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",
         
…