# Heurist Mesh: Firecrawl Scrape URL

> Heurist Mesh: Firecrawl Scrape URL is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Scrapes the full contents of a given URL and returns clean, summarized, LLM-ready web content.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/FirecrawlSearchDigestAgent/firecrawl_scrape_url
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-firecrawl-scrape-url-f225ca5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Px_AW4499kuo8STS6enFn

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 heurist-mesh-firecrawl-scrape-url-f225ca5a -d '<json body>'
```

Example prompt: Scrape the full contents of https://example.com/article and give me a clean, readable summary of what's on the page.

## When to prefer this

Choose this endpoint when you need to fetch, clean, and summarize the content of a specific known URL for downstream LLM processing. It is ideal for single-page content extraction where you already have the target URL, as opposed to search-first workflows. Prefer this over raw HTTP fetching when you need LLM-ready cleaned text rather than raw HTML.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — scrape fails with an error
- Page is behind a hard login wall or CAPTCHA — content cannot be extracted
- URL points to a binary file (PDF, image) instead of an HTML page — may return empty or partial content
- Rate limiting or bot-blocking by the target website — returns an access-denied or empty response
- Malformed or invalid URL input — returns a validation error

## How this service works

Scrape full contents from a specific URL. Returns clean and summarized web contents.

## Output

Returns the full scraped text of the target webpage in a cleaned, structured, LLM-readable format along with a summarized version of the content, stripping away ads, navigation, and boilerplate HTML.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "The URL to scrape and analyze"
      },
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "wait_time": {
       "type": "integer",
       "default": 7500,
       "description": "Time to wait for page to load in milliseconds"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-firecrawl-scrape-url-f225ca5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
