# Suverse Holiday Countries List

> Suverse Holiday Countries List is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the list of countries supported by the Nager.Date public holiday service, including country code and name, to validate coverage before querying holidays.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-holiday-countries
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-holiday-countries-list-3e7af738
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8OlnWcGrLMIVLWkpdb5kt

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 suverse-holiday-countries-list-3e7af738 -d '<json body>'
```

Example prompt: Before I query holiday dates, can you fetch the full list of countries supported by the Nager.Date holiday service so I can confirm my country is covered?

## When to prefer this

Use this endpoint when an agent needs to validate whether a target country is supported by Nager.Date before making a holiday query, or when building a UI/workflow that needs to enumerate all valid country options. Prefer this over direct Nager.Date access when operating in an x402 micropayment environment without managing your own API keys.

## Known failure modes

- Upstream Nager.Date service unavailable — proxy returns 5xx error
- Payment not processed via x402 — returns 402 Payment Required
- Malformed request body — returns 400 Bad Request
- Empty or partial response if Nager.Date API changes its format

## How this service works

Countries supported by the Nager.Date public holiday service, no key. Returns country code and name for each. For AI agents validating coverage before querying holidays.

## Output

An array of objects, each containing a country code (ISO 3166-1 alpha-2) and the corresponding country name, representing every nation supported by the Nager.Date public holiday service.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-holiday-countries-list-3e7af738/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
