Get Started
Introduction
AeonPass is a microservices platform for event-tech infrastructure — covering authentication, event management, ticketing, pass issuance, messaging, and venue operations through a unified REST API surface.
What is AeonPass?
AeonPass provides the backend infrastructure that powers event experiences. Organizations use AeonPass to manage guests, issue QR code passes, handle check-ins, and communicate with attendees — all through secure, versioned APIs.
Every capability is exposed as a microservice with its own OpenAPI 3.0 specification, so you can integrate exactly what your application needs.
Available services
Base URL
All API endpoints are available at the following base URL. Each microservice is routed through the gateway.
https://apv2-gatewayapp-prod-westus3.azurewebsites.net/apiAuthentication
The AeonPass API uses API KEY for authentication. Obtain a API Key through the AeonPass developer portal, then include it in the X-API-KEY header of every request.
X-API-KEY: <your-api-key>See the Authentication guide for the full API key flow.
Request format
All requests and responses use JSON. Set the Content-Type header to application/json on write requests.
curl -X GET https://apv2-gatewayapp-prod-westus3.azurewebsites.net/api/global/v1/events \
-H "X-API-KEY: <your-api-key>" \
-H "Content-Type: application/json"