# ScrapFly Crawl Metadata API

> ScrapFly Crawl Metadata API is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches crawl metadata for a given URL, returning structured information about the page via ScrapFly's web scraping infrastructure

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-metadata-api-f930125a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L4IBD_NwwAy_Vcr7opU_s

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-api-f930125a -d '<json body>'
```

Example prompt: Can you crawl https://example.com/product-page and give me back the metadata ScrapFly pulls from it?

## When to prefer this

Use this endpoint when you need to retrieve crawl metadata for a specific URL via a pay-per-request scraping service on the Base chain. Prefer this over general scraping alternatives when operating in an x402-enabled agent workflow that handles micropayments automatically, or when you need ScrapFly's anti-bot infrastructure for difficult-to-scrape pages.

## Known failure modes

- Invalid or malformed URL returns success: false
- URL is unreachable or returns a non-200 status, resulting in a failed crawl response
- Rate limiting or payment failure via x402 protocol causes request rejection
- Page requires JavaScript rendering that isn't handled, returning incomplete metadata
- Bot detection blocks ScrapFly from accessing the target URL

## 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 crawl metadata about the submitted URL, including page-level information extracted by ScrapFly's scraping infrastructure.

## 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-api-f930125a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
