/v1/team
The people behind the project
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}