/v1/coin
Project identity & technical profile
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cryptoprojects-api/v1/coin" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoprojects-api/v1/coin", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoprojects-api/v1/coin");
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/coin",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"id": "btc-bitcoin",
"name": "Bitcoin",
"rank": 1,
"tags": [
"Segwit",
"Cryptocurrency",
"Proof Of Work",
"Payments",
"Sha256",
"Mining",
"Lightning Network",
"Layer 1 (L1)",
"FTX Holdings"
],
"type": "coin",
"is_new": false,
"source": "CoinPaprika",
"symbol": "BTC",
"is_active": true,
"team_size": 4,
"proof_type": "Proof of Work",
"started_at": "2009-01-03T00:00:00Z",
"open_source": true,
"org_structure": "Decentralized",
"hash_algorithm": "SHA256",
"hardware_wallet": true,
"development_status": "Working product"
},
"meta": {
"timestamp": "2026-06-12T01:41:34.637Z",
"request_id": "b350fd49-4ff3-4924-91e9-ad6f6323f3d8"
},
"status": "ok",
"message": "Coin profile retrieved successfully",
"success": true
}