# ScrapFly Crawl Feed

> ScrapFly Crawl Feed is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Crawls a given URL and returns its feed content as structured data

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/feed
- Price: $0.06/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-feed-fdfb8b28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_79MLvn3iJ77XjKxvXBdyV

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-feed-fdfb8b28 -d '<json body>'
```

Example prompt: Crawl the feed at https://techcrunch.com/feed and give me the structured content from it.

## When to prefer this

Use this endpoint when you need to fetch and parse feed content (RSS, Atom, or similar) from a specific URL and get structured data back. Prefer this over generic HTTP fetchers when you need ScrapFly's managed crawling infrastructure to handle anti-bot measures or feed normalization.

## Known failure modes

- Invalid or unreachable URL returns success: false
- URL points to non-feed content yielding empty or malformed data
- Network timeout or blocked access returns error response
- Missing required URL field causes request rejection
- URL behind authentication or paywalls may return incomplete content

## 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 crawled feed content from the provided 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-crawl-feed-fdfb8b28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
