# SEO Quick Audit Bulk

> SEO Quick Audit 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).

Runs concurrent on-page SEO quick audits on up to 20 URLs in one call, returning a 0–100 score per URL in input order with per-item error details.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/seo-audit
- 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/seo-quick-audit-bulk-94f87376
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Reu4BErLc1BVfjP-uXiUf

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 seo-quick-audit-bulk-94f87376
```

Example prompt: Can you run an SEO audit on these 15 URLs from our blog and give me the 0-to-100 score for each one?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs that all need SEO audits in one operation, avoiding the latency and overhead of making sequential single-URL calls. It processes items concurrently and preserves input order, making it ideal for agent workflows that aggregate or compare SEO scores across multiple pages. Prefer the single-URL endpoint (/site/seo-audit) when auditing only one page.

## Known failure modes

- Exceeding 20 URLs in a single call results in a batch rejection or truncation
- Individual URLs that are unreachable or malformed return a per-item error rather than a score
- Network timeouts on specific URLs populate the error field for that item while others succeed
- Missing or malformed 'input' parameter causes the entire request to fail
- Invalid URL format in the list returns a per-item error with a null score

## How this service works

Bulk seo quick audit: up to 20 urls 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/seo-audit endpoint (On-page SEO quick audit for a single URL with a 0-100 score). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-URL audit results matching the input order. Each item contains an on-page SEO score from 0 to 100 (same detail as the single-URL /site/seo-audit endpoint), a per-item error field indicating any failure for that URL, and an overall count of failed items across 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/seo-quick-audit-bulk-94f87376/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)
