Zum Inhalt springen
GET /v1/meta

Service metadata & live sample

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/algorandapp-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}