# tld-info-bulk

> tld-info-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-fetches TLD information for up to 20 domains in one concurrent call, returning results in input order with per-item error fields and a failure count.

## Facts

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

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 tld-info-bulk-7fa43537
```

Example prompt: I have a list of domains — example.com, openai.io, acme.co.uk, test.org, and about 15 more — can you fetch the TLD info for all of them at once and tell me which ones failed?

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need TLD information for all of them in a single round trip. It processes concurrently and returns results in input order, making it far more efficient than calling the single /dns/tld-info endpoint repeatedly. It is the right choice for batch enrichment workflows, domain portfolio audits, or any agent pipeline that accumulates a list of domains and needs TLD metadata before proceeding.

## Known failure modes

- Individual domain item fails lookup — per-item error field is populated and failure count incremented
- More than 20 domains submitted — batch limit exceeded error
- Malformed domain names in input — individual items flagged with errors rather than entire batch failing
- Network timeout on concurrent resolution — some items may return errors while others succeed
- Payment not provided or insufficient — x402 payment required error before processing begins

## How this service works

Bulk tld info: 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/tld-info endpoint (TLD information). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of TLD information results corresponding to each input domain, where each item mirrors what the single /dns/tld-info endpoint returns, plus a per-item error field indicating any lookup failure. A top-level failure count is included so the caller can quickly assess how many items could not be resolved.

## 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/tld-info-bulk-7fa43537/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)
