# Orbonomy News Data Endpoint

> Orbonomy News Data Endpoint is a paid API for AI agents from main.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

## Facts

- Endpoint: POST https://main.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-endpoint-cf21281a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bsI1K59-WBp2UbG6CZVgU

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-endpoint-cf21281a -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need a quick, pay-per-call fetch of news articles on a specific topic without committing to a subscription-based news API. Ideal for lightweight agent workflows that occasionally need current events data and want to pay only per query at $0.05 USDC via the x402 protocol.

## Known failure modes

- Missing required field 'topic' — returns validation error
- Missing required field 'count' — returns validation error
- Invalid count type (non-integer) — returns schema validation error
- Payment failure via x402 protocol — returns 402 Payment Required
- Topic yields no results — may return success:true with empty article list
- Service unavailable — returns 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 collection of news articles matching the requested topic and count, though the response schema only formally exposes the success flag.

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