/v1/clock
World-clock of the four centres
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/fxsessions-api/v1/clock" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxsessions-api/v1/clock", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxsessions-api/v1/clock");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fxsessions-api/v1/clock",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"utc": "2026-06-09T03:02:38.580Z",
"centres": [
{
"name": "Sydney",
"is_open": true,
"session": "sydney",
"local_day": "Tue",
"local_time": "13:02",
"utc_offset": "+10:00"
},
{
"name": "Tokyo",
"is_open": true,
"session": "tokyo",
"local_day": "Tue",
"local_time": "12:02",
"utc_offset": "+09:00"
},
{
"name": "London",
"is_open": false,
"session": "london",
"local_day": "Tue",
"local_time": "04:02",
"utc_offset": "+01:00"
},
{
"name": "New York",
"is_open": false,
"session": "newyork",
"local_day": "Mon",
"local_time": "23:02",
"utc_offset": "-04:00"
}
]
},
"meta": {
"timestamp": "2026-06-09T03:02:38.582Z",
"request_id": "639cc154-9d72-404f-8532-1da0cc5510f8"
},
"status": "ok",
"message": "Clock retrieved successfully",
"success": true
}