# Orbonomy Data Trends Lookup

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

Fetches trending data and topic insights for a specified topic and geographic region

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/data/trends
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-data-trends-lookup-59a5a3b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BFcYIteozPVY7hAvty60X

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-lookup-59a5a3b0 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need to quickly look up what is trending around a specific topic in a particular region without requiring complex setup. Best suited for lightweight trend queries at $0.05 per call via x402 micropayments, ideal for agents that need on-demand regional trend data without a subscription.

## Known failure modes

- Missing required 'topic' field returns validation error
- Missing required 'region' field returns validation error
- Unsupported or unrecognized region string may return empty or error result
- Payment not fulfilled via x402 protocol results in 402 Payment Required
- Topic string too vague or broad may return low-confidence results
- Network timeout or service unavailability returns 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

Returns a JSON object with a success boolean and trend data for the given topic and region, indicating current popularity or trending status of the specified topic in that geographic 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-lookup-59a5a3b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
