Zum Inhalt springen
GET /v1/asset

An ASA registry entry

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/algorand-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}