Skip to content
GET /v1/token

ERC-20 token detail by contract

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/celo-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "token": {
            "icon": "https://assets.coingecko.com/coins/images/13161/small/icon-celo-dollar-color-1000-circle-cropped.png?1696512945",
            "name": "Celo Dollar",
            "type": "ERC-20",
            "symbol": "CUSD",
            "holders": null,
            "decimals": 18,
            "total_supply": "16182079396866361916129421",
            "exchange_rate_usd": 1,
            "circulating_market_cap": "16162104.48893219"
        }
    },
    "meta": {
        "timestamp": "2026-06-08T01:18:36.877Z",
        "request_id": "47cf29c6-a9a4-44a5-ab57-c99eb167f933"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}