# Orbonomy News Data API

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

Fetches a specified number of news articles on a given topic via pay-per-call

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/data/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/orbonomy-news-data-api-81f95b0d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yDX5x1-R_wtprmHxEnIg9

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 orbonomy-news-data-api-81f95b0d -d '<json body>'
```

Example prompt: Fetch me 5 recent news articles about electric vehicles using Orbonomy's news endpoint.

## When to prefer this

When you need a quick, pay-per-call news retrieval without a subscription, and you want to fetch a controlled number of articles on a specific topic via the x402 micropayment protocol. Useful for agents that need on-demand news without committing to a recurring API subscription.

## Known failure modes

- Missing required 'topic' or 'count' fields returns a validation error
- Invalid count type (non-integer) causes schema rejection
- Topic with no available news may return empty results or success:false
- Payment failure via x402 protocol blocks access
- Rate limiting or quota exhaustion may return error responses

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and presumably a collection of news articles or news data related to the requested topic, in the quantity specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "count",
  "topic"
 ],
 "properties": {
  "count": {
   "type": "integer"
  },
  "topic": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-news-data-api-81f95b0d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
