# Orbonomy Events Data API

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

Fetches events data for a given topic and location via a pay-per-call endpoint

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/data/events
- 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-events-data-api-a619666d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AGg-oRW7qIBCSMy3OH9rU

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-events-data-api-a619666d -d '<json body>'
```

Example prompt: Can you find upcoming tech events happening in Austin, Texas?

## When to prefer this

Use this endpoint when you need to discover events by topic and location in a pay-per-call, no-subscription model. Suitable for agents that need lightweight, on-demand event lookups without committing to a recurring API plan. Prefer alternatives if you need rich structured event schemas, ticket purchasing, or real-time streaming data.

## Known failure modes

- Missing required 'topic' field returns validation error
- Missing required 'location' field returns validation error
- Unknown or unsupported location may return empty results
- Payment failure via x402 protocol returns 402 Payment Required
- Service downtime returns 5xx error
- Overly broad topic may yield irrelevant or empty 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

A JSON object with a success boolean and presumably a list of events matching the given topic and location, returned for $0.05 USDC per call via the x402 protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic",
  "location"
 ],
 "properties": {
  "topic": {
   "type": "string"
  },
  "location": {
   "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-events-data-api-a619666d/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)
