# Orbonomy News Data API

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

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

## Facts

- Endpoint: POST https://orbonomy.xyz/api/data/news
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-news-data-api-6adbd038
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZiEJZ4cMkVpTfaHNtjedZ

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-6adbd038 -d '<json body>'
```

Example prompt: Can you fetch me 5 recent news articles about electric vehicles from Orbonomy?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call news lookup on a specific topic without a subscription, especially in x402-compatible agent workflows where micropayments are acceptable and you want a small batch of articles on demand.

## Known failure modes

- Missing required 'topic' or 'count' field returns validation error
- Payment failure via x402 protocol results in 402 response and no data
- Topic with no matching articles may return empty results
- Invalid count value (non-integer or negative) may cause a 400 error
- Service downtime or upstream news feed failure may return 5xx error

## How this service works

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

## Output

A JSON object with a success boolean and presumably a list of news articles matching the requested topic and count, returned as structured data.

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