跳到主要内容

账户持仓

接口说明

  • 功能说明:根据账户id分页查询账户持仓列表。

  • 适用对象:通过OpenAPI开发平台对接webull的客户。

  • 请求URL:/account/positions

  • 请求方式:GET

  • 频次限制:每个App ID调用频次限制为30秒10次。

请求参数

参数类型是否必填描述示例值
account_idString账户id20150320010101001
page_sizeint每页条数。默认值:10;最大值:100,可填整数。10
last_instrument_idString上一页最后一个的标的id,不传默认查第一页202202180001

响应参数

参数类型是否必填描述示例值
has_nextBooleantrue是否还有下一页true
holdings[ ]Holding持仓列表

Holding:

参数类型描述示例值
instrument_idString标的id913256135
symbolString标的代码AAPL
instrument_typeString标的类型:STOCK股票STOCK
currencyString持仓币种USD
unit_costString持仓成本价9.54
qtyFloat标的数量,股数11000
total_costString持仓总成本105006.00
last_priceString市价52.25
market_valueString市值574750.00
unrealized_profit_lossString浮动盈亏469744.00
unrealized_profit_loss_rateString浮动盈亏率4.4700
holding_proportionString持仓占比0.9800

请求示例

from webullsdktrade.api import API
from webullsdkcore.client import ApiClient
from webullsdkcore.common.region import Region

api_client = ApiClient(your_app_key, your_app_secret, Region.US.value)
api = API(api_client)
response = api.account.get_account_position(account_id)
if response.status_code == 200:
account_position = response.json()

响应示例

{
"has_next": false,
"holdings": [
{
"instrument_id": "913256135",
"symbol": "AAPL",
"short_name": "AAPL",
"qty": 200,
"unit_cost": "10.00",
"currency": "USD",
"total_cost": "2000.00",
"last_price": "135.62",
"market_value": "27124.00",
"unrealized_profit_loss": "25124.00",
"unrealized_profit_loss_rate": "12.56",
"holding_proportion": "1.00"
}
]
}

异常示例

{
"error_code": "INVALID_TOKEN",
"message": "401 UNAUTHORIZED \"app_id and account_id not related\""
}