描述:当你输入搜索条件后,该 API 将提供指定的投资品详情。
GET https://www.okx.com/api/v5/defi/explore/product/detail
参数名称 | 相关描述 | 参数类型 | 必传 | 数据类型 |
---|---|---|---|---|
investmentId | 投资品 ID | 请求参数 | 是 | String |
investmentCategory | 认购类型:(例如,0:默认类型;1:BRC-20) | 请求参数 | 否 | String |
参数名称 | 相关描述 | Data type |
---|---|---|
investmentId | 投资品 ID | String |
investmentName | 投资品名称 | String |
chainId | 区块链 ID | String |
rate | 收益率 | String |
investType | 投资品类型:1. 存币;2. 流动性池;3. 挖矿;4. 机枪池;5. 质押 | String |
platformName | 平台名称 | String |
platformId | 平台 ID | String |
analysisPlatformId | 领取奖励金用平台 ID | String |
rateType | 收益率计算类型:0:APY;1:APR | String |
tvl | TVL | String |
underlyingToken | 质押代币 | Struct |
>isBaseToken | 质押代币是否为主网基准代币 | Boolean |
>tokenContract | 质押代币的智能合约地址 | String |
>tokenSymbol | 质押代币标识 | String |
isInvestable | 是否可投资 | String |
utilizationRate | 使用的汇率 | String |
earnedToken | 已获代币 | Struct |
>isBaseToken | 质押代币是否为主网基准代币 | Boolean |
>tokenContract | 质押代币的智能合约地址 | String |
>tokenSymbol | 质押代币标识 | String |
lpToken | LP 代币 | Struct |
>isBaseToken | 质押代币是否为主网基准代币 | Boolean |
>tokenContract | 质押代币的智能合约地址 | String |
>tokenSymbol | 质押代币标识 | String |
curl --location 'https://www.okx.com/api/v5/defi/explore/product/detail?investmentId=21010' \
--header 'OK-ACCESS-KEY: 4b****53' \
--header 'OK-ACCESS-PASSPHRASE: p****d'
{
"code": 0,
"msg": "",
"data": {
"investmentId": "120",
"investmentName": "jEUR",
"chainId": "137",
"rate": "0.01129",
"investType": "1",
"platformName": "Aave V3",
"platformId": "24",
"analysisPlatformId": "10",
"rateType": "0",
"tvl": "51350.92499",
"underlyingToken": [
{
"tokenSymbol": "jEUR",
"tokenAddress": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c",
"isBaseToken": false
}
],
"isInvestable": false,
"earnedToken": [
{
"tokenSymbol": "jEUR",
"tokenAddress": "0x4e3decbb3645551b8a19f0ea1678079fcb33fb4c",
"isBaseToken": false
}
],
"lpToken": [
{
"tokenSymbol": "aPolJEUR",
"tokenAddress": "0x6533afac2e7bccb20dca161449a13a32d391fb00",
"isBaseToken": false
}
],
"utilizationRate": "0.76862"
}
}