Skip to main content

Account List(v2)

Interface Description

  • Function description: Query the account list and return account information.

  • Applicable objects: Customers who connect with webull through an open platform.

  • request URL: /openapi/account/list

  • request method: GET

  • Frequency limit: The calling frequency of each AppId is limited to 20 times in 30 seconds.

Response parameter

ParameterTypeDescribeExample value
account_idStringWebull account ID (required for subsequent transactions and account balance query)863417315629211648
account_numberStringBrokerage accountCJP0036727
account_typeStringAccount type item: refer to the dictionary value AccountTypeCASH
user_idStringUser ID1111702234

Request example

from webullsdkcore.client import ApiClient
from webullsdktrade.api import API

api_client = ApiClient(your_app_key, your_app_secret, Region.JP.value)
api = API(api_client)
res = api.account_v2.get_account_list()
if res.status_code == 200:
print("account_list=" + json.dumps(res.json(), indent=4))

Response example