/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}