# dns-https-record-bulk

> dns-https-record-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).

Bulk DNS HTTPS/SVCB record lookup for up to 20 domains in one concurrent call, returning ordered results with per-item errors and failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/dns/https
- 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/dns-https-record-bulk-f2d791ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BmwJ0O72EHRptrQj_Q8e7

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 dns-https-record-bulk-f2d791ca
```

Example prompt: Look up the DNS HTTPS records for all of these domains at once: example.com, foo.io, bar.org, baz.net — give me the results in the same order with any errors flagged per domain.

## When to prefer this

Choose this endpoint when you have a list of domains (up to 20) and need DNS HTTPS/SVCB record data for all of them efficiently. It avoids serial single-domain calls by processing concurrently and returning results in input order with per-item error handling. Prefer it over the single /dns/https endpoint whenever you have more than one domain to check. Use when building infrastructure audits, pre-deployment checks, or bulk domain enrichment pipelines.

## Known failure modes

- Input list exceeds 20 domains — request rejected or truncated
- One or more domains do not have HTTPS/SVCB records — per-item error field populated, others succeed
- Invalid domain name format — per-item error returned for that domain
- DNS resolver timeout for a domain — per-item error with timeout indication
- Entire batch fails due to upstream resolver unavailability — all items return errors

## How this service works

Bulk dns https record: 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/https endpoint (DNS HTTPS/SVCB record lookup). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of DNS HTTPS/SVCB record lookup results corresponding to the input domain list. Each item contains the same fields as a single /dns/https lookup (record data, priority, target, parameters) plus a per-item error field. The response also includes a top-level count of how many items failed.

## 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/dns-https-record-bulk-f2d791ca/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)
