Skip to content
GET /v1/meta

Service metadata and endpoint catalog

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "source": "EOS chain API via a public node (eos.greymass.com, live)",
        "service": "eos-api",
        "endpoints": {
            "GET /v1/info": "Live chain head, irreversible block and current producer.",
            "GET /v1/meta": "This document.",
            "GET /v1/token": "An account's balance of any EOS token (name=binancecleos, symbol=EOS, contract=eosio.token).",
            "GET /v1/account": "An account's balance, staked CPU/NET, RAM and resource limits (name=binancecleos).",
            "GET /v1/producers": "Block producers ranked by DPoS vote weight (limit=21)."
        },
        "description": "Live on-chain data from the EOS network (EOS), a delegated-proof-of-stake blockchain with a resource model where accounts stake EOS for CPU and network bandwidth and buy RAM for state, via a public EOS node. The account endpoint returns an account's liquid EOS balance, EOS staked for CPU and network, RAM quota and usage and live resource limits; the producers endpoint returns the block producers ranked by DPoS vote weight; the info endpoint returns the head and last irreversible block and current producer; the token endpoint returns an account's balance of any EOS token. Live, no key, nothing stored. Distinct from the Bitcoin, Stacks, Celestia, Filecoin and EVM on-chain APIs and from price feeds — this is EOS's own account state, CPU/NET/RAM resource model and DPoS block-producer set.",
        "head_block_num": 503585211,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T14:00:03.496Z",
        "request_id": "303b142a-70db-46ca-8a37-202b3657b310"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}