Vai al contenuto
GET /v1/token

NEP-141 token metadata + total supply

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "icon": "(data uri omitted)",
        "name": "Tether USD",
        "note": "NEP-141 fungible-token metadata (ft_metadata) and total supply (ft_total_supply). total_supply is the raw integer; divide by decimals.",
        "spec": "ft-1.0.0",
        "source": "public NEAR JSON-RPC (call_function)",
        "symbol": "USDt",
        "contract": "usdt.tether-token.near",
        "decimals": 6,
        "reference": null,
        "total_supply": "525944120793709"
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:00.058Z",
        "request_id": "5deaede7-5594-4bac-8521-508828b4c3c1"
    },
    "status": "ok",
    "message": "Token retrieved successfully",
    "success": true
}