List supported tokens
API Reference
List Tokens
Retrieve supported tokens and validate transfer routes between chains.
GET
List supported tokens
Returns tokens supported by the Value Transfer API. Use query parameters to filter for tokens transferrable from a specific source chain and token.Documentation Index
Fetch the complete documentation index at: https://docs.layerzero.network/llms.txt
Use this file to discover all available pages before exploring further.
Reference
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
transferrableFromChainKey | string | No | Source chain key (for example, base, ethereum). Must be combined with transferrableFromTokenAddress. |
transferrableFromTokenAddress | string | No | Source token address. Must be combined with transferrableFromChainKey. |
pagination[nextToken] | string | No | Pagination cursor from previous response |
Response
Returns atokens array and a pagination object.
Attributes
| Attribute | Type | Description |
|---|---|---|
isSupported | boolean | Whether the token is available for transfers |
chainKey | string | Chain identifier (for example, ethereum, base) |
address | string | Token contract address |
decimals | number | Token decimal places |
symbol | string | Token symbol (for example, ETH, USDC) |
name | string | Full token name |
logoUrl | string | Optional token logo URL |
price | object | Optional price information |
price.usd | number | Current price in USD |
Code examples
List all tokens
Returns the complete token catalog across all chains.- cURL
- TypeScript
- Python
List transferrable destinations
Returns only tokens you can transfer to from a specific source.- cURL
- TypeScript
- Python
Response
Validate transfer routes
Check if a transfer route exists before requesting quotes:Related endpoints
Query Parameters
Filter tokens by source chain (for example, 'ethereum', 'arbitrum')
Example:
"ethereum"
Filter by source token address
Example:
"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"