/v1/meta
Spec
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/algorand-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorand-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorand-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/algorand-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "AlgoNode public APIs — indexer + algod (live)",
"service": "algorand-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "An ASA's registry entry (id=31566704 for USDC).",
"GET /v1/account": "An address's state + ASA holdings (address=I3345FUQQ2GRBHFZQPLYQQX5HJMMRZMABCHRLWV6RCJYC6OO4MOLEUBEGU).",
"GET /v1/network": "Live Algorand chain state: last round, round time, ALGO supply.",
"GET /v1/transactions": "An address's recent transactions (address=, limit)."
},
"last_round": 61998372,
"description": "Live on-chain data from the Algorand blockchain (ALGO) via the public AlgoNode indexer and algod APIs: any address's state (ALGO balance, online/offline staking status, rewards, the ASAs it holds, app counts); the on-chain registry entry for any Algorand Standard Asset (name, unit, decimals, total supply, creator, URL); the account's recent transactions (type, counterparty, amount, fee, round, time); and the live network state (last round, round time, total and online ALGO supply). Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, TRON, Aptos, EVM and Solana on-chain APIs and from price feeds — this is Algorand account state, ASA holdings, asset registry, transactions and ledger health.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T20:24:50.562Z",
"request_id": "ea5d8da4-7986-47db-ad7e-4606c35d0343"
},
"status": "ok",
"message": "Meta",
"success": true
}