/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/mina-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mina-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mina-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/mina-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": {
"sample": {
"accounts": 286673,
"blockchain_length": 532834
},
"source": "public Mina GraphQL node (api.minascan.io), keyless",
"service": "mina-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/block": "The best (tip) block: state hash, height, producer, total MINA supply.",
"GET /v1/status": "Live network status: blockchain length, sync, chain id, epoch/slot, accounts.",
"GET /v1/account": "An account by public key: MINA balance, nonce, delegate (publicKey; omit for the block producer)."
},
"description": "Read the Mina Protocol blockchain live from a public Mina GraphQL node: the live network status (blockchain length, sync status, chain id, epoch/slot, account count), the best (tip) block (state hash, height, producer, total MINA supply) and any account by public key (MINA balance, nonce, staking delegate). The on-chain layer for Mina wallets, explorers and stakers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:32.495Z",
"request_id": "19c32d78-316a-42e6-80b2-e41ce760edec"
},
"status": "ok",
"message": "Meta",
"success": true
}