Get DeFi Pool Info
1. Overview & Typical Use
Returns the list of all tracked stablecoin DeFi pools with their TVL and token composition details.
- Typical use: enumerate all tracked pools; display a pool directory with TVL and token pairs.
- When not to use: for a specific pool’s metrics or historical TVL use “Get DeFi Pool Overview” or “Get DeFi Pool TVL Change”.
2. Endpoint & Authentication
GET /api/stableCoin/pool/info
For Base URL and authentication, see Common Network & Authentication.
3. Request
Fields
No request parameters.
4. Response
Fields
The response is a JSON array directly (not wrapped in an object).
Array element (pool)
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
poolAddress | string | Required | Pool contract address | — |
poolName | string | Required | Pool name | — |
tvl | string | Required | Current total value locked in USD | USD |
tokens | array | Required | Token list for this pool | — |
tokens[] element
| Field | Type | Required | Description | Unit/Precision |
|---|---|---|---|---|
tokenId | string | Required | Token contract address | — |
tokenAbbr | string | Required | Token abbreviation | — |
tokenName | string | Required | Token name | — |
tokenDecimal | integer | Required | Token decimal precision | — |
tokenType | string | Required | Token standard (e.g., trc20) | — |
vip | boolean | Required | Whether the token is VIP-tagged | — |
issuerAddr | string | Required | Token issuer address | — |
tokenLogo | string | Required | Token logo URL | — |
tokenLevel | string | Required | Token trust level | — |
tokenCanShow | integer | Required | Display flag: 1 = show | — |
5. Errors
For HTTP status codes, see Common Errors. Key points for this endpoint:
- General error handling rules apply; no special error scenarios.
Last updated on: