/v1/global
Global market snapshot
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/coinpaprika-api/v1/global" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinpaprika-api/v1/global", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinpaprika-api/v1/global");
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/coinpaprika-api/v1/global",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"last_updated": 1781522005,
"market_cap_usd": 2356484862085,
"volume_24h_usd": 116602877350,
"market_cap_change_24h": 2.37,
"volume_24h_change_24h": 57.12,
"cryptocurrencies_number": 13147,
"bitcoin_dominance_percent": 56.04
},
"meta": {
"timestamp": "2026-06-15T11:15:45.295Z",
"request_id": "6a39432b-fbef-4cb6-99d7-1376fb40c5c2"
},
"status": "ok",
"message": "Global market retrieved successfully",
"success": true
}