# Bolt News Search

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

Searches and retrieves news articles by query, category, and language

## Facts

- Endpoint: POST https://bolt.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-1ece0e70
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b4WkM3Xm8L2clEI0aoxbq

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

Example prompt: Search for the top 5 recent news articles about artificial intelligence in English using the technology category.

## When to prefer this

Use this endpoint when an AI agent needs to fetch current news articles programmatically, filtered by topic, category, and language, and is operating in a pay-per-request USDC x402 environment within the Bolt toolkit.

## Known failure modes

- Invalid or unsupported category returns empty results or error
- Unsupported language code may yield no results
- Payment failure via x402 prevents endpoint access
- Missing or malformed query returns empty or generic results
- Result size exceeding service limits may be capped or 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 success boolean and a data object containing news articles matching the query, filtered by category and language, limited to the requested size.

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