Zum Inhalt springen
GET /v1/economics

EGLD supply, staking and price

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/multiversx-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/multiversx-api/v1/economics" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/multiversx-api/v1/economics", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/multiversx-api/v1/economics");
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/multiversx-api/v1/economics",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "MultiversX",
        "apr_pct": 8.7413,
        "price_usd": 2.91,
        "staked_egld": 14466410,
        "base_apr_pct": 10.6829,
        "topup_apr_pct": 6.3317,
        "market_cap_usd": 87627148,
        "staked_ratio_pct": 48.0413,
        "total_supply_egld": 30112422,
        "circulating_supply_egld": 30112422
    },
    "meta": {
        "timestamp": "2026-06-10T14:02:20.473Z",
        "request_id": "5a049f19-db8c-44da-979a-23584b1187a7"
    },
    "status": "ok",
    "message": "Economics retrieved successfully",
    "success": true
}