Skip to Content
APIDeep AnalysisGet DeFi Pool Overview

Get DeFi Pool Overview

1. Overview & Typical Use

Returns the current overview metrics for a specific DeFi pool: token composition with liquidity, 24-hour volume, TVL, and a pool URL. Only pools on the platform whitelist are supported; invalid pools return an empty object ({}).

  • Typical use: display a pool summary card with current TVL, volume, and token ratios.
  • When not to use: to get historical TVL trends use “Get DeFi Pool TVL Change”; to list all pools use “Get DeFi Pool Info”.

2. Endpoint & Authentication

GET /api/stableCoin/pool/overview

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
poolstringYesPool contract address (must be a platform whitelist pool)

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
tokensarrayRequiredToken list with current liquidity
volume24HoursstringRequired24-hour trading volume in USDUSD
tvlstringRequiredCurrent total value locked in USDUSD
poolUrlstringRequiredPool page URL

tokens[] element

FieldTypeRequiredDescriptionUnit/Precision
tokenIdstringRequiredToken contract address
tokenAbbrstringRequiredToken abbreviation
tokenNamestringRequiredToken name
tokenDecimalintegerRequiredToken decimal precision
tokenTypestringRequiredToken standard (e.g., trc20)
vipbooleanRequiredWhether the token is VIP-tagged
issuerAddrstringOptionalToken issuer address
tokenLogostringOptionalToken logo URL
tokenLevelstringOptionalToken trust level
tokenCanShowintegerOptionalDisplay flag: 1 = show
liquiditystringRequiredCurrent token liquidity (minimum unit)minimum unit (divide by 10^tokenDecimal)
liquidityPercentstringRequiredToken’s share of pool TVLdecimal

5. Errors

For HTTP status codes, see Common Errors. Key points for this endpoint:

  • Invalid or non-whitelisted pool address returns an empty object {}.
Last updated on: