/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/algorandasa-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandasa-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandasa-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/algorandasa-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": {
"name": "USDC",
"default_asset": 31566704
},
"source": "public Algonode indexer (mainnet-idx.algonode.cloud), keyless",
"service": "algorandasa-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "One ASA in full: supply, decimals, URL, role addresses (id; omit for USDC).",
"GET /v1/assets": "Browse the ASA space, paginated (limit, next).",
"GET /v1/search": "Search ASAs by name (name, limit)."
},
"description": "Read Algorand Standard Assets (ASAs) — Algorand's native token standard — live from the public Algonode indexer: browse the ASA space paginated, look up a single ASA in full (name, unit, supply, decimals, URL and the manager/reserve/freeze/clawback role addresses) and search ASAs by name. The token layer for Algorand wallets, DEXs and token explorers. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:27.941Z",
"request_id": "28b433c4-899e-4fd9-af78-019326fb40dc"
},
"status": "ok",
"message": "Meta",
"success": true
}