Get Supported Protocols#
Query all protocol platforms currently covered by DeFi investment products along with their statistics. The response includes platform name, platform ID, and the number of investment products under each platform. It can be used to display protocol filters on the frontend or for platform overview pages.
URL: GET /api/v6/defi/product/supported-platforms
Request Parameters#
No request parameters.
Request Example#
GET /api/v6/defi/product/supported-platformsResponse Parameters#
data Array Elements
| Field | Type | Explanation |
|---|---|---|
| analysisPlatformId | String | Platform ID |
| platformName | String | Platform name (e.g., "Aave V3", "Lido", "PancakeSwap V3") |
| investmentCount | Long | Number of investment products under this platform |
Response Example#
Json
{
"code": 0,
"data": [
{
"analysisPlatformId": "10",
"platformName": "Aave V3",
"investmentCount": 68
},
{
"analysisPlatformId": "20",
"platformName": "Lido",
"investmentCount": 1
},
{
"analysisPlatformId": "30",
"platformName": "PancakeSwap V3",
"investmentCount": 120
}
]
}
The actual number of platforms and investment products depends on what is currently live.
Table of contents