# Default Watchlist

> 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.

Source: /trader/api/configuration/get-default-watchlist

## `GET /accounts/{account_id}/watchlist/default`

**Default Watchlist**

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.

Tags: `Configuration`

#### Path parameters

- `account_id` (string) (required) — Account ID to resolve the default watchlist for


### Responses

#### `200` — Successfully retrieved the default watchlist

**Content-Type:** `application/json`

Symbol IDs flagged into the account group's default watchlist, ordered by symbol name. Empty when nothing is flagged or the group has no symbol profile linked.
- `symbol_ids` (array) (required) — Symbol identifiers, in the same string form as `Symbol.id`.
  - items:
    `string`

#### `401` — Unauthorized (invalid or missing JWT token)

**Content-Type:** `application/json`

- `error` (object) (required)
  - `type` (string) (required) — Error type code
  - `message` (string) (required) — Human-readable error message
  - `field` (string) — Field name if error is field-specific

#### `403` — Forbidden (account access denied)

**Content-Type:** `application/json`



#### `404` — Account or account group not found

**Content-Type:** `application/json`



#### `500` — Internal server error

**Content-Type:** `application/json`



