Ir al contenido
GET /v1/overview

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

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/stonfi-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}