# nameserver-health-bulk

> nameserver-health-bulk is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Checks nameserver health for up to 20 domains in a single concurrent call, returning per-item results in input order with error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/dns/nameserver-health
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nameserver-health-bulk-17365b35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GZi-gqcg9WCLdodIvQGxJ

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 nameserver-health-bulk-17365b35
```

Example prompt: Can you check the nameserver health for all 15 domains in my portfolio — I need to know if any nameservers are down or unhealthy, and get a summary of failures.

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need nameserver health checked efficiently in a single call. It processes concurrently and returns results in input order with structured per-item errors, making it ideal for portfolio monitoring, pre-deployment validation, or triage workflows. Prefer over the single-domain endpoint when you have multiple domains to check and want to minimize latency and API calls.

## Known failure modes

- More than 20 domains submitted — batch size limit exceeded
- Invalid or malformed domain name in the list — per-item error field populated
- Nameserver lookup timeout — item marked as failed with error detail
- Network error reaching upstream DNS — per-item error returned
- Missing required input parameter — request rejected

## How this service works

Bulk nameserver health: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /dns/nameserver-health endpoint (Nameserver health for a domain). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An array of per-domain nameserver health results returned in the same order as the input list. Each item matches the single-domain /dns/nameserver-health response and includes a per-item error field. A top-level failure count summarizes how many domains had unhealthy or unreachable nameservers.

## 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",
     "properties": {}
    }
   },
   "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/nameserver-health-bulk-17365b35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
