# Orbonomy News Data API

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

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

## Facts

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

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-e88b21c1 -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 news retrieval without a subscription, and you want to specify both a topic and a precise number of articles to return. Suitable for lightweight news lookups in agent workflows where per-call USDC micropayments via x402 are acceptable.

## Known failure modes

- Missing required 'topic' or 'count' fields returns a validation error
- Invalid 'count' type (non-integer) causes a schema rejection
- Topic yields no matching articles, returning empty results
- Payment failure via x402 protocol blocks access
- Rate limiting or quota exhaustion on the provider side
- Backup domain may be unavailable or unstable

## 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 field and (implied) news article data for the requested topic and count

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