Insights (Basic)
The API endpoints in this section are available to users across all of our free and paid plans:
List Vaults (
GET /v1/vaults
): Fetches a list of vaults filtered by tags, tokens, network, and TVL parameters.Retrieve Tags (
GET /v1/tags
): Obtains a list of all tags present in the database, aiding in the categorization and search of vaults.Retrieve Tokens (
GET /v1/tokens
): Retrieves a comprehensive list of tokens, including details like name, symbol, and network, available in the database.Retrieve Networks (
GET /v1/networks
): Gathers a list of all blockchain networks represented in the database, complete with their names and chain IDs.Detailed Vaults Data (
GET /v1/detailed/vaults
): Provides an in-depth look at vaults with detailed information, including financial statistics and operational details, with robust filtering and pagination capabilities.
Vault Information (
GET /v1/vaults/{network}/{vaultAddress}
): Provides comprehensive details about a specific vault, including its address, network, TVL, and other operational data.Vault APY (
GET /v1/vaults/{network}/{vaultAddress}/apy
): Retrieves the current APY data for a vault over various intervals, such as 1 day, 7 days, or 30 days.Vault Historical TVL (
GET /v1/vaults/{network}/{vaultAddress}/historical-tvl/{timestamp}
): Offers historical TVL information for a vault based on the closest block time to a given timestamp.Vault Historical APY (
GET /v1/vaults/{network}/{vaultAddress}/historical-apy/{timestamp}
): Fetches APY data from the past for a specific vault, corresponding to the closest timestamp available.
Last updated