Skip to main content
GET
/
transfer
/
chains
List supported chains
curl --request GET \
  --url https://api.zet.money/v1/transfer/chains \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "chain": "base",
      "chainId": 8453,
      "name": "Base",
      "type": "primary",
      "explorerUrl": "https://basescan.org",
      "tokens": [
        {
          "symbol": "USDC",
          "name": "USD Coin",
          "contractAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
          "decimals": 6,
          "chain": "base",
          "logoUrl": "https://assets.zet.money/tokens/usdc.png"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Zet API key. Contact zetdotmoney@gmail.com to obtain your keys.

Response

Supported chains and tokens.

success
boolean
Example:

true

data
object[]