# well-known-scan-bulk

> well-known-scan-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).

Scans the .well-known directory of up to 20 domains in a single concurrent batch call, returning per-domain results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/well-known
- 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/well-known-scan-bulk-a09d7db2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vWuDumVM2M8HbbhVoLECM

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 well-known-scan-bulk-a09d7db2
```

Example prompt: Can you scan the .well-known directories for all these domains at once — example.com, acme.org, foobar.io — and tell me what files each one exposes, flagging any that fail?

## When to prefer this

Choose this endpoint when you have a list of 2–20 domains and need well-known file data for all of them efficiently in a single call, avoiding the overhead of multiple sequential single-domain requests. It is the right choice for batch enrichment workflows, bulk audits, or when building pipelines that process domain portfolios.

## Known failure modes

- Individual domain unreachable — per-item error field populated, other results unaffected
- Batch exceeds 20 domain limit — request rejected
- Malformed domain input — item-level error returned
- DNS resolution failure for a domain — captured in per-item error
- Payment not provided or insufficient — 402 response, no results returned
- Timeout on slow-responding domains — captured in per-item error field

## How this service works

Bulk well known scan: 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/well-known endpoint (Well-known file scan). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-domain results matching the input list, where each item contains the well-known file scan output (same structure as the single /site/well-known endpoint) plus a per-item error field indicating any failures; a total failure count is also returned for 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/well-known-scan-bulk-a09d7db2/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)
