Fetches details of a specific token given its unique identifier.
Every token in your network of wallets has a UUID associated with it, regardless of whether it's already recognized or was added as a monitored token.
Represents the input parameters for retrieving a token.
The ID of the token to retrieve.
1const response = await client.getToken({
2 id: 'uuid-token-id',
3})
4console.log(response.data?.token)