Zum Inhalt springen
GET /v1/team

The people behind the project

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}