# footer-links-extract-bulk

> footer-links-extract-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).

Extracts and classifies footer links from up to 20 URLs in a single concurrent batch call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page/footer
- 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/footer-links-extract-bulk-1b84ea48
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sSAZ87M-wsVNEfy-GX0ZA

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 footer-links-extract-bulk-1b84ea48
```

Example prompt: Can you extract and classify all the footer links from these 15 websites at once: [list of URLs]? I need them processed in bulk with results in the same order I provided them.

## When to prefer this

Choose this endpoint when you have a list of up to 20 URLs and need footer link extraction for all of them in a single API call. It is more efficient than calling the single-URL /page/footer endpoint repeatedly, as results are processed concurrently and returned in input order. Prefer this over the single endpoint whenever you have 2 or more URLs to process and want consolidated error handling with a failure count.

## Known failure modes

- Individual URL unreachable returns a per-item error rather than failing the whole batch
- More than 20 URLs submitted may be rejected or truncated
- Pages with no detectable footer return an empty link list
- Dynamically rendered footers (JavaScript-only) may not be captured
- Rate limiting or payment failure causes the entire batch to fail
- Malformed URLs in input produce per-item errors

## How this service works

Bulk footer links extract: 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 /page/footer endpoint (Footer link extraction with classification). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results, one per input URL, each containing the same footer link data as the single-URL endpoint (extracted footer links with classification) plus a per-item error field. A summary count of failures across the batch is also returned. Results preserve input order even when processed concurrently.

## 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/footer-links-extract-bulk-1b84ea48/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)
