TIXY Public Organizer API Quickstart
Overview
The TIXY Public Organizer API provides public access to event and tour data, allowing you to retrieve information about published and past due events and tours.Authentication
The API uses Bearer token authentication. You’ll need to include an authorization token in the request header:Obtaining Access Token
Obtain your public API access token in your panel on TIXY platform. Each token is unique to your organization and provides secure access to your public event data.Base URL
Available Endpoints
Events
Retrieve Events by Status
GET /events/{status}
Retrieve a list of events filtered by their status.
Path Parameters:
status: Filter events by their current stateall: Retrieve all eventspublished: Retrieve currently published eventspastdue: Retrieve past due events
Retrieve Specific Event Details
GET /event/{id}
Retrieve details for a specific event by its unique identifier or slug.
Path Parameters:
id: Unique identifier or slug of the event
Tours
Retrieve Tours by Status
GET /tours/{status}
Retrieve a list of tours filtered by their status.
Path Parameters:
status: Filter tours by their current stateall: Retrieve all tourspublished: Retrieve currently published tourspastdue: Retrieve past due tours
Retrieve Specific Tour Details
GET /tour/{id}
Retrieve details for a specific tour by its unique identifier or slug.
Path Parameters:
id: Unique identifier or slug of the tour
Error Handling
The API uses standard HTTP status codes to indicate the success or failure of requests:200 OK: Successful request400 Bad Request: Invalid parameters or malformed request404 Not Found: Requested resource does not exist500 Internal Server Error: Unexpected server-side error