# Orbonomy Events Data Endpoint

> Orbonomy Events Data Endpoint is a paid API for AI agents from api.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 API

## Facts

- Endpoint: POST https://api.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-endpoint-2976b03b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PXpkdAlxXmiDeyz5Gu18_

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-endpoint-2976b03b -d '<json body>'
```

Example prompt: Can you find me events related to jazz music happening in New Orleans?

## When to prefer this

Use this endpoint when you need to discover events by topic and location via a pay-per-call micropayment model using x402 protocol; suitable for agents that need lightweight event discovery without committing to a subscription-based events API.

## Known failure modes

- Missing required 'topic' field returns validation error
- Missing required 'location' field returns validation error
- No events found for the given topic/location combination
- Payment failure via x402 protocol if wallet balance is insufficient
- Unknown or ambiguous location string may return no results
- Service unavailability returns error response

## 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 for the specified topic and location, though the response schema is minimal and actual event data fields are 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-endpoint-2976b03b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
