YAD
SiteDocs
SiteDocs
    • Introduction
    • Blockchains
      GET
    • List tokens
      POST
    • Liquidity sources
      GET
    • Gas prices
      GET
    • Get price for pair
      GET
    • Transaction allowance
      GET
    • Transaction approve
      GET
    • Get quote for pair
      GET
    • Get Bridge Price
      GET
    • Get Bridge Quote
      GET
    • Get Bridge Tokens
      POST

      Get Bridge Tokens

      Developing
      POST
      https://api.entrswap.io/v2/bridge/tokens
      Fetches a list of bridge tokens with their routes and destinations.

      Request

      Authorization
      Add parameter in header
      X-API-Key
      Example:
      X-API-Key: ********************
      Body Params application/json

      Example
      {
          
      }

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://api.entrswap.io/v2/bridge/tokens' \
      --header 'X-API-Key: <api-key>' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          
      }'

      Responses

      🟢200Success
      application/json
      Body

      Example
      {
          "chainId_key": {
              "tokenAddress_key": {
                  "address": "string",
                  "chainId": 0,
                  "decimals": 0,
                  "destinations": {
                      "destinationChainId": {},
                      "addresses": [
                          "string"
                      ]
                  },
                  "is_active": true,
                  "logoURI": "string",
                  "name": "string",
                  "priority": 0,
                  "symbol": "string"
              }
          }
      }
      Modified at 2025-02-26 10:45:36
      Previous
      Get Bridge Quote