# Orbonomy Data Trends

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

Returns trend data for a specified topic within a given geographic region

## Facts

- Endpoint: POST https://www.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-ff290ce9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i0Nq9H51WkZKWlUcWUTTP

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

Example prompt: What are the current trends for electric vehicles in the United States?

## When to prefer this

Use this endpoint when you need quick, pay-per-call trend intelligence for a specific topic and region without a long-term subscription. Ideal for agents researching what topics are gaining momentum in a particular geography, supporting market research, content strategy, or competitive analysis tasks.

## Known failure modes

- Missing required 'topic' field — 400 validation error
- Missing required 'region' field — 400 validation error
- Unknown or unsupported region string — may return empty trends or error
- Payment not received or insufficient — 402 payment required
- Topic string too vague or empty — may return no meaningful trend data
- Service temporarily unavailable — 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 trend data for the specified topic in the given region, indicating how that topic is trending 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-ff290ce9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
