Naar de inhoud
GET /v1/team

The people behind the project

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "id": "eth-ethereum",
        "name": "Ethereum",
        "team": [
            {
                "id": "vitalik-buterin",
                "name": "Vitalik Buterin",
                "position": "Author"
            },
            {
                "id": "jeffrey-wylcke",
                "name": "Jeffrey Wylcke",
                "position": "Go-Ethereum Lead"
            },
            {
                "id": "virgil-griffith",
                "name": "Virgil Griffith",
                "position": "Researcher"
            },
            {
                "id": "alexandre-van-de-sande",
                "name": "Alexandre Van de Sande",
                "position": "UX Design"
            },
            {
                "id": "alex-leverington",
                "name": "Alex Leverington",
                "position": "Core Developer"
            },
            {
                "id": "aya-miyaguchi",
                "name": "Aya Miyaguchi",
                "position": "Executive Director"
            },
            {
                "id": "vlad-zamfir",
                "name": "Vlad Zamfir",
                "position": "Researcher"
            },
            {
                "id": "zach-lebeau",
                "name": "Zach Lebeau",
                "position": "Conceptualist"
            },
            {
                "id": "justin-drake",
                "name": "Justin Drake",
                "position": "Researcher"
            },
            {
                "id": "yoichi-hirai",
                "name": "Yoichi Hirai",
                "position": "Formal Verification Engineer"
            },
            {
                "id": "iuri-matias",
                "name": "Iuri Matias",
                "position": "Developer"
            },
            {
                "id": "karl-floersch",
                "name": "Karl Floersch",
                "position": "Researcher"
            }
        ],
        "count": 12,
        "source": "CoinPaprika",
        "symbol": "ETH"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:34.871Z",
        "request_id": "94099fa6-78f4-4c1e-bff1-6271b7a49830"
    },
    "status": "ok",
    "message": "Team retrieved successfully",
    "success": true
}