Skip to main content
GET
/
v1
/
supported-chains
List supported chains
curl --request GET \
  --url https://api.daya.co/v1/supported-chains
{
  "data": [
    {
      "chain": "POLYGON",
      "display_name": "Polygon",
      "icon": "https://cryptologos.cc/logos/polygon-matic-logo.svg",
      "chain_id": 137,
      "tokens": [
        {
          "symbol": "USDT",
          "display_name": "Tether USD",
          "icon": "https://cryptologos.cc/logos/tether-usdt-logo.svg",
          "decimals": 6,
          "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
          "deposit_enabled": true,
          "withdraw_enabled": true
        },
        {
          "symbol": "USDC",
          "display_name": "USD Coin",
          "icon": "https://cryptologos.cc/logos/usd-coin-usdc-logo.svg",
          "decimals": 6,
          "contract_address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
          "deposit_enabled": true,
          "withdraw_enabled": false
        }
      ]
    }
  ]
}

Overview

Returns the chains Daya currently supports for settlement, including chain metadata and token availability. Use this endpoint to power chain selectors, validate user input, or decide whether a chain supports deposits, withdrawals, or both.
This endpoint is public and does not require authentication.
Use the API response for the authoritative live matrix of deposit and withdrawal support per chain and token.
For a human-readable environment matrix, see Supported Chains.

Request Examples

curl --request GET \
  --url https://api.daya.co/v1/supported-chains

Response

data
array
List of supported chain entries.

Success Response

{
  "data": [
    {
      "chain": "POLYGON",
      "display_name": "Polygon",
      "icon": "https://cryptologos.cc/logos/polygon-matic-logo.svg",
      "chain_id": 137,
      "tokens": [
        {
          "symbol": "USDT",
          "display_name": "Tether USD",
          "icon": "https://cryptologos.cc/logos/tether-usdt-logo.svg",
          "decimals": 6,
          "contract_address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F",
          "deposit_enabled": true,
          "withdraw_enabled": true
        },
        {
          "symbol": "USDC",
          "display_name": "USD Coin",
          "icon": "https://cryptologos.cc/logos/usd-coin-usdc-logo.svg",
          "decimals": 6,
          "contract_address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
          "deposit_enabled": true,
          "withdraw_enabled": false
        }
      ]
    }
  ]
}

Next Steps

Create Onramp API

Use chain support data when configuring auto-withdraw settlement

Withdraw Merchant Balance

Send balance funds to a supported chain and token pair