# Orbonomy Events Data API

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

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

## Facts

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

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

Example prompt: Can you find me upcoming music events in Austin, Texas? I'm looking for anything related to jazz or blues festivals happening there.

## When to prefer this

Use this endpoint when you need to discover or retrieve events filtered by both a subject topic and a geographic location, especially in a pay-per-call context where you want low-cost on-demand lookups without subscription overhead.

## Known failure modes

- Missing required 'topic' or 'location' fields returns validation error
- Invalid or unrecognized location may return empty results or error
- Payment failure via x402 protocol returns 402 status
- Sparse or no events available for the given topic/location combination returns empty data
- 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 event data related to the specified topic and location, such as event listings, names, dates, and venue details.

## 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-bc3e7e65/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)
