# Internal vs External Link Split

> Internal vs External Link Split 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).

Analyzes a webpage's link profile, returning counts and lists of internal (same-site) and external (outbound) links, anchor text, nofollow/sponsored/ugc attribution, and top external domains.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/link-split
- 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/internal-vs-external-link-split-4d924454
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e9hhFcBlBm3AfxYQUQmxx

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-vs-external-link-split-4d924454
```

Example prompt: Can you analyze the link profile of https://example.com/blog/my-post and tell me how many internal vs external links it has, which external domains appear most, and whether any links are nofollow or sponsored?

## When to prefer this

Choose this endpoint when you need a structured breakdown of a single page's link profile, including both internal navigation links and outbound external links, with anchor text and link-type attribution (nofollow, sponsored, ugc). Ideal for SEO audits, competitor link research, or verifying site navigation. Prefer this over a full crawler when you only need link data for one specific page rather than a whole site.

## Known failure modes

- Page URL is inaccessible or returns non-200 HTTP status — endpoint may return an error or empty results
- Page has no links — returns zero counts with empty lists
- JavaScript-rendered links may not be detected if the page requires client-side execution
- Pages with more than 100 internal or external links will be truncated to 100 each
- Invalid or malformed URL input may result in an error response

## How this service works

Internal vs external link split for a page: counts and lists (up to 100 each) of same-site and outbound links with anchor text, nofollow/sponsored/ugc counts, and the top external domains. Link-profile and navigation analysis. $0.01 per page.

## Output

Returns counts of internal and external links found on the page, lists of up to 100 internal links and 100 external links each with anchor text, counts of nofollow/sponsored/ugc-attributed links, and a ranked list of the top external domains linked to from the page.

## 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-vs-external-link-split-4d924454/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)
