/v1/asset
One ASA in full: supply, decimals, URL, role addresses
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/asset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorandasa-api/v1/asset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorandasa-api/v1/asset");
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/asset",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"id": 31566704,
"url": "https://www.centre.io/usdc",
"name": "USDC",
"note": "A single Algorand Standard Asset in full: its name, unit, total supply (raw and decimal-adjusted), project URL and the role addresses — manager (can reconfigure), reserve, freeze and clawback — that control it. Omit id for USDC.",
"freeze": "3ERES6JFBIJ7ZPNVQJNH2LETCBQWUPGTO4ROA6VFUR25WFSYKGX3WBO5GE",
"source": "Algonode indexer",
"creator": "2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM",
"deleted": false,
"manager": "37XL3M57AXBUJARWMT5R7M35OERXMH3Q22JMMEFLBYNDXXADGFN625HAL4",
"reserve": "2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM",
"clawback": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAY5HFKQ",
"decimals": 6,
"unit_name": "USDC",
"total_supply": 18446744073709.55,
"default_frozen": false,
"created_at_round": 8874561,
"total_base_units": "18446744073709552000"
},
"meta": {
"timestamp": "2026-06-14T17:04:27.475Z",
"request_id": "0e716742-e75a-43fd-af7d-014affec3c25"
},
"status": "ok",
"message": "Asset retrieved successfully",
"success": true
}