Insight API ENS Support

Insight API ENS Support

Insight API now supports Ethereum Name Service (ENS) names in address fields. You can use ENS names instead of raw Ethereum addresses when querying API endpoints.

Try it out on our playground

Vitalik's Ethereum ERC-20 tokens

Or use it directly from code

const getVitalikTokensOnEth = async () => {
 try {
   const response = await fetch('https://1.insight.thirdweb.com/v1/tokens/erc20/vitalik.eth', {
      headers: {
        "x-client-id": clientId,
      },
    });
   const balances = await response.json();
   return balances
 } catch (error) {
   console.error('Error:', error);
 }
};


πŸ“– Learn more about Insight - it’s open source and ready to power your applications!