GET
/
api
/
v2
/
destinations
curl --request GET \
  --url https://api.layerswap.io/api/v2/destinations \
  --header 'X-LS-APIKEY: <api-key>'
{
  "error": {
    "code": "<string>",
    "message": "<string>",
    "metadata": {}
  },
  "data": [
    {
      "name": "<string>",
      "display_name": "<string>",
      "logo": "<string>",
      "chain_id": "<string>",
      "node_url": "<string>",
      "type": "evm",
      "transaction_explorer_template": "<string>",
      "account_explorer_template": "<string>",
      "source_rank": 123,
      "destination_rank": 123,
      "token": {
        "symbol": "<string>",
        "display_asset": "<string>",
        "logo": "<string>",
        "contract": "<string>",
        "decimals": 123,
        "price_in_usd": 123,
        "precision": 123,
        "listing_date": "2023-11-07T05:31:56Z",
        "source_rank": 123,
        "destination_rank": 123
      },
      "metadata": {
        "listing_date": "2023-11-07T05:31:56Z",
        "evm_oracle_contract": "<string>",
        "evm_multicall_contract": "<string>",
        "zks_paymaster_contract": "<string>",
        "watchdog_contract": "<string>"
      },
      "deposit_methods": [
        "<string>"
      ],
      "tokens": [
        {
          "symbol": "<string>",
          "display_asset": "<string>",
          "logo": "<string>",
          "contract": "<string>",
          "decimals": 123,
          "price_in_usd": 123,
          "precision": 123,
          "listing_date": "2023-11-07T05:31:56Z",
          "source_rank": 123,
          "destination_rank": 123,
          "status": "<string>",
          "refuel": {
            "token": {
              "symbol": "<string>",
              "display_asset": "<string>",
              "logo": "<string>",
              "contract": "<string>",
              "decimals": 123,
              "price_in_usd": 123,
              "precision": 123,
              "listing_date": "2023-11-07T05:31:56Z",
              "source_rank": 123,
              "destination_rank": 123
            },
            "network": {
              "name": "<string>",
              "display_name": "<string>",
              "logo": "<string>",
              "chain_id": "<string>",
              "node_url": "<string>",
              "type": "evm",
              "transaction_explorer_template": "<string>",
              "account_explorer_template": "<string>",
              "source_rank": 123,
              "destination_rank": 123,
              "token": {
                "symbol": "<string>",
                "display_asset": "<string>",
                "logo": "<string>",
                "contract": "<string>",
                "decimals": 123,
                "price_in_usd": 123,
                "precision": 123,
                "listing_date": "2023-11-07T05:31:56Z",
                "source_rank": 123,
                "destination_rank": 123
              },
              "metadata": {
                "listing_date": "2023-11-07T05:31:56Z",
                "evm_oracle_contract": "<string>",
                "evm_multicall_contract": "<string>",
                "zks_paymaster_contract": "<string>",
                "watchdog_contract": "<string>"
              },
              "deposit_methods": [
                "<string>"
              ]
            },
            "amount": 123,
            "amount_in_usd": 123
          }
        }
      ]
    }
  ]
}

Authorizations

X-LS-APIKEY
string
header
required

Headers

X-LS-APIKEY
string
default:NDBxG+aon6WlbgIA2LfwmcbLU52qUL9qTnztTuTRPNSohf/VnxXpRaJlA5uLSQVqP8YGIiy/0mz+mMeZhLY4/Q

Query Parameters

source_network
string
source_token
string
include_swaps
boolean
include_unavailable
boolean
include_unmatched
boolean
network_types
enum<string>[]
Available options:
evm,
starknet,
solana,
cosmos,
starkex,
zksynclite,
ton,
paradex,
tron,
fuel

Response

200 - application/json
Success
error
object
data
object[] | null

Was this page helpful?