Eventzilla Tickets API

Ticket type operations

Operations 1

GET /events/{eventid}/tickets List ticket categories for event #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eventzilla-tickets-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eventzilla-tickets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventzilla Attendees Tickets API
  description: The Eventzilla REST API provides access to event management operations including listing and retrieving events, managing ticket categories, processing registrations and orders, managing attendees, performing check-ins, and handling checkout workflows. Authentication is via an API key passed in the x-api-key request header.
  version: '2.0'
  contact:
    name: Eventzilla Support
    email: support@eventzilla.net
    url: https://community.eventzilla.net/
  termsOfService: https://www.eventzilla.net/terms-conditions/
  license:
    name: Proprietary
    url: https://www.eventzilla.net/terms-conditions/
servers:
- url: https://www.eventzillaapi.net/api/v2
  description: Eventzilla API v2
security:
- ApiKeyAuth: []
tags:
- name: Tickets
  description: Ticket type operations
paths:
  /events/{eventid}/tickets:
    get:
      operationId: listEventTickets
      summary: List ticket categories for event
      description: Retrieve all ticket types and donation options for a specific event.
      tags:
      - Tickets
      parameters:
      - name: eventid
        in: path
        required: true
        description: Unique identifier of the event
        schema:
          type: integer
      responses:
        '200':
          description: Ticket types and donation options
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TicketsResponse'
components:
  schemas:
    Donation:
      type: object
      properties:
        donationid:
          type: number
        title:
          type: string
        description:
          type: string
        quantity_total:
          type: number
        donation_minimum:
          type: string
        donation_start_date:
          type: string
          format: date-time
        donation_end_date:
          type: string
          format: date-time
    Ticket:
      type: object
      properties:
        id:
          type: number
        title:
          type: string
        quantity_total:
          type: string
        price:
          type: string
        description:
          type: string
        sales_start_date:
          type: string
        sales_start_time:
          type: string
          format: date-time
        sales_end_date:
          type: string
          format: date-time
        sales_end_time:
          type: string
        group_discount:
          type: string
        group_percentage:
          type: string
        group_price:
          type: string
        additional_instructions:
          type: string
        unlock_code:
          type: string
        ticket_type:
          type: string
        boxoffice_only:
          type: boolean
        is_visible:
          type: boolean
        limit_minimum:
          type: string
        limit_maximum:
          type: string
        allow_partial_payment:
          type: boolean
        partial_payment_installments:
          type: string
        partial_payment_frequency:
          type: string
        partial_payment_amount:
          type: string
    TicketsResponse:
      type: object
      properties:
        tickets:
          type: array
          items:
            $ref: '#/components/schemas/Ticket'
        donation:
          type: array
          items:
            $ref: '#/components/schemas/Donation'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
externalDocs:
  description: Eventzilla API Documentation
  url: https://developer.eventzilla.net/docs/