# llms-txt-fetch-bulk

> llms-txt-fetch-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).

Fetches llms.txt files for up to 20 domains concurrently in a single API call, returning ordered results with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/llms-txt
- 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/llms-txt-fetch-bulk-53f6437a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ctG60JZw0fbCf-QGZRYq3

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 llms-txt-fetch-bulk-53f6437a
```

Example prompt: Can you fetch the llms.txt files for all of these domains at once: openai.com, anthropic.com, mistral.ai, cohere.com, and huggingface.co? I want to see their AI context files in one batch call.

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and need their llms.txt files in a single API call rather than making sequential single-domain requests. It is ideal for batch enrichment pipelines, competitive intelligence crawls, or onboarding workflows where you need to check multiple sites concurrently. Prefer the single-domain endpoint for one-off lookups where simplicity matters more than throughput.

## Known failure modes

- Domain unreachable or times out — per-item error field populated, rest of batch still returns
- llms.txt file not found at domain — item returns not-found error
- Exceeding 20-domain limit per call — request rejected
- Malformed domain input — validation error returned
- All domains fail — full failure count returned with empty results

## How this service works

Bulk llms txt fetch: 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 /site/llms-txt endpoint (llms). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input domain list, where each item contains the fetched llms.txt content (same structure as the single-domain endpoint) plus a per-item error field indicating fetch failures. A top-level failure count summarizes how many domains could not be fetched.

## 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/llms-txt-fetch-bulk-53f6437a/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)
