v7

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0462198511.0 KB
market-data

Retrieve prices

Retrieve the price for the requested symbols as-of the given datetime, which defaults to now.

get/prices

Query parameters

symbolstring[] required

Return prices for the given symbols.

Return prices for the given symbols.

asofstring date-time

Return prices as-of the given datetime. Defaults to now.

Return prices as-of the given datetime. Defaults to now.

Response

OK

accrued_intereststring nullable required

The accrued interest at standard settlement.

askstring required

The ask price.

bidstring required

The bid price.

currency'EUR' | 'USD' | 'GBP' required
dirty_askstring nullable

The ask price including accrued interest.

dirty_bidstring nullable

The bid price including accrued interest.

dirty_midstring nullable

The midpoint price including accrued interest.

midstring nullable required

The midpoint between the bid and ask prices.

price_type'percent' | 'money' required
quality'closing' | 'intraday' | 'realtime' | 'delayed' required
symbolstring required

The instrument symbol, such as an ISIN or ticker.

timestampstring date-time required

The time the price took effect.

ytm_askstring nullable required

The ask yield to maturity for a fixed-income instrument.

ytm_bidstring nullable required

The bid yield to maturity for a fixed-income instrument.

ytm_midstring nullable required

The midpoint yield to maturity for a fixed-income instrument.

Example response

[
  {
    "accrued_interest": "0.87123288",
    "ask": "99.50",
    "bid": "99.25",
    "dirty_ask": "100.37",
    "dirty_bid": "100.12",
    "dirty_mid": "100.245",
    "mid": "99.375",
    "timestamp": "2026-07-14T09:34:12Z",
    "ytm_ask": "4.20",
    "ytm_bid": "4.25",
    "ytm_mid": "4.23"
  }
]