描述:该 API 将提供用户协议维度的资产持仓列表。
POST https://www.okx.com/api/v5/defi/user/asset/platform/detail
参数名称 | 相关描述 | 参数类型 | 必传 | 数据类型 |
---|---|---|---|---|
analysisPlatformId | 协议ID | 请求体 | 是 | String |
walletAddressList | 地址列表 | 请求体 | 是 | Array |
>chainId | 公链 ID | 请求体 | 是 | String |
>walletAddress | 用户钱包地址 | 请求体 | 是 | String |
参数名称 | 相关描述 | 数据类型 |
---|---|---|
networkHoldVoList | 该网络下用户的持仓 | Array |
>network | 网络名称 | String |
>chainId | 链ID | String |
>investTokenBalanceVoList | 在投仓位列表 | Array |
>>investType | 投资品类型 (1、存币;2、流动性池;3、挖矿;4、机枪池;5、质押) | String |
>>>tokenSymbol | 资产名称 | String |
>>>tokenLogo | 资产图标 | String |
>>>coinAmount | 在投资产数量 | String |
>>>currencyAmount | 在投美元金额 | String |
>>>tokenPrecision | 代币精度 | String |
>>>tokenAddress | 代币地址 | String |
>>>network | 网络 | String |
>>totalValue | 仓位总美元价值 | String |
>platformName | 协议名称 | String |
>analysisPlatformId | 协议ID | String |
>platformLogo | 协议图标 | String |
>platformUrl | 协议链接 | String |
curl --location 'https://www.okx.com/api/v5/defi/user/asset/platform/detail' \
--header 'OK-ACCESS-KEY: 9c****77' \
--header 'OK-ACCESS-PASSPHRASE: p****d' \
--header 'Content-Type: application/json' \
--data '{
"analysisPlatformId": 260,
"accountIdInfoList": [
{
"walletAddressList": [
{
"chainId": 42161,
"walletAddress": "0x7f429edeff8afc7bb3a2cf7db832fc86f6fa99da"
}
]
}
]
}'
{
"code": 0,
"msg": "",
"error_code": "0",
"error_message": "",
"detailMsg": "",
"data": {
"walletIdPlatformDetailList": [
{
"networkHoldVoList": [
{
"network": "Arbitrum One",
"chainId": 42161,
"investTokenBalanceVoList": [
{
"investType": 5,
"assetsTokenList": [
{
"tokenSymbol": "ETH",
"tokenLogo": "https://static.coinall.ltd/cdn/wallet/logo/ETH-20220328.png",
"coinAmount": "0.000044133940644863",
"currencyAmount": "0.11722724912266575471",
"tokenPrecision": 18,
"tokenAddress": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"network": "ARB"
}
],
"rewardDefiTokenInfo": [],
"totalValue": "0.11722724912266575471"
}
],
"availableRewards": [],
"airDropRewardInfo": []
}
],
"accountId": "278c58bb-5958-4301-a5b6-d670e1d9837f"
}
],
"platformName": "ether.fi",
"analysisPlatformId": 260,
"platformLogo": "https://static.coinall.ltd/cdn/invest/platform/EtherFi.png",
"platformUrl": "https://www.ether.fi/"
}
}