# ScrapFly News by Topic

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

Fetches news articles and content related to a specified topic using ScrapFly's web scraping infrastructure

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/news/topic
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-news-by-topic-8cf2e4b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BNm7_3KNA-dGBECTe26w4

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-news-by-topic-8cf2e4b4 -d '<json body>'
```

Example prompt: Can you pull the latest news articles about artificial intelligence regulation for me?

## When to prefer this

Use this endpoint when you need to programmatically gather news content about a specific topic without managing your own scraping infrastructure, especially when you want pay-per-use pricing via crypto on Base chain and need results quickly without a subscription.

## Known failure modes

- Topic string is empty or missing — returns success: false
- Topic returns no results — data object may be empty
- Rate limit or payment failure — HTTP 402 if USDC payment is insufficient
- Upstream scraping failure — success: false with error detail in data
- Invalid request body format — HTTP 400 bad request

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success boolean and a data object containing scraped news articles and content related to the requested topic, sourced via ScrapFly's scraping infrastructure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "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-news-by-topic-8cf2e4b4/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)
