Overview
Find the next business day on or after a specific date for a country. Returns whether the input date is already a business day, any holiday on that date, the next business day, and an execution recommendation. Optional ?tz=America/New_York. e.g. GET /api/business-days/next/US/2026-03-15
Protocol
x402
Price
$0.0020
Payment Asset
USD Coin
Payment Network
eip155:8453
Category
uncategorized
Provider
x402-data-bazaar
Source
bazaar
Indexed
2026-03-20 09:39:33
Health
Status
healthy
Latency (p50)
176ms
Uptime (30d)
100.0%
Reliability Score
92/100
Last Checked
2026-03-20 16:03:51
Last Healthy
2026-03-20 16:03:51
Consecutive Failures
0
Input Schema
{
"discoverable": true,
"method": "GET",
"queryParams": {
"tz": {
"description": "Optional IANA time zone override",
"type": "string"
}
},
"type": "http"
}
Output Schema
{
"data": {
"country": "US",
"decision": {
"recommendedAction": "Shift time-sensitive processing to the next business day unless your workflow explicitly supports weekend handling.",
"status": "weekend",
"summary": "2026-03-15 falls on a weekend in US."
},
"inputDate": "2026-03-15",
"isInputBusinessDay": false,
"nextBusinessDay": {
"date": "2026-03-16",
"dayOfWeek": "Monday",
"daysAhead": 1
},
"timeZone": "America/New_York"
},
"source": "Nager.Date API",
"success": true
}