/v1/tokens
Supported-token registry — address, decimals, synthetic flag
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/gmx-api/v1/tokens" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gmx-api/v1/tokens", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gmx-api/v1/tokens");
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/gmx-api/v1/tokens",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "arbitrum",
"count": 127,
"source": "GMX",
"tokens": [
{
"symbol": "0G",
"address": "0x95c317066CF214b2E6588B2685D949384504F51e",
"decimals": 18,
"synthetic": true
},
{
"symbol": "AAVE",
"address": "0xba5DdD1f9d7F570dc94a51479a000E3BCE967196",
"decimals": 18,
"synthetic": null
},
{
"symbol": "ADA",
"address": "0x53186c8419BEB83fE4Da74F7875041a1287337ED",
"decimals": 6,
"synthetic": true
},
{
"symbol": "AERO",
"address": "0xEcc5eb985Ddbb8335b175b0A2A1144E4c978F1f6",
"decimals": 18,
"synthetic": true
},
{
"symbol": "AI16Z",
"address": "0xBb69bd9dc152C2c0F083507641a46193d2B61EBb",
"decimals": 9,
"synthetic": true
},
{
"symbol": "AIXBT",
"address": "0xcA543Cb8bCC76e4E0A034F56EB40a1029bDFd70E",
"decimals": 18,
"synthetic": true
},
{
"symbol": "ALGO",
"address": "0x72Cd3a21aA7A898028d9501868Fbe6dED0020434",
"decimals": 6,
"synthetic": true
},
{
"symbol": "ANIME",
"address": "0x37a645648dF29205C6261289983FB04ECD70b4B3",
"decimals": 18,
"synthetic": null
},
{
"symbol": "APE",
"address": "0x7f9FBf9bDd3F4105C478b996B648FE6e828a1e98",
"decimals": 18,
"synthetic": null
},
{
"symbol": "APE_deprecated",
"address": "0x74885b4D524d497261259B38900f54e6dbAd2210",
"decimals": 18,
"synthetic": null
},
{
"symbol": "APT",
"address": "0x3f8f0dCE4dCE4d0D1d0871941e79CDA82cA50d0B",
"decimals": 8,
"synthetic": true
},
{
"symbol": "AR",
"address": "0x4b9a2b862E1a30e6E844c991D31Dc6387c9d65D5",
"decimals": 12,
"synthetic": true
},
{
"symbol": "ARB",
"address": "0x912CE59144191C1204E64559FE8253a0e49E6548",
"decimals": 18,
"synthetic": null
},
{
"symbol": "ASTER",
"address": "0x2aAB60E62f05d17e58dEc982870bfAdc7F4e7ADF",
"decimals": 18,
"synthetic": true
},
{
"symbol": "ATOM",
…