/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}