---
title: "Get instrument display data"
method: GET
path: "/api/v1/market-data/instruments"
tags: ["Market Data"]
---

# Get instrument display data

`GET /api/v1/market-data/instruments`

**Rate limit:** 120 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/market-data/exchanges`
- `GET /api/v1/market-data/instrument-types`
- `GET /api/v1/market-data/instruments/history/closing-price`
- `GET /api/v1/market-data/instruments/rates`
- `GET /api/v1/market-data/instruments/{instrumentId}/history/candles/{direction}/{interval}/{candlesCount}`
- `GET /api/v1/market-data/search`
- `GET /api/v1/market-data/stocks-industries`

## Query parameters

- `instrumentIds` integer[]
- `exchangeIds` integer[]
- `stocksIndustryIds` integer[]
- `instrumentTypeIds` integer[]

## Headers

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

## Response `200`

Success

- InstrumentsResponse
  - `instrumentDisplayDatas` object[]
    - `instrumentID` integer
    - `instrumentDisplayName` string
    - `instrumentTypeID` integer
    - `exchangeID` integer
    - `symbolFull` string
    - `stocksIndustryId` integer
    - `priceSource` string — The data provider or market source for the price, such as Nasdaq, LSE, or CME.
    - `hasExpirationDate` boolean
    - `isInternalInstrument` boolean — If set to true, the instrument is restricted from public access.
    - `images` object[]
      - `instrumentID` integer
      - `width` number
      - `height` number
      - `uri` string
      - `backgroundColor` string
      - `textColor` string

## Other responses

- `429` — Too Many Requests — the shared rate limit (120 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)
