# docs-site-map

> docs-site-map is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Maps a documentation website surface by extracting docs links, sitemap signals, robots rules, and feed hints from a given URL.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/docs-site-map
- 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/api-delx-ai-f9a974b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Kb0RbZNOQaI26NblfVb0

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 api-delx-ai-f9a974b5 -d '<json body>'
```

Example prompt: Can you map out the docs surface for https://docs.example.com — I want to see all the docs links, sitemap signals, robots rules, and any feed hints it exposes?

## When to prefer this

Use this endpoint when you need to systematically understand the structure and surface area of a documentation website — especially when you need docs links, sitemap discovery, robots compliance signals, and feed hints all in one call. Prefer this over generic link extraction when the target is specifically a documentation site and you want documentation-aware signals rather than generic page links.

## Known failure modes

- URL is not a documentation site or has no docs signals — returns empty or sparse result
- Site blocks crawlers via robots.txt — robots rules returned but links may be incomplete
- Invalid or unreachable URL — returns error with HTTP status
- No sitemap present — sitemap signals will be absent from response
- Rate limiting or timeout on the target site — partial or failed extraction

## How this service works

Map a docs surface with docs links, sitemap signals, robots rules, and feed hints.

## Output

Returns a structured map of the documentation site including discovered docs links, sitemap signals, robots.txt rules, and feed hints that reveal how the documentation surface is organized and what content is accessible.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "timeout": {
   "type": "integer",
   "maximum": 15,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "title": "Docs",
   "has_feed": false,
   "has_sitemap": true,
   "docs_link_count": 4
  },
  "tool_name": "util_docs_site_map"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-delx-ai-f9a974b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
