# Vaaya Firecrawl Map

> Vaaya Firecrawl Map is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14, last successful call 2026-08-13).

Maps all URLs on a website using Firecrawl, returning a structured list of pages/links found at a given domain

## Facts

- Endpoint: POST https://vaaya.ai/api/run/firecrawl/map
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-13
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaaya-firecrawl-map-a3b799f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8vpT4lsFGeOHVt0W0NpYW

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 vaaya-firecrawl-map-a3b799f8 -d '<json body>'
```

Example prompt: Map all the URLs on example.com so I can see every page that exists on that site.

## When to prefer this

Use this endpoint when you need a complete inventory of all pages on a website before scraping, auditing, or analyzing site content. It is specifically powered by Firecrawl's map functionality via Vaaya's x402 pay-per-call infrastructure, requiring no API key or account setup — ideal for agent workflows that need one-shot website URL discovery without managing credentials.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Rate limiting from target website may result in incomplete map
- Very large sites may return truncated results
- Private or password-protected pages will not be discovered
- Incorrect URL format may cause a 400-level error

## How this service works

Firecrawl — Map all URLs on a website without scraping content.

## Output

A structured list of all URLs discovered on the target website, representing the full map of crawlable pages and links found at that domain.

## 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": {
     "type": "object",
     "$schema": "http://json-schema.org/draft-07/schema#",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "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/vaaya-firecrawl-map-a3b799f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
