/v1/overview
STON.fi DEX TVL plus lifetime volume/wallets/trades
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/stonfi-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/stonfi-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/stonfi-api/v1/overview");
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/stonfi-api/v1/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "tvl is current; cumulative_volume_usd, unique_wallets and total_trades are lifetime totals since inception.",
"chain": "ton",
"since": "2022-11-18 14:19:42",
"until": "2026-06-10 22:56:43",
"source": "STON.fi",
"tvl_usd": 28667606.98,
"protocol": "STON.fi",
"total_trades": 34969996,
"unique_wallets": 5786757,
"cumulative_volume_usd": 3907696449.85
},
"meta": {
"timestamp": "2026-06-10T22:56:48.865Z",
"request_id": "78a431e9-f716-45fc-863f-85bfb1924225"
},
"status": "ok",
"message": "Overview retrieved successfully",
"success": true
}