# ScrapFly Feed Crawler

> ScrapFly Feed Crawler is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Crawls and extracts feed content from a given URL, returning structured data suitable for AI agent consumption

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/feed
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-feed-crawler-367ee6e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dbSzbed6fgw1boq6tpj4m

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-feed-crawler-367ee6e4 -d '<json body>'
```

Example prompt: Can you crawl the feed at https://techcrunch.com/feed/ and pull back the structured content for me?

## When to prefer this

Use this endpoint when you need to extract and parse feed content (RSS, Atom, or similar) from a URL programmatically, especially when standard HTTP fetching is blocked or insufficient. Prefer this over generic scrapers when the target is specifically a feed endpoint or structured syndication URL.

## Known failure modes

- Invalid or unreachable URL returns success: false
- Paywalled or bot-protected pages may return empty data
- Malformed URL input causes request validation error
- Rate limiting or payment failure via x402 may block the request
- Non-feed URLs may return unexpected or unstructured data

## 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 and a 'data' object containing the extracted feed content from the crawled URL

## 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-feed-crawler-367ee6e4/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)
