Get Limits for Bridge Order

Our API's Limits endpoint provides actual bridging limits for specific bridge routes. These limits are dynamic and could change over time (especially for swaps routes)

Requests calculation potential fees for bridging operation from source chain to destination chain for selected assets and amount.

GET /api/bridge/limits

Query Parameters

Name
Type
Description

source_chain*

string

Name of source chain.

destination_chain*

string

Name of destination chain.

asset_from*

string

Name of the asset in source network.

asset_to*

string

Name of the asset in destination network

​{
  "message": "string",
  "data": {
    "min_send": 0, // Minimal value of source asset to send
    "max_send": 0 // Maximum value of source asset to send
  }
}

Last updated