Tickerdevelopers

References schemas

Data models returned by References endpoints.

ExchangeDetail

Full exchange details (ISO 10383 MIC data)

{
  "mic": string,
  "name": string | null,
  "abbreviation": string | null,
  "country": string | null,
  "city": string | null,
  "status": string | null,
  "website": string | null,
  "creationDate": string | null,
  "lastUpdateDate": string | null,
  "expiryDate": string | null,
  "comments": string | null,
  "segments": [ExchangeSegment],
  "_links": {
    "self": string
  }
}
micstring

Market Identifier Code (operating MIC)

example: XLON
namestring | null

Exchange name

abbreviationstring | null

Exchange abbreviation

countrystring | null

ISO 3166 country code

example: GB
citystring | null

City name

example: LONDON
statusstring | null

MIC status (ACTIVE, UPDATED, EXPIRED)

example: ACTIVE
websitestring | null

Exchange website URL

creationDatestring | null

ISO date when MIC was created

example: 2005-06-27
lastUpdateDatestring | null

ISO date when MIC was last updated

example: 2024-10-28
expiryDatestring | null

ISO date when MIC expired (null if active)

commentsstring | null

Additional comments from ISO registry

segments[ExchangeSegment]

Segment MICs operating under this exchange

ExchangeListItem

Exchange summary for list responses

{
  "mic": string,
  "name": string | null,
  "country": string | null,
  "city": string | null,
  "status": string | null,
  "comments": string | null
}
micstring

Market Identifier Code (operating MIC)

example: XLON
namestring | null

Exchange name

countrystring | null

ISO 3166 country code

example: GB
citystring | null

City name

example: LONDON
statusstring | null

MIC status (ACTIVE, UPDATED, EXPIRED)

example: ACTIVE
commentsstring | null

Additional comments from ISO registry

ExchangeSegment

A segment MIC within an exchange

{
  "mic": string,
  "name": string | null,
  "status": string | null
}
micstring

Segment MIC code

example: XLOM
namestring | null

Segment name

statusstring | null

Segment status (ACTIVE, UPDATED, EXPIRED)