# Cravvol Feed Finder

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

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

## Facts

- Endpoint: POST https://cravvol.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/cravvol-feed-finder-dba61b9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XjUcpoObxEKCZItaGRh6C

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 cravvol-feed-finder-dba61b9b -d '<json body>'
```

Example prompt: Can you find all the RSS or Atom feeds available on https://techcrunch.com so I can subscribe to their latest content?

## When to prefer this

Use this endpoint when you need to discover RSS or Atom feed URLs from a webpage without setting up auth or subscriptions — ideal for AI agents that need pay-as-you-go feed discovery at $0.02 USDC per call via x402.

## Known failure modes

- URL is unreachable or returns a non-2xx status — success: false
- URL has no discoverable feeds — data may be empty
- Malformed or non-HTTP URL provided — validation error
- Payment failure via x402 — request not processed
- Timeout if target site 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 URLs and associated metadata 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/cravvol-feed-finder-dba61b9b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cravvol.vercel.app](https://www.zero.xyz/host/cravvol.vercel.app/llms.txt)
