# ScrapFly Claim Verification API

> ScrapFly Claim Verification API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Verifies a factual claim by checking it against multiple sources and returning a success/data result

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/verify
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-claim-verification-api-5b98e6ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DXF9AuDMVYrGkxRiBydhi

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-claim-verification-api-5b98e6ae -d '<json body>'
```

Example prompt: Can you fact-check this claim for me using 5 sources: 'The Eiffel Tower is the tallest structure in France'?

## When to prefer this

Choose this endpoint when you need to programmatically verify a specific factual claim against multiple web sources, especially within an automated agent pipeline that handles x402 micropayments on Base chain. It is well-suited for fact-checking workflows where you want a structured true/false result with supporting data, rather than a raw web search or scrape.

## Known failure modes

- Empty or malformed claim string returns failure
- Invalid sources count (non-number) causes request rejection
- Network timeout if sources take too long to retrieve
- Ambiguous or too-short claim may return inconclusive result
- Rate limiting or payment failure via x402 protocol

## 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 boolean 'success' field indicating whether the verification completed, plus a 'data' object containing the verification findings, source analysis, and determination about the claim's accuracy.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "claim"
 ],
 "properties": {
  "claim": {
   "type": "string",
   "description": "claim"
  },
  "sources": {
   "type": "number",
   "description": "sources"
  }
 }
}
```

## 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-claim-verification-api-5b98e6ae/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)
