# form-detect-bulk

> form-detect-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).

Detects and extracts HTML forms from up to 20 URLs in a single concurrent batch call, returning per-item results in input order with error fields and a failure count.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/forms
- 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/form-detect-bulk-2e9da5f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eoUVnEhW57l-qViIfOHJ3

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 form-detect-bulk-2e9da5f4
```

Example prompt: Scan these 15 URLs for HTML forms all at once and tell me which pages have forms, what fields they contain, and flag any that failed: [list of URLs].

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs that all need form detection and you want to minimize round-trips and latency. It processes all items concurrently and returns results in input order, making it far more efficient than calling the single /site/forms endpoint repeatedly. Prefer the single endpoint only when you have exactly one URL to check.

## Known failure modes

- Individual URL unreachable or times out — error field set for that item, others still returned
- More than 20 URLs provided — request likely rejected or truncated
- URL returns non-HTML content — form detection returns empty result or error for that item
- Payment not completed — 402 response, no results returned
- Malformed URL in input list — per-item error field populated for that entry

## How this service works

Bulk form detect: 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/forms endpoint (Form detection on a page). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-item results matching the input URL order, each containing the same form detection data as the single /site/forms endpoint (detected forms, field metadata, form attributes), plus a per-item error field indicating any failure, and an overall count of how many items failed 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/form-detect-bulk-2e9da5f4/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)
