# site-navigation-extract-bulk

> site-navigation-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 navigation structure from up to 20 URLs in a single concurrent batch call, returning per-item nav results in input order with error tracking.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/page/nav
- 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/site-navigation-extract-bulk-1844093e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YcANbRVluW9UsYqEP2Wnp

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 site-navigation-extract-bulk-1844093e
```

Example prompt: Can you extract the navigation structure from all 15 pages on my list at once and tell me which ones failed? Here are the URLs: [list of up to 20 URLs].

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need navigation data from all of them — it processes them concurrently and returns results in input order, making it far more efficient than calling the single /page/nav endpoint repeatedly. Ideal for bulk audits, competitive analysis, CMS migrations, or any agent workflow that accumulates a set of URLs before processing.

## Known failure modes

- Individual URL unreachable — per-item error field populated, other results still returned
- More than 20 URLs submitted — request rejected
- Malformed URL in list — per-item error for that item
- Target page blocks scraping — per-item error returned
- Payment not completed — 402 response, no results returned

## How this service works

Bulk site navigation 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/nav endpoint (Site navigation extraction). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-item results matching the input URL list, each containing the extracted site navigation structure (links, labels, hierarchy) identical to the single /page/nav endpoint response, plus a per-item error field for failures and a total failure count 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/site-navigation-extract-bulk-1844093e/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)
