# 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 and retrieves news articles matching a given query, returning structured news content results

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/search/news
- 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-627d4793
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6xc4VmqWxG0pOxsFWQnCY

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-627d4793 -d '<json body>'
```

Example prompt: Search for the latest news about Tesla's new product announcements and return the top 10 results.

## When to prefer this

Use this endpoint when you need to programmatically search and retrieve news articles by keyword or topic, especially in automated agent workflows that require pay-per-use billing via x402 on Base chain without a subscription. Prefer this over direct web scraping when you need structured news results quickly.

## Known failure modes

- Missing required query field returns validation error
- Empty or ambiguous query returns no results
- Payment failure on Base chain blocks request execution
- Rate limiting or quota exhaustion returns error
- Suspicious or blocked query returns empty data set
- num parameter out of valid range may return error or default count

## 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 news search results matching the query, including article metadata such as titles, sources, and content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "num": {
   "type": "number",
   "description": "num"
  },
  "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-627d4793/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)
