Skip to content
GET /v1/currency

A coin per-chain deposit/withdraw status

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/gateio-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "name": "Tether",
        "chains": [
            {
                "chain": "ETH",
                "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "0G",
                "contract": "0x1217bfe6c773eec6cc4a38b5dc45b92292b6e189",
                "deposit_enabled": false,
                "withdraw_delayed": false,
                "withdraw_enabled": false
            },
            {
                "chain": "ALGO",
                "contract": "312769",
                "deposit_enabled": false,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "APT",
                "contract": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "ARBEVM",
                "contract": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "BSC",
                "contract": "0x55d398326f99059fF775485246999027B3197955",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "BTC",
                "contract": "aaaaa000000111111xxx00000xxx000111",
                "deposit_enabled": false,
                "withdraw_delayed": false,
                "withdraw_enabled": false
            },
            {
                "chain": "AVAX_C",
                "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "CELO",
                "contract": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "DOTSM",
                "contract": "1984",
                "deposit_enabled": true,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "EOS",
                "contract": "USDT@tethertether",
                "deposit_enabled": false,
                "withdraw_delayed": false,
                "withdraw_enabled": true
            },
            {
                "chain": "GTEVM",
                "contract": "0x4151ab5072198d0843cd2999590ef292f49d6c66",
                "deposit
…