Catalog/ref-mic

Reference

Market Identifier Code (ISO 10383) + is-open-now API

Resolve an ISO 10383 MIC to its exchange name, operating MIC, country, city, IANA timezone, and regular trading hours, then compute whether the market is OPEN RIGHT NOW (timezone + weekday aware). The MORE: a curated MIC table joined with a live open/closed calculation an LLM can't do. Answers 'what exchange is MIC XNYS', 'is the LSE open now', 'trading hours for Tokyo Stock Exchange', 'timezone of this market code'.

Price$0.01per request
MethodPOST
Route/v1/ref/mic
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
refmiciso-10383exchangemarkettrading-hoursstock-exchangeis-open
API URLhttps://x402.hexl.dev/v1/ref/mic
Integration docs
Example request
{
  "mic": "XNYS",
  "now": "2026-06-03T15:00:00Z"
}
Example response
{
  "mic": "XNYS",
  "name": "New York Stock Exchange",
  "operatingMic": "XNYS",
  "country": "US",
  "city": "New York",
  "timezone": "America/New_York",
  "tradingHours": {
    "open": "09:30",
    "close": "16:00",
    "timezone": "America/New_York"
  },
  "localTime": "11:00",
  "isWeekend": false,
  "isOpenNow": true,
  "note": "isOpenNow reflects regular hours and weekday only; exchange holidays are not modeled."
}
Input schema
{
  "type": "object",
  "required": [
    "mic"
  ],
  "properties": {
    "mic": {
      "type": "string",
      "examples": [
        "XNYS"
      ]
    },
    "now": {
      "type": "string",
      "examples": [
        "2026-06-03T15:00:00Z"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}