/v1/performance
Multi-period performance + ATH/ATL
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/cryptohistory-api/v1/performance" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptohistory-api/v1/performance", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptohistory-api/v1/performance");
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/cryptohistory-api/v1/performance",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"vs": "usd",
"ath": 126080,
"atl": 67.81,
"coin": "bitcoin",
"name": "Bitcoin",
"price": 61397,
"source": "CoinGecko",
"symbol": "btc",
"low_24h": 60882,
"ath_date": "2025-10-06T18:57:42.558Z",
"atl_date": "2013-07-06T00:00:00.000Z",
"high_24h": 62624,
"change_pct": {
"d7": -5.3676,
"h1": 0.2722,
"y1": -44.1439,
"d14": -17.3908,
"d30": -24.938,
"h24": -0.4087,
"d200": -27.2482
},
"market_cap": 1230488358299,
"volume_24h": 27675393556,
"ath_change_pct": -51.303,
"atl_change_pct": 90444.2801,
"market_cap_rank": 1
},
"meta": {
"timestamp": "2026-06-10T22:56:13.349Z",
"request_id": "db6c5c89-dbd1-490e-93e8-f6b0b330efd0"
},
"status": "ok",
"message": "Performance retrieved successfully",
"success": true
}