/v1/meta
Service metadata & live sample
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/algorandapp-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandapp-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandapp-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/algorandapp-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": {
"app": 1002541853,
"global_state": 3
},
"source": "public Algonode indexer (mainnet-idx.algonode.cloud), keyless",
"service": "algorandapp-api",
"endpoints": {
"GET /v1/app": "One application: creator, decoded global state, programs, schemas (id=1002541853).",
"GET /v1/apps": "Browse the application space, paginated (limit, next).",
"GET /v1/meta": "This document.",
"GET /v1/created": "Applications created by an account (address=...)."
},
"description": "Inspect Algorand stateful smart contracts (applications) live from the public Algonode indexer: look up any application by id for its creator, decoded global state, program sizes and schemas; list the applications an account has created; or browse the application space. The smart-contract layer for Algorand wallets, explorers and auditors. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:03:51.730Z",
"request_id": "2cb8cc82-9d3c-43e5-a523-17067b491be1"
},
"status": "ok",
"message": "Meta",
"success": true
}