Skip to main content

Account List

Interface Description

  • Function description: Paginate to query the account list and return account information.

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

  • request URL: /app/subscriptions/list

  • request method: GET

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

Request Parameters

ParameterTypeRequired fieldsDescribeExample value
subscription_idStringNoThe order ID of the last piece of data, if no parameter is passed, the first 100 pieces of data are queried by default1643264151319

Response Parameter

ParameterTypeDescribeExample value
subscription_idStringThird Party Subscription ID1643264151319
user_idStringUser ID1111702234
account_idStringWebull account ID (required for subsequent transactions and account balance query)QJHO3P1PR9425Q6UAT7QLJTEKB
account_numberStringBrokerage account10006865

Request Example

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.HK.value)
api = API(api_client)
response = api.account.get_app_subscriptions(subscription_id)
if response.status_code == 200:
app_subscriptions = response.json()

Response Example

[{
'subscription_id': '1646884438608',
'user_id': '1940003393',
'account_id': '7THGGKDQ5SRN2SFORREFD54DO9',
'account_number': '10006865'
}]