Zum Inhalt springen
GET /v1/token

ERC-20 token detail

Live testen

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

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

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

API-Key holen

Code-Snippets

curl "https://api.oanor.com/flow-api/v1/token" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/flow-api/v1/token", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/flow-api/v1/token");
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/flow-api/v1/token",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "token": {
            "icon": "https://raw.githubusercontent.com/onflow/assets/refs/heads/main/tokens/registry/0x99aF3EeA856556646C98c8B9b2548Fe815240750/logo.png",
            "name": "PYUSD0",
            "type": "ERC-20",
            "symbol": "PYUSD0",
            "address": "0x99aF3EeA856556646C98c8B9b2548Fe815240750",
            "holders": 60331,
            "decimals": 6,
            "total_supply": "34657278841329",
            "exchange_rate_usd": null,
            "circulating_market_cap": null
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:42.293Z",
        "request_id": "49a9ce36-af03-40be-a4ab-87b6abad147e"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}