# domain-risk-report-bulk

> domain-risk-report-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 fraud and phishing risk, returning a risk report per domain in input order with per-item error handling.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/risk-report
- 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/domain-risk-report-bulk-76c6b67b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KlC-HMbMipQti-W1rPkWS

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 domain-risk-report-bulk-76c6b67b
```

Example prompt: Can you run a fraud and phishing risk check on all 15 domains in my list — suspicious-shop.com, fastcash-now.net, and the rest — and give me a risk report for each one with any errors flagged?

## When to prefer this

Choose this endpoint when you have 2–20 domains to assess in a single operation and want concurrent processing with results in input order. It is more efficient and cost-effective than making sequential calls to the single-domain endpoint. Prefer this over single-domain checks whenever you hold a list, need batch enrichment for a pipeline, or are screening multiple third-party or user-submitted domains at once.

## Known failure modes

- Exceeding the 20-domain limit per call returns a validation error
- Malformed or non-existent domain names produce a per-item error rather than failing the whole batch
- Network timeouts on individual domains populate the per-item error field while the rest succeed
- Missing or invalid payment (x402) results in a 402 Payment Required response
- Empty domain list returns a validation error

## How this service works

Bulk domain risk report: 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/risk-report endpoint (Domain risk report for fraud and phishing screening). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of risk report objects corresponding to each input domain, each containing the same fraud and phishing risk data as the single-domain endpoint (risk scores, threat indicators, classification), plus a per-item error field for any domain that failed. A top-level count of failures is also returned.

## 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/domain-risk-report-bulk-76c6b67b/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)
