For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Available Tokens

Fetch all available tokens across supported chains.

Fetch all available tokens from Zert's backend across supported chains.

get

Retrieves a list of all available tokens.

Parameters

  • params (TokensQueryParams, optional)

    • chainRef (string)

    • q (string)

    • limit (number)

    • cursor (string)

    • supportedOnly (string | boolean)

    • requireLogo (string | boolean)

    • sort (string)

    • debug (string | boolean)

Returns

A Promise that resolves to TokensResponse.

  • data.tokens (Token[]): List of tokens.

  • data.nextCursor (string, optional): Cursor for next page.

  • meta.requestId (string): Request identifier.

  • meta.timestamp (string): Response timestamp.

Token fields include: chain, symbol, name, address (optional), decimals, mint (optional), and logoUrl (optional).

Last updated