# ScrapFly Crawl Headlines

> ScrapFly Crawl Headlines is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Fetches current news headlines for a given topic by crawling and scraping relevant web sources

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/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/scrapfly-crawl-headlines-1be32905
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4YwfbwrkwxQOG54Q6huNf

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-headlines-1be32905 -d '<json body>'
```

Example prompt: Can you grab me the top 10 current news headlines about artificial intelligence right now?

## When to prefer this

Choose this endpoint when you need real-time or near-real-time news headlines crawled directly from the web for a specific topic, especially when you want raw scraped headlines rather than a curated news API feed. Useful for agents doing trend monitoring, news summarization, or research tasks where freshness matters and you want broad web coverage rather than a single publisher.

## Known failure modes

- Topic not found or no headlines available — success: false with empty data
- Invalid or missing topic field — 400 bad request
- Payment failure on x402/Base chain — 402 payment required
- Rate limiting or upstream scraping block — timeout or error response
- Count parameter out of acceptable range — validation error

## 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 headlines for the specified topic, typically as a list of article titles or headline strings from across the web.

## Request schema (JSON Schema)

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

## 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-headlines-1be32905/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
