/v1/day_statusProvides a comprehensive status for a given date.
Last Updated: 2026-06-21
This endpoint returns a detailed status for a specific date on a given financial calendar. It indicates if the day is a holiday, a weekend, an early close day, and provides the actual close time if applicable. This is useful for understanding the full operational status of a market on any given day.
Use the interactive preview page to check a date without an API key, or paste a URL with your key directly:
Try the Holiday Checker →Or with an API key: https://fincalapi.com/v1/day_status?date=2025-12-24&calendar=SIFMA-US&api_key=YOUR_KEY
GET https://fincalapi.com/v1/day_status
| Name | Type | Required | Description |
|---|---|---|---|
date |
string | ✅ Yes | Date to check in `YYYY-MM-DD` format (e.g., `2025-12-24`). |
calendar |
string | ✅ Yes | Holiday calendar name, e.g., `SIFMA-US`, `NYSE`, `NASDAQ`, `SIFMA-UK`, `SIFMA-JP`. |
format |
string | No (Default: `json`) | Response format: `json`, `text`, `plain`, `html`, `csv`. |
Get and parse the day status using Python:
import requests
import json
API_KEY = "fincal_live_YOUR_KEY_HERE"
base_url = "https://fincalapi.com/v1/day_status"
params = {
"date": "2025-12-24",
"calendar": "SIFMA-US"
}
response = requests.get(base_url, params=params, headers={"Authorization": f"Bearer {API_KEY}"})
if response.status_code == 200:
day_status = response.json()
print(json.dumps(day_status, indent=2))
# Example output:
# {
# "date": "2025-12-24",
# "calendar": "SIFMA-US",
# "is_holiday": false,
# "is_early_close": true,
# "close_time": "13:00",
# "is_weekend": false,
# "status": "Early Close"
# }
else:
print(f"Error: {response.status_code} - {response.text}")
Fetch the day status programmatically:
Function GetDayStatus(targetDate As String, calendarName As String) As String
Dim http As Object
Set http = CreateObject("MSXML2.XMLHTTP")
Dim url As String
url = "https://fincalapi.com/v1/day_status?date=" & targetDate & "&calendar=" & calendarName
http.Open "GET", url, False
http.setRequestHeader "Authorization", "Bearer fincal_live_YOUR_KEY_HERE"
http.Send
GetDayStatus = http.responseText ' Returns JSON string
End Function
' Example: MsgBox GetDayStatus("2025-12-24", "SIFMA-US")
To get the full day status for a cell `A2` containing the date `2025-12-24` and calendar `SIFMA-US`. Pass your API key as the api_key parameter:
=WEBSERVICE("https://fincalapi.com/v1/day_status?date="&TEXT(A2,"YYYY-MM-DD")&"&calendar=SIFMA-US&api_key=fincal_live_YOUR_KEY_HERE")
Security note: The api_key parameter works but your key appears in server logs and Excel's formula bar. For better security, use Power Query (Excel 2016+) with the Authorization header instead.
Excel 2016+ supports custom HTTP headers in Power Query, keeping your key out of the URL:
let
ApiKey = "fincal_live_YOUR_KEY_HERE",
Source = Web.Contents(
"https://fincalapi.com/v1/day_status?date=2025-12-24&calendar=SIFMA-US",
[Headers = [Authorization = "Bearer " & ApiKey]]
),
Result = Json.Document(Source)
in
Result
Retrieve day status for a specific date and calendar using the api_key query parameter:
=IMPORTDATA("https://fincalapi.com/v1/day_status?date=2025-12-24&calendar=SIFMA-US&api_key=fincal_live_YOUR_KEY_HERE")
Check status for a date from the command line:
curl -H "Authorization: Bearer fincal_live_YOUR_KEY_HERE" \
"https://fincalapi.com/v1/day_status?date=2025-12-25&calendar=SIFMA-US"