# Bolt News Search

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

Searches and retrieves news articles by keyword query, category, language, and result size via a pay-per-request API

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/news
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-news-search-6383b59c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aoMmMAscngLA5bjMSS54L

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 bolt-news-search-6383b59c -d '<json body>'
```

Example prompt: Search Bolt for the top 5 latest English-language news articles in the technology category about artificial intelligence.

## When to prefer this

Use this endpoint when an AI agent needs to fetch current news articles filtered by topic, category, and language in a single paid call without needing a separate news API subscription. Ideal for lightweight, per-request news retrieval within an agent workflow.

## Known failure modes

- Invalid or missing query returns empty results or error
- Unsupported language code causes failure or empty response
- Payment not fulfilled via x402 results in 402 Payment Required
- Category string not recognized returns no results
- Size parameter out of acceptable range causes validation error

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing news articles matching the query, category, and language filters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "type": "integer"
  },
  "query": {
   "type": "string"
  },
  "category": {
   "type": "string"
  },
  "language": {
   "type": "string"
  }
 }
}
```

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