Access DeFi protocols and tokens data through Enso’s API
With Enso API, you can retrieve detailed information about DeFi protocols, tokens, and user balances.
These endpoints enable you to build data-rich applications with comprehensive DeFi protocol information.
import{ EnsoClient }from'@enso/sdk';// Initialize the client with your API keyconst enso =newEnsoClient({ apiKey:'YOUR_API_KEY'// Replace with your actual API key});// Get all supported protocolsasyncfunctiongetAllProtocols(){try{const protocols =await enso.getProtocolData();console.log('Supported protocols:', protocols);return protocols;}catch(error){console.error('Error fetching protocols:', error);throw error;}}getAllProtocols();
Access detailed information about protocols’ supported actions and standards.
This helps you understand which operations can be performed with specific protocols.
// Get all available standards (protocols and their actions)asyncfunctiongetProtocolStandards(){try{const response =awaitfetch('https://api.enso.finance/api/v1/standards',{ headers:{'Authorization':`Bearer ${enso.apiKey}`,'Content-Type':'application/json'}});const standards =await response.json();console.log('Protocol standards and actions:', standards);return standards;}catch(error){console.error('Error fetching standards:', error);throw error;}}// Get specific protocol standardasyncfunctiongetProtocolStandardBySlug(slug){try{const response =awaitfetch(`https://api.enso.finance/api/v1/standards/${slug}`,{ headers:{'Authorization':`Bearer ${enso.apiKey}`,'Content-Type':'application/json'}});const standard =await response.json();console.log(`Standard for ${slug}:`, standard);return standard;}catch(error){console.error(`Error fetching standard for ${slug}:`, error);throw error;}}getProtocolStandards();getProtocolStandardBySlug('aave-v3');
// Get protocol volume data for a specific chainasyncfunctiongetChainVolume(chainId:number){try{const response =awaitfetch(`https://api.enso.finance/api/v1/volume/${chainId}`,{ headers:{'Authorization':`Bearer ${enso.apiKey}`,'Content-Type':'application/json'}});const volumeData =await response.json();console.log(`Volume data for chain ${chainId}:`, volumeData);return volumeData;}catch(error){console.error(`Error fetching volume data for chain ${chainId}:`, error);throw error;}}// Get volume data for EthereumgetChainVolume(1);
The Token API delivers data about DeFi assets including pricing, composition, and yield metrics. Filter tokens by protocol, chain, underlying assets, APY, or TVL to discover specific DeFi opportunities.
import{ EnsoClient }from'@enso/sdk';// Initialize the client with your API keyconst enso =newEnsoClient({ apiKey:'YOUR_API_KEY'// Replace with your actual API key});// Get Aave V3 DeFi tokens on Ethereum mainnet (chainId 1) with USDT as underlyingasyncfunctiongetAaveV3UsdtTokensOnEthereum(){try{const tokenData =await enso.getTokenData({ chainId:1,// Ethereum mainnet protocolSlug:'aave-v3', type:'defi', underlyingTokens:'0xdAC17F958D2ee523a2206206994597C13D831ec7',// USDT includeMetadata:true});console.log('Aave V3 DeFi tokens with USDT as underlying on Ethereum:', tokenData.data);return tokenData.data;}catch(error){console.error('Error fetching tokens:', error);throw error;}}getAaveV3UsdtTokensOnEthereum();
Access yield and total value locked (TVL) information for DeFi protocols. This data is crucial for comparing investment opportunities across the DeFi landscape.
import{ EnsoClient }from'@enso/sdk';// Initialize the client with your API keyconst enso =newEnsoClient({ apiKey:'YOUR_API_KEY'// Replace with your actual API key});// Get tokens with APY over 5% for a specific protocolasyncfunctiongetHighYieldTokensForProtocol(protocolSlug:string, minApy:number=5){try{const tokenData =await enso.getTokenData({ chainId:1, protocolSlug: protocolSlug, type:'defi', apyFrom: minApy, includeMetadata:true});console.log(`${protocolSlug} tokens with APY > ${minApy}%:`, tokenData.data);return tokenData.data;}catch(error){console.error('Error fetching high-yield tokens:', error);throw error;}}getHighYieldTokensForProtocol('yearn');
import{ EnsoClient }from'@enso/sdk';// Initialize the client with your API keyconst enso =newEnsoClient({ apiKey:'YOUR_API_KEY'// Replace with your actual API key});// Get price data for a specific tokenasyncfunctiongetTokenPrice(chainId:number, tokenAddress:string){try{const priceData =await enso.getPriceData({ chainId, address: tokenAddress});console.log(`Price data for ${tokenAddress} on chain ${chainId}:`, priceData);return priceData;}catch(error){console.error('Error fetching token price:', error);throw error;}}// Get price for WETH on EthereumgetTokenPrice(1,'0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2');
I’ll add the token information use cases with the specified layout and examples:
The User Data endpoints show wallet balances across protocols and blockchains. Query these endpoints to retrieve a user’s complete DeFi position data for portfolio analysis and transaction planning.RetryClaude can make mistakes.
import{ EnsoClient }from'@enso/sdk';// Initialize the client with your API keyconst enso =newEnsoClient({ apiKey:'YOUR_API_KEY'// Replace with your actual API key});// Get user balances across all protocols on a specific chainasyncfunctiongetUserBalances(chainId:number, address:string){try{const balances =await enso.getBalances({ chainId, eoaAddress: address, useEoa:true// Get balances for EOA; set to false for Enso Smart Wallet});console.log(`Balances for ${address} on chain ${chainId}:`, balances);return balances;}catch(error){console.error('Error fetching user balances:', error);throw error;}}// Get user balances on EthereumgetUserBalances(1,'0xd8da6bf26964af9d7eed9e03e53415d37aa96045');