# Cravvol Headlines API

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

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

## Facts

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

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

Example prompt: Get me 5 current headlines about electric vehicles — pay the per-request fee in USDC.

## When to prefer this

Use this endpoint when you need current news headlines for a specific topic without API key registration or subscription overhead — ideal for AI agents that want pay-as-you-go access via x402/USDC micropayments. Best for lightweight headline retrieval rather than full article content.

## Known failure modes

- Missing required 'topic' field returns validation error
- Payment not provided or insufficient USDC causes 402 Payment Required response
- Invalid count value (non-numeric) may cause request failure
- Topic yields no results if too obscure or misspelled
- Service may be unavailable if Vercel deployment is down

## 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 fetched headlines for the requested topic, structured as key-value data from the scraped news sources.

## 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/cravvol-headlines-api-e77f15c1/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)
