# x402-data-bazaar Business Day Intelligence

> x402-data-bazaar Business Day Intelligence 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 today's business-day status for a given country, including holiday status, weekend status, next holiday, next business day, and a recommended action — all as of the current local date.

## Facts

- Endpoint: GET https://x402-data-bazaar.vercel.app/api/holidays/today/US
- 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-1ac7c3b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oCSN9BmXLs2IKRu7w9NsB

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-1ac7c3b6
```

Example prompt: Is today a business day in the US? Use my local New York timezone (America/New_York) and tell me if there's a holiday coming up and what action I should take.

## When to prefer this

Use this endpoint when you need a single, decision-ready answer about whether today is a business day in a specific country, including the next upcoming holiday and next business day — especially when you want an opinionated recommended action rather than raw calendar data. Prefer this over manual date calculations or generic calendar APIs when you need a pre-interpreted, action-oriented response.

## Known failure modes

- Invalid or unsupported country code returns an error or empty holiday data
- Invalid IANA timezone string causes a timezone parsing error
- Service unavailability results in a 5xx response
- Country code with no holiday data configured returns partial results

## How this service works

Business-day intelligence for the current local date in a country -- holiday status, weekend status, next holiday, next business day, and a decision-ready recommended action. Optional ?tz=America/New_York. e.g. GET /api/holidays/today/US

## Output

Returns a JSON object with: today's date and country, whether it's a business day, holiday, or weekend, a human-readable summary and recommended action, the next upcoming holiday (name and date), and the next business day (date, day of week, days ahead). Source is attributed to the Nager.Date API.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "data": {
  "date": "2026-03-13",
  "country": "US",
  "decision": {
   "status": "business-day",
   "summary": "2026-03-13 is a business day in US.",
   "recommendedAction": "Proceed with normal operations and same-day cutoffs if your internal deadlines are still open."
  },
  "timeZone": "America/New_York",
  "isHoliday": false,
  "isWeekend": false,
  "nextHoliday": {
   "date": "2026-04-03",
   "name": "Good Friday"
  },
  "isBusinessDay": true,
  "nextBusinessDay": {
   "date": "2026-03-13",
   "dayOfWeek": "Friday",
   "daysAhead": 0
  }
 },
 "source": "Nager.Date API",
 "success": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-data-bazaar-vercel-app-1ac7c3b6/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)
