Developer portal

Build connected event experiences with Azavista

API documentation generated from the platform itself: browse by service or by tag, with explicit versions, audience-aware authorization, searchable endpoints, schemas, and code examples.

868
API operations
693
Documented schemas
23
Services
142
Resource tags

Browse by service

23 services, exactly as the platform is built.

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();