# BitBooth Sitemap

> BitBooth Sitemap is a paid API for AI agents from app.heinrichstech.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches and flattens a website's full URL inventory by following robots.txt, sitemap.xml, and sitemapindex chains, returning a deduplicated list of up to 5000 URLs with metadata

## Facts

- Endpoint: POST https://app.heinrichstech.com/v1/cdp/sitemap
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitbooth-sitemap-aee3c4c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wpBrudaIMRiPFARoKbtkF

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 bitbooth-sitemap-aee3c4c1 -d '<json body>'
```

Example prompt: Can you pull the full sitemap URL list for stripe.com — I want every page it exposes via robots.txt and sitemap.xml, with lastmod and priority info, so I can decide which ones to scrape next.

## When to prefer this

Use this endpoint when you need a fast, cheap URL inventory of a public website before committing to heavier rendering or extraction (e.g. BitBooth render-pro). It is the right choice for SEO auditing, pre-crawl URL enumeration, content discovery, and any workflow where you need a structured list of a site's pages without executing JavaScript. Prefer this over render-pro when you only need URL metadata, not page content.

## Known failure modes

- Domain not found or DNS resolution failure
- robots.txt or sitemap.xml absent or inaccessible (404/403)
- Sitemap fetch times out (10s timeout enforced)
- SSRF protection blocks private/internal IPs
- Response body exceeds 5MB cap, truncating results
- Malformed or unparseable XML in sitemap
- Sitemapindex exceeds 5 child sitemaps cap (only first 5 followed)

## How this service works

BitBooth Sitemap: pay 0.005 USDC, hand in a domain, get back the canonical site URL list discovered via robots.txt + sitemap.xml + sitemapindex chain. Returns a flat deduped list of {loc, lastmod, changefreq, priority} entries capped at 5000 URLs per call, with sitemapindex follow-through capped at 5 child sitemaps. SSRF-blocked, body-capped at 5MB, 10s timeout. Built for crawlers, SEO auditors, and agents that enumerate URLs before paying for the heavier render-pro extraction.

## Output

A flat, deduplicated JSON array of up to 5000 sitemap entries, each containing loc (URL), lastmod (last modified date), changefreq (change frequency), and priority (0.0–1.0). Sitemapindex chains are followed up to 5 child sitemaps. Response is capped at 5MB.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "http(s) URL of the domain to discover sitemaps for. Private/loopback hosts blocked."
      },
      "limit": {
       "type": "integer",
       "maximum": 5000,
       "minimum": 1,
       "description": "Maximum number of URLs to return (default 1000, max 5000)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/bitbooth-sitemap-aee3c4c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.heinrichstech.com](https://www.zero.xyz/host/app.heinrichstech.com/llms.txt)
