# Orbonomy Events Data API

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

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

## Facts

- Endpoint: POST https://orbonomy.xyz/api/data/events
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-events-data-api-d7eb9da3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A0S1y0PHG34RVFSTaIfIB

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

Example prompt: Can you find me upcoming music events in Austin, Texas? I want to see what's happening there around live music.

## When to prefer this

Use this endpoint when you need to discover or retrieve events for a specific topic-and-location combination and are willing to pay $0.05 USDC per call via the x402 protocol. Suitable for agents needing lightweight, pay-per-use event lookup without a subscription.

## Known failure modes

- Missing required 'topic' or 'location' fields returns an error
- Payment failure or insufficient USDC balance returns 402
- No events found for the given topic/location combination returns empty or success:false
- Invalid or unrecognized location string may return no results
- 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 presumably event listings matching the given topic and location, though the response schema is minimal and may include additional event data fields not documented.

## 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-d7eb9da3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
