Naar de inhoud
GET /v1/overview

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

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/stonfi-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}