# dns-wildcard-check-bulk

> dns-wildcard-check-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 up to 20 domains at once for wildcard DNS configuration, returning concurrent results in input order with per-item error reporting.

## Facts

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

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-wildcard-check-bulk-76db2cb1
```

Example prompt: Can you check all 15 domains on my list for wildcard DNS configuration in one go and tell me which ones have it enabled, along with any that failed to resolve?

## When to prefer this

Choose this endpoint when you have a list of 2–20 domains to check for wildcard DNS and want results in a single API call with concurrent processing. It is more efficient and cost-effective than calling the single /dns/wildcard endpoint repeatedly in a loop. Ideal for batch enrichment pipelines, domain audits, or security sweeps where order preservation and per-item error reporting matter.

## Known failure modes

- Exceeding the 20-domain limit per batch call
- Invalid or malformed domain names causing per-item errors
- DNS resolution timeouts resulting in per-item failure flags
- Network errors to upstream DNS resolvers incrementing the failure count
- Batch input not provided as required array structure

## How this service works

Bulk dns wildcard check: 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/wildcard endpoint (Wildcard DNS check). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-domain results matching the input order, each containing the wildcard DNS status (same answer as the single /dns/wildcard endpoint), a per-item error field indicating any lookup failure, and an overall count of failed items in the batch.

## 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-wildcard-check-bulk-76db2cb1/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)
