Skip to content
GET /v1/overview

STON.fi DEX TVL plus lifetime volume/wallets/trades

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/stonfi-api

It works. Grab an API key and use it in your project.

Get an API key

Code 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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}