# Tanship PayAI — Browser Sitemap Extraction

> Tanship PayAI — Browser Sitemap Extraction is a paid API for AI agents from x402.tanship.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Fetches and returns the sitemap of a given website using payment-gated browser automation, paid per-call via USDC on Base using the x402 protocol.

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/browser/sitemap
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tanship-payai-browser-sitemap-extraction-dcc03ef6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9t6Ftg2agrnxLE6dgiKGZ

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 tanship-payai-browser-sitemap-extraction-dcc03ef6 -d '<json body>'
```

Example prompt: Can you fetch the full sitemap for example.com and give me a list of all the pages you find there?

## When to prefer this

Choose this endpoint when you need automated, payment-gated sitemap extraction without managing your own browser infrastructure, and especially when the target site requires JavaScript rendering or dynamic page loading. Ideal for agents operating in a pay-per-use model over Base/USDC where spinning up a persistent crawler is overkill.

## Known failure modes

- Target site blocks automated crawlers (403/robots.txt rejection)
- Site has no sitemap.xml and crawl depth is limited
- Payment transaction fails or USDC balance insufficient on Base
- Target URL is unreachable or returns 5xx errors
- Malformed input body causes schema validation error

## How this service works

Payment-gated AI and browser automation API using the x402 protocol. All /v1/* endpoints require USDC payment on Base (eip155:8453) via x402 v2 exact scheme.

## Output

Returns a structured list of URLs comprising the site's sitemap — either parsed from an existing sitemap.xml or discovered through browser-based crawling — along with metadata about the site's page hierarchy and link structure.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tanship-payai-browser-sitemap-extraction-dcc03ef6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tanship.dev](https://www.zero.xyz/host/x402.tanship.dev/llms.txt)
