/v1/token
NEP-141 token metadata + total supply
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}