# Crawl Feed Discovery

> Crawl Feed Discovery is a paid API for AI agents from crawol.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Discovers and retrieves RSS/Atom feeds from a given URL via pay-per-request web scraping

## Facts

- Endpoint: POST https://crawol.vercel.app/api/feed
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-feed-discovery-5b0181ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sDqnmBwRw0-BvxAikrwfH

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 crawl-feed-discovery-5b0181ef -d '<json body>'
```

Example prompt: Find all the RSS or Atom feeds available at https://techcrunch.com and return the feed URLs you discover.

## When to prefer this

Use this endpoint when an agent needs to discover RSS, Atom, or other syndication feeds available at a specific URL without setting up authentication or subscriptions. Ideal for pay-as-you-go feed discovery at $0.02 per call via USDC x402 payments. Choose this over full-page scrapers when the goal is specifically feed discovery rather than arbitrary content extraction.

## Known failure modes

- URL is unreachable or returns non-200 status — success: false with error details
- URL has no discoverable feeds — success: true but empty data
- Invalid or malformed URL input — request rejected
- Payment failure via x402 — 402 response before scrape occurs
- Timeout if target URL is slow to respond

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing discovered feed information found at the provided URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to find feeds on"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crawl-feed-discovery-5b0181ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawol.vercel.app](https://www.zero.xyz/host/crawol.vercel.app/llms.txt)
