# page-links-status

> page-links-status 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).

Checks the HTTP status of the first 20 outbound links on a given page, returning anchor text, final status codes, redirect flags, and ok/broken/redirected summary totals.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page/links-status
- 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/page-links-status-d03cb5c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nArkO2ANhGSKxbPJbeDiT

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 page-links-status-d03cb5c6
```

Example prompt: Can you check the outbound links on https://myblog.com/my-article and tell me which ones are broken or redirecting?

## When to prefer this

Use this endpoint when you need a quick, lightweight audit of outbound link health on a single page — ideal for editors doing pre-publish QA, or automated agents monitoring content pages. It is not a full site crawler and is limited to the first 20 links, so prefer a dedicated crawl tool for full-site audits.

## Known failure modes

- Target page is unreachable or returns a non-200 response — endpoint may return an error or empty link list
- Page has no outbound links — returns empty link array with zeroed totals
- JavaScript-rendered links may not be detected if the page requires JS execution
- Timeouts on slow-loading target pages
- Only the first 20 links are checked; links beyond that are ignored

## How this service works

Status of the first 20 links on a page: each link's anchor text, final status code and whether it redirected, with ok/broken/redirected totals. Quick outbound-link health for editors and QA. $0.01 per page.

## Output

Returns a list of up to 20 outbound links found on the page, each with its anchor text, the final HTTP status code, and a boolean indicating whether it redirected. Also provides aggregate totals: count of ok links, broken links, and redirected links.

## 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/page-links-status-d03cb5c6/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)
