# Internal/External Links Bulk Analyzer

> Internal/External Links Bulk Analyzer 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).

Batch-analyzes up to 20 URLs concurrently to split each page's links into internal vs. external counts, returning ordered results with per-item errors.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/link-split
- 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/internal-external-links-bulk-analyzer-1f82ea92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OPmJPVrtWOKLosb1vzsG5

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 internal-external-links-bulk-analyzer-1f82ea92
```

Example prompt: Can you analyze the internal vs. external link split for these 15 pages on my site all at once: [list of URLs]? I want to know how many internal and external links each page has, and flag any errors.

## When to prefer this

Choose this endpoint when you need to analyze link distribution (internal vs. external) for multiple pages in a single call rather than making separate requests per URL. It is ideal for SEO audits, content quality pipelines, or agent workflows that hold a list of URLs and need concurrent processing with ordered, error-tolerant results. Prefer the single /site/link-split endpoint if you only need one URL analyzed.

## Known failure modes

- URL is unreachable or returns a non-200 status — per-item error field is populated
- URL contains no parseable links — zero counts returned with possible error
- Input list exceeds 20 URLs — request may be rejected or truncated
- Invalid or malformed URLs — per-item error reported
- Rate limiting or network timeout on concurrent fetches — some items may fail

## How this service works

Bulk internal external links: 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/link-split endpoint (Internal vs external link split for a page). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL list, where each item contains the internal link count, external link count, and link split data for that page — along with a per-item error field if fetching or parsing failed — plus a top-level count of total failures 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/internal-external-links-bulk-analyzer-1f82ea92/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)
