---
title: "Get Prices"
method: GET
path: "/instruments/{isin}/prices"
tags: ["Instruments"]
---

# Get Prices

`GET /instruments/{isin}/prices`

## Path parameters

- `isin` string, required — An ISIN (International Securities Identification Number) according to ISO 6166. This value uniquely identifies the instrument.

## Query parameters

- `type` 'nav' | 'quote' — A category representing the source of a price: <ul> <li><code>nav</code>: The price indicates the most recent net asset value (NAV) per share. <li><code>quote</code>: The price indicates the most recent market quote (bid side) for a share. </ul>

## Headers

- `LMG-Data-Privacy-Access-Principal` string, required
- `LMG-Data-Privacy-Access-Justification` string, required

## Response `200`

Successful Response

- InstrumentPriceResponse[]
  - union
    - QuoteResponseWithType
      - `type` 'nav' | 'quote', required — A category representing the source of a price: <ul> <li><code>nav</code>: The price indicates the most recent net asset value (NAV) per share. <li><code>quote</code>: The price indicates the most recent market quote (bid side) for a share. </ul>
      - `instrument` string, required — An ISIN (International Securities Identification Number) according to ISO 6166. This value uniquely identifies the instrument.
      - `ask_price` string, required — The ask price for the quote. Unless there is a new quote in the mean time, this is the execution price for a market order of type buy.
      - `ask_size` string, required — The ask size for the quote. Unless there is a new quote in the mean time, this is the maximum quantity for a market order of type buy to be executed immediately and completely. Placing orders with larger quantities can lead to partial execution (if permitted) or delayed execution.
      - `bid_price` string, required — The bid price for the quote. Unless there is a new quote in the mean time, this is the execution price for a market order of type sell.
      - `bid_size` string, required — The bid size for the quote. Unless there is a new quote in the mean time, this is the maximum quantity for a market order of type sell to be executed immediately and completely. Placing orders with larger quantities can lead to partial execution (if permitted) or delayed execution.
      - `currency` string, required — The currency for quoted prices. The currency will be represented using a three letter ISO 4217 currency code. At the moment, we will only return "EUR" as a currency.
      - `updated_at` string, date-time, required — The timestamp of the quote. It represents the point in time at which the quote was updated.
    - NavResponse
      - `type` 'nav' | 'quote', required — A category representing the source of a price: <ul> <li><code>nav</code>: The price indicates the most recent net asset value (NAV) per share. <li><code>quote</code>: The price indicates the most recent market quote (bid side) for a share. </ul>
      - `instrument` string, required — An ISIN (International Securities Identification Number) according to ISO 6166. This value uniquely identifies the instrument.
      - `currency` string, required — The currency for quoted prices. The currency will be represented using a three letter ISO 4217 currency code. At the moment, we will only return "EUR" as a currency.
      - `price` string, required — The net asset value (NAV) for the instrument.
      - `valuation_date` string, date, required — The date of the NAV valuation.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `422` — Unprocessable Entity
- `5XX` — Server Error

---

[API](https://skmtc.net/lemon/apis/lemon-markets-brokerage-api.md) · [All operations](https://skmtc.net/lemon/apis/lemon-markets-brokerage-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lemon/lemon-markets-brokerage-api/versions/3c8cfd3a96c9/schema)
