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.
Search
868
API operations
693
Documented schemas
23
Services
142
Resource tags
Browse by service
23 services, exactly as the platform is built.
Activities
57 endpoints →CRM
34 endpoints →Documents
52 endpoints →Engagement App
91 endpoints →Event Copier
7 endpoints →Event Participants
105 endpoints →External CRM Mk2
17 endpoints →Identity
15 endpoints →Ingress Generator Mk2
14 endpoints →Jobs
13 endpoints →Messaging Gateway
11 endpoints →Payments
76 endpoints →Processes
58 endpoints →Profile Pages
10 endpoints →Reports
29 endpoints →Settings
40 endpoints →Site Builder
69 endpoints →Spreadsheet Importer
17 endpoints →Task Management
32 endpoints →User Management
71 endpoints →Virtual Meetings
5 endpoints →Webhooks
2 endpoints →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 endpointsconst 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();