Developer portal

Build connected event experiences with Azavista

Explore module-oriented API documentation with explicit versions, audience-aware authorization, searchable endpoints, schemas, and code examples in multiple languages.

290
API operations
414
Documented schemas
7
Developer modules
3
API audiences

Browse by module

Resources are organized by developer intent rather than raw controller order.

Open full reference →
Quick start

Make your first authenticated request

Open any endpoint to get examples for cURL, TypeScript, Python, C#, and Java. Authentication requirements and accepted scopes are generated from the specification’s authorization metadata.

Explore endpoints
const response = await fetch(
  "https://api.azavista.com/3.0/event/{eventID}",
  {
    headers: {
      Authorization: "Bearer YOUR_ACCESS_TOKEN"
    }
  }
);

if (!response.ok) {
  throw new Error(`Request failed: ${response.status}`);
}

const event = await response.json();