# Orbonomy Data Trends

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

Retrieves trending data and trend insights for a specified topic and geographic region

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need to understand what is trending for a specific topic within a geographic region, especially for market research, content strategy, or awareness of public interest signals. Best suited for pay-per-call usage when trend lookups are infrequent or ad hoc.

## Known failure modes

- Missing required field 'topic' or 'region' returns a validation error
- Unsupported or unrecognized region string may return empty or null trend data
- Payment failure via x402 protocol returns 402 Payment Required
- Service unavailability returns 5xx error
- Topic too vague or broad may return low-quality or generic trend results

## 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 what is currently trending around that subject in the specified geography.

## 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-7576f3d5/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)
