/v1/meta
Service metadata and endpoint catalog
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}