Vai al contenuto
GET /v1/token

ERC-20 token detail

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/mchverse-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "token": {
            "icon": null,
            "name": "MyCryptoHeros:GUM",
            "type": "ERC-20",
            "symbol": "GUM",
            "address": "0xa9155F8832203AB32C4Cac6597E5E61b30d34741",
            "holders": 30180,
            "decimals": 18,
            "total_supply": "21385607000000000000000000",
            "exchange_rate_usd": null,
            "circulating_market_cap": null
        }
    },
    "meta": {
        "timestamp": "2026-06-08T18:25:33.757Z",
        "request_id": "7b7b2bf2-84f8-4120-a30e-e3a014a1e34c"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}