Ir al contenido
GET /v1/meta

Service metadata

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/marinade-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "source": "Marinade API (api.marinade.finance + validators-api.marinade.finance, live)",
        "service": "marinade-api",
        "endpoints": {
            "GET /v1/apy": "mSOL staking APY over 30d and 7d with price evolution.",
            "GET /v1/tvl": "Full TVL breakdown (staked, liquidity, directed, native, self, select).",
            "GET /v1/meta": "This document.",
            "GET /v1/overview": "Headline state — mSOL/SOL price, 30d/7d APY, total value locked.",
            "GET /v1/validators": "Marinade's validator set ranked by stake (limit=25)."
        },
        "apy_30d_pct": 6.0234,
        "description": "Live data from Marinade, Solana's largest liquid-staking protocol, where users stake SOL and hold mSOL (a reward-accruing token) or use Marinade Native, via its public API. The overview endpoint returns the headline state — mSOL/SOL price, 30d and 7d staking APY, and total value locked; the tvl endpoint returns the full TVL breakdown (staked SOL/USD, liquidity, directed, native, self and select stake); the apy endpoint returns the mSOL staking APY over 30d and 7d with the underlying price evolution; the validators endpoint returns Marinade's validator set ranked by stake — name, vote account, location, commission, activated stake, average APY and uptime. Live, no key, nothing stored. Distinct from Ethereum staking feeds, on-chain explorers and DEX/price APIs — this is Marinade's own Solana liquid-staking, mSOL-yield, TVL and validator layer.",
        "msol_price_sol": 1.38638691,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:29.266Z",
        "request_id": "3c752b94-ca46-4c16-9bb9-8703cf791cc1"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}