Skip to content
GET /v1/meta

Service metadata

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

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

Get an API key

Code snippets

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_..."}
)

Example response

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

{
    "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
}