# Site Navigation Extractor

> Site Navigation Extractor is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts and deduplicates navigation links from a webpage's nav elements, header menus, and ARIA menu/nav roles, grouped as internal or external with primary section inference.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page/nav
- Price: $0.01/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-extractor-014ac72e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_90pf12jAAryhQrCTBfVm4

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-extractor-014ac72e
```

Example prompt: Can you extract the full navigation structure of https://example.com — I want to see all the nav links grouped into internal and external, plus a guess at the primary sections of the site?

## When to prefer this

Choose this endpoint when you need a fast, structured snapshot of a website's navigation architecture without parsing raw HTML yourself. It is ideal for site audits, competitive research, onboarding agents to a new domain, or any workflow where understanding a site's top-level structure is a prerequisite. Prefer it over a full page scrape when you only care about nav/menu links, not body content.

## Known failure modes

- Page has no nav/header elements — returns empty or minimal link set
- Target URL is unreachable or returns non-200 status — call fails
- JavaScript-rendered navigation not captured if page requires JS execution
- Rate limiting or bot protection on target site blocks fetch
- Ambiguous or missing ARIA roles cause links to be missed

## How this service works

Site navigation extraction: links inside <nav>, header menus and elements with menu/nav roles, deduplicated with their text, grouped as internal or external, plus a guess at the primary sections. Understand a site's structure in one call. $0.01 per page.

## Output

A JSON object containing deduplicated navigation links found within nav elements, header menus, and elements with menu/nav ARIA roles, grouped into internal and external categories, with the link text for each item and an inferred list of the site's primary sections.

## 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-extractor-014ac72e/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)
