/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}