# Halowerk Site Inventory

> Halowerk Site Inventory is a paid API for AI agents from tools.halowerk.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Crawls a website and returns a structured inventory of its pages

## Facts

- Endpoint: POST https://tools.halowerk.com/v1/site/inventory
- 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/halowerk-site-inventory-054efc64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7alT9dErKChXKoigh3lW1

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 halowerk-site-inventory-054efc64 -d '<json body>'
```

Example prompt: Can you crawl example.com and give me a full inventory of all the pages on that website?

## When to prefer this

Choose this endpoint when you need a live, up-to-date inventory of pages on any website without relying on a pre-built sitemap or search index. Prefer it over sitemap.xml parsing when the site does not maintain a sitemap, or when you need to verify what is actually publicly accessible rather than what is declared.

## Known failure modes

- Target website blocks crawling (403 or bot protection) — returns error
- Invalid or unreachable URL — returns connection error
- Very large site may be paginated or truncated
- Password-protected or login-required pages will not be inventoried
- Rate limiting by the target server may cause incomplete results

## How this service works

Seiten-Inventar einer Website

## Output

A structured list of pages found on the target website, including their URLs and potentially metadata such as page titles, hierarchy, or other inventory details discovered during the crawl.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "source": {
   "enum": [
    "sitemap",
    "crawl",
    "auto"
   ],
   "type": "string",
   "default": "auto",
   "description": "auto fragt erst robots.txt nach einer Sitemap, dann /sitemap.xml und /sitemap_index.xml, dann Feeds, und crawlt nur, wenn nichts davon vorhanden ist."
  },
  "target": {
   "type": "string",
   "description": "Domain oder Sitemap-URL, z. B. https://example.com oder https://example.com/sitemap.xml"
  },
  "max_pages": {
   "type": "integer",
   "default": 25,
   "maximum": 200,
   "minimum": 1,
   "description": "Obergrenze der Seiten. Bestimmt den Preis im 402-Angebot."
  },
  "result_token": {
   "type": "string",
   "description": "Nur fuer die zweite Runde nach einer Nachquotierung: holt das bereits fertige Ergebnis ab, ohne erneut zu crawlen."
  },
  "respect_robots": {
   "type": "boolean",
   "default": true,
   "description": "Fest auf true. Ein Aufruf mit false wird abgewiesen."
  },
  "include_subdomains": {
   "type": "boolean",
   "default": false,
   "description": "Subdomains derselben registrierbaren Domain mit aufnehmen"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-site-inventory-054efc64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tools.halowerk.com](https://www.zero.xyz/host/tools.halowerk.com/llms.txt)
