# Orbonomy News Data API

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

## Facts

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

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

Example prompt: Can you pull 5 recent news articles about artificial intelligence for me?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call news retrieval for a specific topic without committing to a subscription-based news API. It is well-suited for agents that only occasionally need news data and want micro-payment billing via the x402 protocol.

## Known failure modes

- Missing required field 'topic' returns validation error
- Missing required field 'count' returns validation error
- Topic with no matching articles may return empty results or success:false
- Payment failure via x402 protocol blocks the request
- Invalid count type (non-integer) causes schema rejection
- Rate limiting or quota exhaustion may return error response

## 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 list of news articles matching the requested topic and count, though the full response schema is not detailed beyond 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-api-1dd5393c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
