System Status

Live market status across all supported exchanges. Updated on page load. All times UTC.

Last checked: —

Oracle API

headlessoracle.com

Querying...

Exchange Status

Sample Live Receipt

Signed Ed25519 receipt — verify at headlessoracle.com/verify

GET /v5/demo?mic=XNYS Verify →
Loading...

Upcoming DST Transitions

US DST — Spring Forward

March 8, 2026 · 02:00 ET

EST → EDT (UTC-5 → UTC-4). Affects XNYS, XNAS.

Bots with hardcoded UTC-5 will compute wrong session times from March 9 onward.

UK/EU DST — Spring Forward

March 29, 2026 · 01:00 GMT

GMT → BST / CET → CEST (UTC+0 → UTC+1 / UTC+1 → UTC+2). Affects XLON, XPAR.

Bots using hardcoded UTC+0 or UTC+1 will fail from March 31 onward.

3-Line Integration

Python · fail-closed by design
receipt = requests.get("https://headlessoracle.com/v5/status?mic=XNYS",
    headers={"X-Oracle-Key": key}, timeout=4).json()

if receipt["status"] != "OPEN": defer()   # fail-closed
verify_signature(receipt)                 # Ed25519 check
execute_trade()                           # only path to execution