/v1/token
Full smart-token detail with features
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/coreum-api/v1/token" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coreum-api/v1/token", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coreum-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/coreum-api/v1/token",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"chain": "coreum-mainnet-1",
"token": {
"uri": "https://www.instagram.com/magnetictoneofpurpose/",
"admin": "core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
"denom": "aloha22-core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
"issuer": "core1hxmw2fe3unnsw8uq522l9t2cfwaqgddne8nlqq",
"symbol": "Hoailona",
"subunit": "aloha22",
"version": 1,
"features": [
"burning",
"ibc",
"dex_unified_ref_amount_change"
],
"burn_rate": 0.001,
"precision": 8,
"description": "Ho'Ailona is a Native Hawai'ian (kama'aina) Owned Physical + Digital Specialty Boutique Featuring The Most Exclusive Limited Edition Hawai'ian Apparel and Art Collections.",
"globally_frozen": false,
"send_commission_rate": 0.001
}
},
"meta": {
"timestamp": "2026-06-15T02:10:18.447Z",
"request_id": "6abe40ee-41c6-486b-8475-3375ed22149e"
},
"status": "ok",
"message": "Smart token retrieved successfully",
"success": true
}