/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/solananetwork-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solananetwork-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solananetwork-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/solananetwork-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "status, supply, performance and meta take no parameters. SOL amounts are whole SOL (converted from lamports); inflation and progress are percentages; TPS is transactions per second from the latest one-minute sample. A short ~30-second protective cache fronts the RPC upstream, with a public-node fallback.",
"sample": {
"epoch": 986,
"block_height": 404125922
},
"source": "Public Solana JSON-RPC (api.mainnet-beta.solana.com with public-node fallback), keyless, live",
"service": "solananetwork-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/status": "Live network dashboard — epoch, progress, slot, TPS, health.",
"GET /v1/supply": "SOL money supply (total/circulating/non-circulating) and inflation rate.",
"GET /v1/performance": "Recent throughput samples (transactions, slots, TPS)."
},
"description": "Live Solana network performance and monetary health, straight from public Solana RPC nodes (no key). It exposes the live network dashboard (current epoch and progress, slot and block height, lifetime transactions, current TPS, slot time, health), the SOL money supply (total/circulating/non-circulating + the live inflation rate), and the recent throughput samples. The network performance / monetary cut — distinct from the Solana validators feed (which ranks validators by stake and measures decentralisation), and from the price, DeFi and on-chain-token feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T19:36:08.958Z",
"request_id": "f485eb66-5072-4f9b-9b77-10616325b3bf"
},
"status": "ok",
"message": "Meta",
"success": true
}