# Markets Details
# Get Market Details
Use the market details endpoint to get key information about a FinID
. This will help with identifying the exact market or trading venue.
Details available through this endpoint include:
- Exchange Name
- Market Name
- Product or Securities Group
- MIC
- Asset Type
- Country
- Timezone
- Memo - A description or additional details about the trading venue (when needed).
Note
MICs (Market Identification Codes, ISO 20022) typically encompass multiple trading venues with unique trading schedule and holiday calendars. For this reason, we do not use MICs to identify markets in our API.
# Examples
https://api.tradinghours.com/v3/markets/details?fin_id=us.nyse
Bulk requests are supported:
https://api.tradinghours.com/v3/markets/details?fin_id=us.nyse,jp.jpx
And CSV format is supported:
https://api.tradinghours.com/v3/markets/details?fin_id=us.nyse,jp.jpx&format=csv
# Response
{
"data": [
{
"fin_id": "JP.JPX",
"country_code": "JP",
"exchange": "Japan Exchange Group",
"market": "Tokyo Stock Exchange",
"products": null,
"mic": "XJPX",
"acronym": "JPX",
"asset_type": null,
"memo": "All listed equities",
"timezone": "Asia/Tokyo"
},
{
"fin_id": "US.NYSE",
"country_code": "US",
"exchange": "New York Stock Exchange",
"market": "Cannonical",
"products": null,
"mic": "XNYS",
"acronym": "NYSE",
"asset_type": null,
"memo": "Canonical",
"timezone": "America/New_York"
}
]
}