# ScrapFly Crawl Rate Endpoint

> ScrapFly Crawl Rate 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).

Converts a value from one unit or currency to another using a 'from' and 'to' parameter pair

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/rate
- 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-rate-endpoint-c0c26821
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v6mc61qXNcor8b3AZ0BzV

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-rate-endpoint-c0c26821 -d '<json body>'
```

Example prompt: Can you look up the conversion rate from USD to EUR using the ScrapFly rate API?

## When to prefer this

Use this endpoint when you need a quick programmatic rate or unit conversion between two known identifiers ('from' and 'to'), especially within the ScrapFly x402 pay-per-request ecosystem on Base chain. Prefer it when you want a lightweight conversion lookup without building your own conversion logic.

## Known failure modes

- Missing required 'to' or 'from' fields returns an error
- Invalid or unrecognized unit/currency codes may return success:false
- Network or upstream service errors may result in failed responses
- Incorrect USDC payment or x402 header issues cause payment rejection

## 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 conversion or rate result for the specified from/to pair.

## Request schema (JSON Schema)

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

## 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-rate-endpoint-c0c26821/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)
