GET
oab-forecasting.com/statusAPI status
Check public API health. No authentication required. Use for uptime monitoring.
Response Example
{
"status": "ok",
"api": "public"
}oab-forecasting.com/statusCheck public API health. No authentication required. Use for uptime monitoring.
Response Example
{
"status": "ok",
"api": "public"
}import requests
resp = requests.get("https://oab-forecasting.com/status")
print(resp.json()) # {"status": "ok", "api": "public"}oab-forecasting.com/statusCheck public API health. No authentication required. Use for uptime monitoring.
Response Example
{
"status": "ok",
"api": "public"
}