/v1/asset
An ASA registry entry
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/algorand-api/v1/asset" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/algorand-api/v1/asset", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/algorand-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/algorand-api/v1/asset",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"url": "https://www.centre.io/usdc",
"name": "USDC",
"round": 61998372,
"total": "18446744073709552000",
"source": "Algorand (AlgoNode)",
"creator": "2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM",
"deleted": false,
"asset_id": 31566704,
"decimals": 6,
"unit_name": "USDC"
},
"meta": {
"timestamp": "2026-06-09T20:24:49.979Z",
"request_id": "c516c6e9-91d6-4fea-8e85-ee2516d80fe0"
},
"status": "ok",
"message": "Asset retrieved successfully",
"success": true
}