# NetIntel Holidays Check

> NetIntel Holidays Check is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns public holidays for a given country and year, with optional check for whether a specific date is a holiday

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/holidays/check
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-holidays-check-1eebbb44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JKiiGNcWGL8j8q_fk2PuJ

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 netintel-holidays-check-1eebbb44
```

Example prompt: Can you check whether July 4th 2025 is a public holiday in the US, and also give me the full list of US holidays for 2025?

## When to prefer this

Use this endpoint when you need to programmatically look up official public holidays for a specific country and year, or to check whether a particular date falls on a public holiday. Prefer this over calendar APIs when you need structured holiday metadata including holiday type and local names, or when integrating holiday-awareness into scheduling, business logic, or date validation workflows.

## Known failure modes

- Missing required country_code parameter returns validation error
- Invalid or unsupported country code returns empty holidays list or error
- Year out of range (outside 2000-2099) returns validation error
- Date format not matching YYYY-MM-DD returns parsing error
- Payment not provided or insufficient USDC balance returns 402 Payment Required

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

A JSON object containing the country code, year, a list of holidays (each with date, name, local name, types, and is_global flag), total holiday count, an optional date_check object indicating if a specific queried date is a holiday, and a quality grade and score.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country_code"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "YYYY-MM-DD specific date to check — populates date_check with {date, is_holiday, is_weekend, is_business_day, holiday_name, next_business_day}; omitted → date_check is null"
      },
      "year": {
       "type": "integer",
       "description": "4-digit year (default: current year, range 2000-2099)"
      },
      "country_code": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 country code (e.g. US, GB, DE)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "year": {
       "type": "number"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "findings": {
       "type": "array"
      },
      "holidays": {
       "type": "array"
      },
      "date_check": {
       "type": [
        "object",
        "null"
       ]
      },
      "country_code": {
       "type": "string"
      },
      "total_holidays": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "year": 2026,
  "grade": "A",
  "score": 100,
  "findings": [],
  "holidays": [
   {
    "date": "2026-01-01",
    "name": "New Year's Day",
    "types": [
     "Public",
     "Bank"
    ],
    "is_global": true,
    "local_name": "New Year's Day"
   }
  ],
  "date_check": {
   "date": "2026-07-03",
   "is_holiday": true,
   "is_weekend": false,
   "holiday_name": "Independence Day",
   "is_business_day": false,
   "next_business_day": "2026-07-06"
  },
  "country_code": "US",
  "total_holidays": 17
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-holidays-check-1eebbb44/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
