Skip to content
GET /v1/apy

mSOL staking APY over 30d and 7d

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/marinade-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "apy": [
            {
                "window": "30d",
                "apy_pct": 6.0234,
                "end_time": "2026-06-10T22:54:47Z",
                "end_price": 1.38638691,
                "start_time": "2026-05-11T22:49:48Z",
                "start_price": 1.37973723
            },
            {
                "window": "7d",
                "apy_pct": 6.9857,
                "end_time": "2026-06-10T22:54:47Z",
                "end_price": 1.38638691,
                "start_time": "2026-06-03T22:49:48Z",
                "start_price": 1.3845918
            }
        ],
        "note": "mSOL accrues Solana staking rewards; its SOL value rises over time (no rebase).",
        "token": "mSOL",
        "source": "Marinade"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:28.657Z",
        "request_id": "dafe41b3-121d-4215-9d1d-14fdc943b954"
    },
    "status": "ok",
    "message": "APY retrieved successfully",
    "success": true
}