Query user's position list#
Description: This API provides the user's asset position list.
Request URL#
POST https://web3.okx.com/api/v5/defi/user/asset/platform/list
Request parameter#
| Parameter name | Description | Parameter type | Required | Data type | 
|---|---|---|---|---|
| walletAddressList | user wallet address list | Request body | Yes | Array | 
| >chainId | public chain ID | Request body | Yes | String | 
| >walletAddress | user wallet address | Request body | Yes | String | 
Response parameters#
| Parameter name | Description | Data type | 
|---|---|---|
| walletIdPlatformList | positions from address list | Array | 
| >platformList | positions from a specific address | String | 
| >platformName | platform name | String | 
| >analysisPlatformId | protocol ID | String | 
| >platformLogo | platform logo | String | 
| >currencyAmount | position value in USD | String | 
| >isSupportInvest | if supported by Okx DeFi | String | 
| >platformUrl | platform Url | String | 
| >networkBalanceVoList | positions from multiple network | Array | 
| >>network | network name | String | 
| >>networkLogo | network logo | String | 
| >>chainId | pulich chain ID | String | 
| >>currencyAmount | position value in USD | String | 
| >investmentCount | number of positions | String | 
Request example#
shell
curl --location 'https://web3.okx.com/api/v5/defi/user/asset/platform/list' \
--header 'OK-ACCESS-KEY: 9c****77' \
--header 'OK-ACCESS-PASSPHRASE: p****d' \
--header 'Content-Type: application/json' \
--data '{
  "walletAddressList": [
        {
            "chainId": 1,
            "walletAddress": "0x655b35f11006617696a4b31978ba4c078b6b7145"
        }
    ]
}'
Response example#
200
{
    "code": 0,
    "msg": "",
    "error_code": "0",
    "error_message": "",
    "detailMsg": "",
    "data": {
        "walletIdPlatformList": [
            {
                "platformList": [
                    {
                        "platformName": "Ethena",
                        "analysisPlatformId": 118265,
                        "platformLogo": "https://static.coinall.ltd/cdn/web3/protocol/logo/1702889213278.png/type=png_350_0",
                        "platformColor": "",
                        "currencyAmount": "10076.999426431322729394061370751783986",
                        "isSupportInvest": true,
                        "bonusTag": 0,
                        "platformUrl": "https://app.ethena.fi",
                        "networkBalanceVoList": [
                            {
                                "network": "ETH",
                                "networkLogo": "https://static.coinall.ltd/cdn/wallet/logo/ETH-20220328.png",
                                "chainId": 1,
                                "currencyAmount": "10076.999426431322729394061370751783986"
                            }
                        ],
                        "investmentCount": 1
                    },
                    {
                        "platformName": "Pendle V2",
                        "analysisPlatformId": 258,
                        "platformLogo": "https://static.coinall.ltd/cdn/web3/protocol/logo/pendle-v2.png/type=png_350_0",
                        "platformColor": "",
                        "currencyAmount": "161.9345234089089141378517476223121560",
                        "isSupportInvest": true,
                        "bonusTag": 0,
                        "platformUrl": "https://www.pendle.finance/",
                        "networkBalanceVoList": [
                            {
                                "network": "ETH",
                                "networkLogo": "https://static.coinall.ltd/cdn/wallet/logo/ETH-20220328.png",
                                "chainId": 1,
                                "currencyAmount": "161.9345234089089141378517476223121560"
                            }
                        ],
                        "investmentCount": 2
                    },
                    {
                        "platformName": "Zircuit",
                        "analysisPlatformId": 119424,
                        "platformLogo": "https://static.coinall.ltd/cdn/web3/protocol/logo/zircuit.png/type=png_350_0",
                        "platformColor": "",
                        "currencyAmount": "156.9108954533033331829362703655488",
                        "isSupportInvest": true,
                        "bonusTag": 0,
                        "platformUrl": "https://stake.zircuit.com/",
                        "networkBalanceVoList": [
                            {
                                "network": "ETH",
                                "networkLogo": "https://static.coinall.ltd/cdn/wallet/logo/ETH-20220328.png",
                                "chainId": 1,
                                "currencyAmount": "156.9108954533033331829362703655488"
                            }
                        ],
                        "investmentCount": 1
                    }
                ],
                "walletId": "8f4d93d7-275e-45dd-a0ce-2014d82d4baf",
                "totalAssets": "10395.8448452935349767148493887396449420"
            }
        ],
        "lpTokenAddressList": [
            {
                "chainId": 1,
                "tokenAddress": "0xdc02b77a3986da62c7a78fed73949c9767850809"
            }
        ],
        "updateAt": 1727083602000,
        "assetStatus": 1
    }
}
