Aller au contenu
GET /v1/meta

Service metadata & live sample

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/algorandapp-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}