Supported Blockchains/Bridges/DEXs

Full list of supported blockchain networks

1. Supported Blockchains

Get Supported Chains

get
Responses
application/json
any ofoptional
get
GET /v1/supportedChains HTTP/1.1
Host: aggregator-api.xy.finance
Accept: */*
200

Successful Response

{
  "success": true,
  "supportedChains": [
    {
      "chainId": 1,
      "name": "text"
    }
  ]
}

2. Supported Bridges Providers

Get Supported Bridge Providers

get
Responses
application/json
any ofoptional
get
GET /v1/supportedBridgeProviders HTTP/1.1
Host: aggregator-api.xy.finance
Accept: */*
200

Successful Response

{
  "success": true,
  "supportedBridgeProviders": [
    {
      "name": "text",
      "logoUrl": "text",
      "supportedChains": [
        {
          "chainId": 1,
          "name": "text",
          "supportedTokens": [
            {
              "symbol": "text",
              "address": "text",
              "decimals": 1
            }
          ]
        }
      ]
    }
  ]
}

3. Supported Swap Providers (DEXs)

Get Supported Swap Providers

get
Responses
application/json
any ofoptional
get
GET /v1/supportedSwapProviders HTTP/1.1
Host: aggregator-api.xy.finance
Accept: */*
200

Successful Response

{
  "success": true,
  "supportedDexAggregators": [
    {
      "name": "text",
      "logoUrl": "text",
      "supportedChains": [
        {
          "chainId": 1,
          "name": "text",
          "supportedDexes": [
            "text"
          ]
        }
      ]
    }
  ]
}
  • 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

Was this helpful?