# Strale Sitemap Parser

> Strale Sitemap Parser is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15).

Fetches and parses a website's XML sitemap, returning URL count, top path segments, lastmod dates, and sample URLs

## Facts

- Endpoint: GET https://api.strale.io/x402/sitemap-parse
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-83ab7060
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UBrUWJeIrBHi6MprjWFzf

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-strale-io-83ab7060
```

Example prompt: Can you fetch and parse the sitemap for https://example.com and tell me how many URLs it has, what the top path segments are, when pages were last modified, and give me a few sample URLs?

## When to prefer this

Use this endpoint when you need a quick structural overview of a website's sitemap — URL counts, path patterns, freshness signals — without crawling the full site. Ideal for SEO audits, content discovery, competitive research, or pre-crawl planning. Prefer over manual sitemap fetching when you need parsed, structured output rather than raw XML.

## Known failure modes

- Sitemap not found (no sitemap.xml at standard location)
- URL is not accessible or returns non-200 status
- Malformed or non-standard XML sitemap format
- Sitemap index files pointing to sub-sitemaps may not be fully resolved
- Rate limiting or timeouts on large sitemaps

## How this service works

Fetch and parse a website's XML sitemap. Returns URL count, top path segments, lastmod dates, and sample URLs.

## Output

Returns the total URL count found in the sitemap, the most common top-level path segments, lastmod dates for pages, and a sample set of URLs from the sitemap

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": {
  "type": "string"
 },
 "total_urls": {
  "type": "integer"
 },
 "sample_urls": {
  "type": "array"
 },
 "top_path_segments": {
  "type": "array"
 }
}
```

## More

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