/v1/team
The people behind the project
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}