Developer Portal
Trader APIsHTTP APIConfiguration

Default WatchlistGET

Returns the account's default, preconfigured symbols watchlist, ordered by symbol name. The default is preconfigured by the broker. Read-only — the server stores no watchlists; clients seed their own watchlist from this list and persist it through the client-settings endpoints. Symbols that are no longer accessible or no longer exist are omitted.

View as Markdown
GET
/accounts/{account_id}/watchlist/default

Authorization

AuthorizationRequiredBearer <token>

JWT token obtained from the login endpoint

In: header

Path Parameters

account_idRequiredstring

Account ID to resolve the default watchlist for

curl -X GET "http://localhost:8081/api/v1/accounts/acc_123456/watchlist/default" \
  -H "Authorization: Bearer <token>"

Successfully retrieved the default watchlist

{
  "symbol_ids": [
    "0c8f2a1e-6b6b-4f3a-9a1e-1d2c3b4a5f60",
    "7d1e4c2b-9a8f-4d5e-b3c1-2f6a8e9d0b41"
  ]
}