Get Available Route Options

Request all available chains, bridges, exchanges, and tokens/coins.

If you want to get an overview of which options (chains, bridges, DEXs, and tokens) are available at this moment, you can use getTools, getChains, and getTokens:

async function getTools(
  request?: ToolsRequest,
  options?: RequestOptions
): Promise<ToolsResponse>

async function getChains(): Promise<Chain[]>

async function getTokens(
  request?: TokensRequest,
  options?: RequestOptions
): Promise<TokensResponse>

The request and response types can be found in our types package and are available inside the SDK.

For information on how the result of these endpoints looks like, have a look at the API documentation:

Last updated