Skip to main content
GET
/
stocks
/
markets
Get Markets
curl --request GET \
  --url https://api.tradewatch.io/stocks/markets \
  --header 'api-key: <api-key>'
[
  {
    "mic": "<string>",
    "exchange": "<string>",
    "acronym": "NYSE",
    "lei": "<string>",
    "url": "<string>",
    "city": "<string>",
    "country": "<string>",
    "country_code": "<string>",
    "flag": "<string>",
    "currency_name": "<string>",
    "currency_code": "<string>",
    "currency_symbol": "<string>",
    "region": "<string>",
    "timezone": "<string>",
    "timezone_abbr": "<string>",
    "utc_offset": "<string>",
    "dst": true,
    "previous_dst_transition": "2024-03-10",
    "next_dst_transition": "2024-11-03",
    "working_days": [
      "Monday"
    ],
    "open_time": "<string>",
    "close_time": "<string>",
    "early_close_time": "13:00"
  }
]

Authorizations

api-key
string
header
required

Authentication via API key header

Query Parameters

mic
string

Optional list of comma separated MIC codes for which market to show data for. All market will be included if MIC code is not specified.

Response

Successful Response

mic
string
required

Market Identifier Code (ISO 10383)

Example:

"XNYS"

exchange
string
required

Full name of the exchange

Example:

"New York Stock Exchange"

acronym
string | null
required

Exchange acronym

Example:

"NYSE"

lei
string
required

Legal Entity Identifier

Example:

"5493000F4ZO33MV32P92"

url
string
required

Exchange website URL

Example:

"https://www.nyse.com/index"

city
string
required

City where the exchange is located

Example:

"New York"

country
string
required

Country where the exchange is located

Example:

"United States"

country_code
string
required

ISO 3166-1 alpha-2 country code

Example:

"US"

flag
string
required

Country flag emoji

Example:

"🇺🇸"

currency_name
string
required

Name of the primary currency used

Example:

"US dollar"

currency_code
string
required

ISO 4217 currency code

Example:

"USD"

currency_symbol
string
required

Symbol of the currency

Example:

"$"

region
string
required

Geographical region

Example:

"North America"

timezone
string
required

Timezone identifier (IANA database)

Example:

"America/New_York"

timezone_abbr
string
required

Timezone abbreviation

Example:

"EDT"

utc_offset
string
required

UTC offset in hours

Example:

"-0400"

dst
boolean
required

Whether Daylight Saving Time is currently observed

Example:

true

previous_dst_transition
string<date> | null
required

Date of the previous DST transition

Example:

"2024-03-10"

next_dst_transition
string<date> | null
required

Date of the next DST transition

Example:

"2024-11-03"

working_days
enum<string>[]
required

List of working days

Available options:
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday
Example:
[
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday"
]
open_time
string
required

Regular trading session opening time

Example:

"09:30"

close_time
string
required

Regular trading session closing time

Example:

"16:00"

early_close_time
string | null
required

Trading session closing time on early close days

Example:

"13:00"