# Orbonomy Data Trends

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

Returns trending data insights for a specified topic and geographic region

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/data/trends
- 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-data-trends-2a5769b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ti0CdywF-sx5w57cHoBZH

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-data-trends-2a5769b7 -d '<json body>'
```

Example prompt: What are the current data trends for artificial intelligence in the United States?

## When to prefer this

Use this endpoint when you need quick, pay-per-call access to trend data for a specific topic and region without a subscription commitment. Prefer this over subscription-based trend APIs when usage is sporadic or when you need to sample trends across many topics cheaply at $0.05 per call.

## Known failure modes

- Missing required 'topic' field returns validation error
- Missing required 'region' field returns validation error
- Unknown or unsupported region string may return empty results or error
- Payment failure via x402 protocol returns 402 Payment Required
- Network timeout returns 5xx error
- Invalid JSON body returns 400 Bad Request

## 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) trend data for the specified topic and region, indicating what is currently trending or gaining interest in that area.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic",
  "region"
 ],
 "properties": {
  "topic": {
   "type": "string"
  },
  "region": {
   "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-data-trends-2a5769b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
