Aller au contenu
GET /v1/meta

Service metadata

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/algorandapps-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/algorandapps-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandapps-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandapps-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/algorandapps-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": {
            "recent_app": 60553466
        },
        "source": "public AlgoNode indexer (mainnet-idx.algonode.cloud), keyless",
        "service": "algorandapps-api",
        "endpoints": {
            "GET /v1/app": "One app's decoded global state and schema (app_id; omit for a recent one).",
            "GET /v1/apps": "Browse Algorand applications (limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/creator": "Every app created by an address (address; omit for a recent creator)."
        },
        "description": "Browse Algorand applications (smart contracts) live from the public AlgoNode indexer: list deployed apps with creator and creation round, read one app's decoded global state and schema, and list every app created by an address. The smart-contract layer for Algorand explorers, dApp dashboards and analytics. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:54.084Z",
        "request_id": "b139c3a8-5905-40ff-b8b9-c33006453422"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}