Zum Inhalt springen
GET /v1/overview

Headline state — mSOL price, APY, TVL

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "chain": "solana",
        "source": "Marinade",
        "protocol": "Marinade",
        "total_sol": 6630511.8246,
        "total_usd": 416172363.07,
        "apy_7d_pct": 6.9857,
        "staked_sol": 2566867.0513,
        "staked_usd": 161112619.16,
        "apy_30d_pct": 6.0234,
        "msol_price_sol": 1.38638691
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:27.773Z",
        "request_id": "b896482f-958c-4940-aefd-d348308f6257"
    },
    "status": "ok",
    "message": "Overview retrieved successfully",
    "success": true
}