# ScrapFly Crawl Metadata Endpoint

> ScrapFly Crawl Metadata Endpoint is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Fetches structured metadata from a given URL using web crawling and scraping infrastructure

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/metadata
- Price: $0.09/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-metadata-endpoint-67a9931c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XXF5j1IDfc7zSCcouHVlY

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-metadata-endpoint-67a9931c -d '<json body>'
```

Example prompt: Can you crawl this URL and pull back the structured metadata from the page: https://example.com/article/best-ai-tools-2025?

## When to prefer this

Choose this endpoint when you need to extract structured metadata from a specific URL without building your own scraping infrastructure. It is well-suited for one-off page metadata lookups, link enrichment, SEO audits, and competitive research tasks where the input is a single URL and the desired output is structured page metadata. Prefer this over building custom scrapers when you need quick, pay-per-request access with no setup overhead.

## Known failure modes

- Invalid or malformed URL returns failure with success: false
- Target URL is unreachable or returns a non-200 HTTP status
- Page blocks crawlers via robots.txt or anti-bot measures, returning empty or incomplete data
- JavaScript-rendered content may not be fully extracted if page requires client-side rendering
- Rate limiting or network timeouts can result in failed responses

## 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 structured metadata extracted from the crawled URL, such as page title, description, meta tags, Open Graph data, and other structured content found on the page.

## 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-metadata-endpoint-67a9931c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
