# Crawl Headlines API

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

Fetches news headlines for a given topic, paid per request in USDC via x402 protocol

## Facts

- Endpoint: POST https://cr4vvol.vercel.app/api/headlines
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crawl-headlines-api-23460738
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Glc_cGG2VvAK5rXiQNe1

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-headlines-api-23460738 -d '<json body>'
```

Example prompt: Fetch me 10 headlines about artificial intelligence using the Crawl headlines service.

## When to prefer this

Use this endpoint when an AI agent needs to quickly surface current news headlines on a specific topic without requiring API keys or subscriptions — just a per-request USDC micropayment via x402. Ideal for lightweight news monitoring, briefings, or any agent workflow that needs fresh headline data on demand.

## Known failure modes

- Payment not provided or insufficient USDC — HTTP 402 returned
- Missing required 'topic' field — request rejected
- Topic returns no results — empty data object
- Service unavailable on Vercel deployment — 500 error
- Count parameter too large — may return partial results or error

## 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 headlines related to the requested topic. The data payload is expected to include scraped or aggregated news headlines matching the topic and count specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "count": {
   "type": "number",
   "description": "Number of headlines"
  },
  "topic": {
   "type": "string",
   "description": "News topic"
  }
 }
}
```

## 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-headlines-api-23460738/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cr4vvol.vercel.app](https://www.zero.xyz/host/cr4vvol.vercel.app/llms.txt)
