---
title: "Get default watchlist items"
method: GET
path: "/api/v1/watchlists/default-watchlists/items"
tags: ["Watchlists"]
---

# Get default watchlist items

`GET /api/v1/watchlists/default-watchlists/items`

**Rate limit:** 60 requests per 60 seconds. This is a **shared quota** — the same budget is consumed by a group of related endpoints, so calling any of them reduces what is left for the others (you cannot call each at the full rate independently). Endpoints sharing this quota:
- `GET /api/v1/watchlists`
- `GET /api/v1/watchlists/public/{userId}`
- `GET /api/v1/watchlists/public/{userId}/{watchlistId}`
- `GET /api/v1/watchlists/{watchlistId}`

---

Retrieves items from user's default watchlists with optional pagination.

## Query parameters

- `itemsLimit` integer
- `itemsPerPage` integer

## Headers

- `x-request-id` string, uuid, required
- `x-api-key` string, password, required
- `x-user-key` string, password, required

## Response `200`

Successfully retrieved default watchlist items

- WatchlistItemDto[]
  - `itemId` integer, required — Unique identifier of the financial instrument
  - `itemType` string, required — Type of the financial instrument (e.g., 'Instrument', 'Person')
  - `itemRank` integer — Ranking position of the item in the watchlist
  - `itemAddedReason` string — Reason the item was added to the watchlist
  - `itemAddedDate` string, date-time — Date and time the item was added
  - `market` object — Market metadata for the instrument when included
    - `id` string
    - `symbolName` string
    - `displayName` string
    - `assetTypeId` integer
    - `assetTypeSubCategoryId` integer, nullable
    - `exchangeId` integer
    - `hasExpirationDate` boolean
    - `avatar` object
      - `small` string
      - `medium` string
      - `large` string
      - `svg` object, nullable — SVG avatar with background and text colors
        - `url` string
        - `backgroundColor` string
        - `textColor` string

## Other responses

- `429` — Too Many Requests — the shared rate limit (60 requests / 60s) was exceeded.

---

[API](https://skmtc.dev/etoro/apis/etoro-api.md) · [All operations](https://skmtc.dev/etoro/apis/etoro-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/etoro/etoro-api/revisions/69c1fb266c35/schema)
