# ScrapFly News Search API

> ScrapFly News Search API is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Searches the web for news articles matching a query, returning structured news content for AI agent consumption

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/news/search
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-news-search-api-a4cf9301
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OR6Q7TUe_1-HQXXCLahHr

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-search-api-a4cf9301 -d '<json body>'
```

Example prompt: Search the news for recent articles about 'OpenAI GPT-5 release' and give me a summary of what's being reported.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically search for recent news articles on a given topic, especially within a pay-per-use x402 micropayment workflow on Base chain. Prefer over manual web scraping when structured news results are needed quickly without managing scraping infrastructure.

## Known failure modes

- Missing required 'query' parameter returns a validation error
- Empty or overly broad query may return low-quality or no results
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Rate limiting or quota exhaustion returns error response
- Suspicious or suspicious domain signals may indicate unreliable third-party provider
- Network timeout if the underlying scraping takes too long

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing news search results — likely including article titles, URLs, summaries, sources, and publication dates matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## 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-search-api-a4cf9301/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
