# ScrapFly Crawl Sitemap

> ScrapFly Crawl Sitemap is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Crawls and extracts the sitemap of a given URL, returning structured site structure data

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/sitemap
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-sitemap-686a4d27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dptNLtdTefDQrdTWuQPII

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 scrapfly-crawl-sitemap-686a4d27 -d '<json body>'
```

Example prompt: Can you crawl the sitemap of https://example.com and give me a list of all the pages on that site?

## When to prefer this

Use this endpoint when you need to discover all pages on a website, understand site structure, or gather URLs for further scraping. Prefer this over manual sitemap parsing when you need a managed, pay-per-request solution that handles crawling complexity. Ideal for SEO audits, content discovery, and building link graphs.

## Known failure modes

- URL is malformed or unreachable — success: false returned
- Target site blocks crawlers — empty or partial sitemap returned
- Sitemap does not exist at the given URL — data may be empty
- Payment failure via x402 on Base chain — request not processed
- Timeout if target site is slow to respond

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the sitemap structure extracted from the given URL, including discovered page URLs and site hierarchy information.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-crawl-sitemap-686a4d27/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
