Supported Blockchains/Bridges/DEXs

Full list of supported blockchain networks

1. Supported Blockchains

Get Supported Chains

GEThttps://aggregator-api.xy.finance/v1/supportedChains
Response

Successful Response

Body
Response Get Supported Chains Supportedchains Get
Request
const response = await fetch('https://aggregator-api.xy.finance/v1/supportedChains', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": true,
  "supportedChains": [
    {
      "chainId": 0,
      "name": "text"
    }
  ]
}

2. Supported Bridges Providers

Get Supported Bridge Providers

GEThttps://aggregator-api.xy.finance/v1/supportedBridgeProviders
Response

Successful Response

Body
Response Get Supported Bridge Providers Supportedbridgeproviders Get
Request
const response = await fetch('https://aggregator-api.xy.finance/v1/supportedBridgeProviders', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": true,
  "supportedBridgeProviders": [
    {
      "name": "yBridge",
      "logoUrl": "https://storage.googleapis.com/xy-finance-images/XY_icon.png",
      "supportedChains": [
        {
          "chainId": 1,
          "name": "ETHEREUM",
          "supportedTokens": [
            {
              "symbol": "USDT",
              "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
              "decimals": 6
            }
          ]
        }
      ]
    }
  ]
}

3. Supported Swap Providers (DEXs)

Get Supported Swap Providers

GEThttps://aggregator-api.xy.finance/v1/supportedSwapProviders
Response

Successful Response

Body
Response Get Supported Swap Providers Supportedswapproviders Get
Request
const response = await fetch('https://aggregator-api.xy.finance/v1/supportedSwapProviders', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "success": true,
  "supportedDexAggregators": [
    {
      "name": "XY DexAggregator",
      "logoUrl": "https://storage.googleapis.com/xy-finance-images/XY_icon.png",
      "supportedChains": [
        {
          "chainId": 1,
          "name": "ETHEREUM",
          "supportedDexes": [
            "XSwap"
          ]
        }
      ]
    }
  ]
}
  • XY Finance has currently integrated several DEX Aggregators. The supported dexes field may vary with updates to the DEX Aggregator. If the field is empty, it indicates that the DEX Aggregator has not provided this information.

Here you can find our full API reference

Last updated