/v1/profile
A coin project profile
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/coinprofile-api/v1/profile" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinprofile-api/v1/profile", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinprofile-api/v1/profile");
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/coinprofile-api/v1/profile",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"id": "ethereum",
"name": "Ethereum",
"image": "https://coin-images.coingecko.com/coins/images/279/small/ethereum.png?1696501628",
"symbol": "ETH",
"ath_usd": 4946.05,
"atl_usd": 0.432979,
"ath_date": "2025-08-24",
"atl_date": "2015-10-20",
"categories": [
"Smart Contract Platform",
"Layer 1 (L1)",
"Ethereum Ecosystem",
"FTX Holdings",
"Multicoin Capital Portfolio",
"Proof of Stake (PoS)",
"Alameda Research Portfolio",
"Andreessen Horowitz (a16z) Portfolio",
"GMCI Layer 1 Index",
"GMCI 30 Index",
"Delphi Ventures Portfolio",
"Galaxy Digital Portfolio"
],
"description": "Ethereum is a global, open-source platform for decentralized applications. In other words, it is a decentralized blockchain platform that enables developers to build and deploy smart contracts and applications without central authority control. Unlike Bitcoin, which primarily functions as digital currency, Ethereum operates as a programmable global computer where developers can create any type of decentralized service. The platform hosts over $14 billion in DeFi applications with hundreds of thousands of active users across financial protocols, NFT marketplaces, and gaming platforms. Its transition to Proof of Stake in September 2022 reduced energy consumption by over 99%, addressing environmental concerns while strengthening network security. The network operates through thousands of inde",
"genesis_date": "2015-07-30",
"country_origin": null,
"market_cap_rank": 2,
"sentiment_up_pct": 85.48,
"hashing_algorithm": "Ethash",
"sentiment_down_pct": 14.52
},
"meta": {
"timestamp": "2026-06-10T14:04:35.812Z",
"request_id": "a782bc6d-2a76-4254-8891-616866860698"
},
"status": "ok",
"message": "Profile retrieved successfully",
"success": true
}