# SEO Audit Bulk

> SEO 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 SEO audits on up to 20 URLs in a single call, returning a 0-100 score and ranked issues list per URL in input order

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/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-audit-bulk-08f5ce44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MViC90yQRp-Sg_ED8i9wq

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-audit-bulk-08f5ce44
```

Example prompt: Can you run a full SEO audit on all of these pages at once and give me a score and list of issues for each one: https://example.com/page1, https://example.com/page2, https://example.com/page3?

## When to prefer this

Choose this endpoint when you have a list of 2-20 URLs that all need SEO auditing in a single operation, especially for batch enrichment workflows, agency reporting pipelines, or pre-launch audits where you want results back quickly in a predictable order. Prefer this over calling the single /seo-audit endpoint repeatedly when concurrency and reduced round-trips matter. Use the single endpoint instead when auditing only one page.

## Known failure modes

- URL is unreachable or returns non-200 status — per-item error field is populated
- More than 20 URLs submitted — request rejected or truncated
- Malformed URL in input — per-item error returned for that item
- Timeout on a slow-loading page — per-item error with timeout indicator
- Payment not completed or insufficient — 402 response, no results returned

## How this service works

Bulk seo 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 /seo-audit endpoint (SEO audit of a web page with a 0-100 score and a ranked issues list). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of SEO audit results matching the input URL order. Each item contains a 0-100 SEO score, a ranked list of specific SEO issues found on the page, and a per-item error field if the URL could not be audited. A top-level failure count is also returned indicating how many URLs encountered errors.

## 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-audit-bulk-08f5ce44/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)
