# Orbonomy Data Trends

> Orbonomy Data Trends 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-13).

Returns trend data for a given topic and region

## Facts

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

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

Example prompt: Can you pull the current trend data for electric vehicles in the United States from Orbonomy?

## When to prefer this

Use this endpoint when you need lightweight, pay-per-call trend lookups for a specific topic and geographic region without committing to a subscription. Ideal for ad-hoc market research, content planning, or enriching agent workflows with current trend signals at low cost ($0.05 per call).

## Known failure modes

- Missing required 'topic' or 'region' fields returns a validation error
- Invalid or unsupported region string may return no data or an error
- Topic too broad or ambiguous may return generic or empty trends
- Payment failure via x402 protocol results in 402 response blocking data retrieval
- Network timeout or server error returns a 5xx 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 trend data for the specified topic and region, indicating current interest or momentum around the queried subject.

## 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-93c4f066/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)
