> ## Documentation Index
> Fetch the complete documentation index at: https://developer.wooxpro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 查询合约资产明细 (KEYED)

`适用于查询用户合约资产明细`

#### 请求URL

`GET https://cloud-api.wooxpro.com/contract/private/assets-detail`

#### 请求限制

参见 [速率限制详细](/cn/rate-limit)

#### 请求参数

> 请求

```shell theme={null}
curl -H 'X-API-KEY:{{AccessKey}}'
https://cloud-api.wooxpro.com/contract/private/assets-detail
```

无

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "data": [
    {
    "currency": "USDT",
    "position_deposit": "100",
    "frozen_balance": "100",
    "available_balance": "100",
    "equity": "100",
    "unrealized": "100"
    },
    {
      "currency": "BTC",
      "available_balance": "0",
      "frozen_balance": "0",
      "unrealized": "0",
      "equity": "0",
      "position_deposit": "0"
    },
    {
      "currency": "ETH",
      "available_balance": "0",
      "frozen_balance": "0",
      "unrealized": "0",
      "equity": "0",
      "position_deposit": "0"
    }
  ],
  "trace": "13f7fda9-9543-4e11-a0ba-cbe117989988"
}
```

| 字段                 | 类型     | 描述     |
| :----------------- | :----- | :----- |
| currency           | String | 币种     |
| position\_deposit  | String | 仓位保证金  |
| frozen\_balance    | String | 交易冻结金额 |
| available\_balance | String | 可用金额   |
| equity             | String | 总权益    |
| unrealized         | String | 未实现盈亏  |
