/v1/chain
One rollup latest activity metrics
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/growthepie-api/v1/chain" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/growthepie-api/v1/chain", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/growthepie-api/v1/chain");
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/growthepie-api/v1/chain",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"chain": "arbitrum",
"source": "growthepie",
"metrics": {
"daa": {
"date": "2026-06-10",
"value": 117694
},
"tvl": {
"date": "2026-06-10",
"value": 16028548871.18
},
"fdv_usd": {
"date": "2026-06-11",
"value": 774257058.06
},
"txcount": {
"date": "2026-06-10",
"value": 1525635
},
"profit_usd": {
"date": "2026-06-10",
"value": 14989.3
},
"stables_mcap": {
"date": "2026-06-10",
"value": 4874311406.11
},
"fees_paid_usd": {
"date": "2026-06-10",
"value": 15050.28
},
"rent_paid_usd": {
"date": "2026-06-10",
"value": 60.98
},
"gas_per_second": {
"date": "2026-06-10",
"value": 3.41
},
"market_cap_usd": {
"date": "2026-06-11",
"value": 484258664.89
},
"txcosts_median_usd": {
"date": "2026-06-10",
"value": 0
}
}
},
"meta": {
"timestamp": "2026-06-12T01:43:06.256Z",
"request_id": "cd01199d-528b-4340-892d-77156058893a"
},
"status": "ok",
"message": "Chain retrieved successfully",
"success": true
}