Naar de inhoud
GET /v1/overview

Headline state — mSOL price, APY, TVL

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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