# Santos Website Link Mapper API

> Santos Website Link Mapper API is a paid API for AI agents from santosautomation.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Crawls a public webpage and returns a categorized list of all links found, classified by type (internal, external, social, docs, API, etc.) with topic tags and summary counts.

## Facts

- Endpoint: GET https://santosautomation.com/v1/links
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/santos-website-link-mapper-api-ec8f1516
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tYucv53yoLsBk2Lo5zLAW

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 santos-website-link-mapper-api-ec8f1516
```

Example prompt: Can you crawl https://example.com and give me a full structured breakdown of all the links on that page — categorized by type like internal, external, docs, social, and API?

## When to prefer this

Choose this endpoint when you need a fast, structured extraction of all hyperlinks from a single public webpage with automatic categorization by type and topic. It is ideal for agents performing website intelligence, link audits, SEO analysis, or discovery of API/docs/social resources on a given page. Prefer alternatives if you need full-page content, screenshot capture, or deep multi-page crawling.

## Known failure modes

- Invalid or unreachable URL returns an error or non-200 HTTP status
- Private or authentication-gated pages return incomplete link data
- Redirected URLs are followed and final_url reflects the resolved destination
- JavaScript-rendered pages may return incomplete links if the crawler does not execute JS
- Rate limiting or firewall blocks may return an error response
- Malformed URL input causes validation failure

## How this service works

Audit any website for AI Agent Readiness, MCP, llms.txt, OpenAPI, SEO, accessibility and security. Structured JSON with evidence and prioritized fixes.

## Output

Returns a JSON object containing the page's final URL, HTTP status code, a full array of links each with URL, kind (internal/external), anchor text, and topic tags, plus a summary count object broken down by category (api, docs, feed, social, careers, pricing, external, internal), total link count, and schema version.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public HTTP or HTTPS URL of an HTML page to map."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "links": [
   {
    "url": "https://example.com/docs",
    "kind": "internal",
    "text": "Docs",
    "topics": [
     "docs"
    ]
   },
   {
    "url": "https://github.com/example",
    "kind": "external",
    "text": "GitHub",
    "topics": [
     "social"
    ]
   }
  ],
  "counts": {
   "api": 0,
   "docs": 1,
   "feed": 0,
   "social": 1,
   "careers": 0,
   "pricing": 0,
   "external": 1,
   "internal": 1
  },
  "final_url": "https://example.com",
  "http_status": 200,
  "total_links": 2,
  "schema_version": "1.0.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/santos-website-link-mapper-api-ec8f1516/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from santosautomation.com](https://www.zero.xyz/host/santosautomation.com/llms.txt)
