# Business Day Finder – Next Business Day by Country

> Business Day Finder – Next Business Day by Country is a paid API for AI agents from x402-data-bazaar.vercel.app, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns the next business day on or after a given date for a specified country, including holiday information and an execution recommendation.

## Facts

- Endpoint: GET https://x402-data-bazaar.vercel.app/api/business-days/next/US/2026-03-15
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-data-bazaar-vercel-app-31715687
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mDTnWMspC6XBg2-D4VIBO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-data-bazaar-vercel-app-31715687
```

Example prompt: Is March 15, 2026 a business day in the US, and if not, what's the next one? Use the America/New_York timezone.

## When to prefer this

Use this endpoint when you need to determine whether a specific date is a valid business day in the US (or another supported country) and find the next valid working day, especially for scheduling payments, invoices, deliveries, or automated workflows that must avoid weekends and public holidays.

## Known failure modes

- Invalid or unsupported country code returns an error or empty result
- Malformed date format causes a 400-level error
- Unsupported IANA timezone string may return an error or fall back to default
- Future dates beyond the holiday database coverage may return incomplete results
- Network or upstream Nager.Date API unavailability causes a 500-level error

## How this service works

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

## Output

Returns whether the input date is a business day, the name of any holiday on that date, the next business day's date and day-of-week, how many days ahead it is, a decision status (e.g. 'weekend'), a plain-English summary, and a recommended action for time-sensitive processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tz": {
   "type": "string",
   "description": "Optional IANA time zone override"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "country": "US",
  "decision": {
   "status": "weekend",
   "summary": "2026-03-15 falls on a weekend in US.",
   "recommendedAction": "Shift time-sensitive processing to the next business day unless your workflow explicitly supports weekend handling."
  },
  "timeZone": "America/New_York",
  "inputDate": "2026-03-15",
  "nextBusinessDay": {
   "date": "2026-03-16",
   "dayOfWeek": "Monday",
   "daysAhead": 1
  },
  "isInputBusinessDay": false
 },
 "source": "Nager.Date API",
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-data-bazaar-vercel-app-31715687/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-data-bazaar.vercel.app](https://www.zero.xyz/host/x402-data-bazaar.vercel.app/llms.txt)
