EventX Ticket Class API

The Ticket Class API from EventX — 3 operation(s) for ticket class.

Operations 3

GET /public-api/v1/event/{eventId}/ticket-class/all List all ticket classes for an event #
POST /public-api/v1/event/{eventId}/ticket-class Create a ticket class for an event #
GET /public-api/v1/event/{eventId}/ticket-class-add-on/all List all ticket class add-ons for an 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/eventxtra-ticket-class-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 email required.

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

OpenAPI Specification

eventxtra-ticket-class-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Ticket Class API
  version: beta
  description: 'Response bodies vary by endpoint and may return `{ data }`, `{ dataList }`, `{ dataList, pagination }`, or no body for status-only operations. Successful responses use the HTTP status defined on each operation. Error responses return `{ error: { code, message, status, meta } }` with the corresponding HTTP status code.'
servers:
- url: https://esaas-api.eventx.io
tags:
- name: Ticket Class
paths:
  /public-api/v1/event/{eventId}/ticket-class/all:
    get:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  dataList:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        contentI18n:
                          type: object
                          properties:
                            name:
                              type: object
                              properties:
                                default:
                                  type: string
                                  nullable: true
                                en:
                                  type: string
                                  nullable: true
                                ja:
                                  type: string
                                  nullable: true
                                ko:
                                  type: string
                                  nullable: true
                                vi:
                                  type: string
                                  nullable: true
                                zh-HK:
                                  type: string
                                  nullable: true
                                zh-CN:
                                  type: string
                                  nullable: true
                                es:
                                  type: string
                                  nullable: true
                                th:
                                  type: string
                                  nullable: true
                                pt:
                                  type: string
                                  nullable: true
                              required:
                              - default
                              additionalProperties: false
                            description:
                              type: object
                              properties:
                                default:
                                  type: string
                                  nullable: true
                                en:
                                  type: string
                                  nullable: true
                                ja:
                                  type: string
                                  nullable: true
                                ko:
                                  type: string
                                  nullable: true
                                vi:
                                  type: string
                                  nullable: true
                                zh-HK:
                                  type: string
                                  nullable: true
                                zh-CN:
                                  type: string
                                  nullable: true
                                es:
                                  type: string
                                  nullable: true
                                th:
                                  type: string
                                  nullable: true
                                pt:
                                  type: string
                                  nullable: true
                              required:
                              - default
                              additionalProperties: false
                            message:
                              type: object
                              properties:
                                default:
                                  type: string
                                  nullable: true
                                en:
                                  type: string
                                  nullable: true
                                ja:
                                  type: string
                                  nullable: true
                                ko:
                                  type: string
                                  nullable: true
                                vi:
                                  type: string
                                  nullable: true
                                zh-HK:
                                  type: string
                                  nullable: true
                                zh-CN:
                                  type: string
                                  nullable: true
                                es:
                                  type: string
                                  nullable: true
                                th:
                                  type: string
                                  nullable: true
                                pt:
                                  type: string
                                  nullable: true
                              required:
                              - default
                              additionalProperties: false
                          additionalProperties: false
                        price:
                          type: number
                          format: float
                          minimum: 0
                        qty:
                          type: integer
                          minimum: 1
                        saleStartsAt:
                          type: string
                          format: date-time
                        saleEndsAt:
                          type: string
                          format: date-time
                          nullable: true
                        addOnIds:
                          type: array
                          items:
                            type: string
                            format: uuid
                        minAddOnQty:
                          type: integer
                          minimum: 0
                        maxAddOnQty:
                          type: integer
                          minimum: 0
                          nullable: true
                        minQty:
                          type: integer
                          minimum: 0
                        maxQty:
                          type: integer
                          minimum: 0
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        isAccessibleToAllWebinarSession:
                          type: boolean
                        accessibleWebinarSessionIds:
                          type: array
                          items:
                            type: string
                        isAccessibleToPhysicalEvent:
                          type: boolean
                        isAccessibleToAllPhysicalSessions:
                          type: boolean
                        accessiblePhysicalSessionIds:
                          type: array
                          items:
                            type: string
                        addOns:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                                format: uuid
                              stockQty:
                                type: integer
                              isWaitlistEnabled:
                                type: boolean
                              waitlistStockQty:
                                type: integer
                                minimum: 0
                                nullable: true
                              price:
                                type: number
                                format: float
                                minimum: 0
                              accessiblePhysicalSessionIds:
                                type: array
                                items:
                                  type: string
                                  format: uuid
                              isAccessibleToAllPhysicalSessions:
                                type: boolean
                              contentI18n:
                                type: object
                                properties:
                                  name:
                                    type: object
                                    properties:
                                      default:
                                        type: string
                                        nullable: true
                                      en:
                                        type: string
                                        nullable: true
                                      ja:
                                        type: string
                                        nullable: true
                                      ko:
                                        type: string
                                        nullable: true
                                      vi:
                                        type: string
                                        nullable: true
                                      zh-HK:
                                        type: string
                                        nullable: true
                                      zh-CN:
                                        type: string
                                        nullable: true
                                      es:
                                        type: string
                                        nullable: true
                                      th:
                                        type: string
                                        nullable: true
                                      pt:
                                        type: string
                                        nullable: true
                                    required:
                                    - default
                                    additionalProperties: false
                                  description:
                                    type: object
                                    properties:
                                      default:
                                        type: string
                                        nullable: true
                                      en:
                                        type: string
                                        nullable: true
                                      ja:
                                        type: string
                                        nullable: true
                                      ko:
                                        type: string
                                        nullable: true
                                      vi:
                                        type: string
                                        nullable: true
                                      zh-HK:
                                        type: string
                                        nullable: true
                                      zh-CN:
                                        type: string
                                        nullable: true
                                      es:
                                        type: string
                                        nullable: true
                                      th:
                                        type: string
                                        nullable: true
                                      pt:
                                        type: string
                                        nullable: true
                                    required:
                                    - default
                                    additionalProperties: false
                                additionalProperties: false
                              type:
                                type: string
                                enum:
                                - session
                              iconMedia:
                                type: object
                                properties:
                                  id:
                                    type: string
                                    format: uuid
                                  originalFilename:
                                    type: string
                                  previewFilename:
                                    type: string
                                  originalFilepath:
                                    type: string
                                  previewFilepath:
                                    type: string
                                  mimeType:
                                    type: string
                                  type:
                                    type: string
                                    enum:
                                    - image
                                    - video
                                    - file
                                  size:
                                    type: number
                                    format: float
                                required:
                                - id
                                - originalFilename
                                - previewFilename
                                - originalFilepath
                                - previewFilepath
                                - mimeType
                                - size
                                additionalProperties: false
                                nullable: true
                              soldQty:
                                type: integer
                                minimum: 0
                              waitlistAvailableCount:
                                type: integer
                                minimum: 0
                            required:
                            - id
                            - stockQty
                            - isWaitlistEnabled
                            - waitlistStockQty
                            - price
                            - accessiblePhysicalSessionIds
                            - isAccessibleToAllPhysicalSessions
                            - contentI18n
                            - type
                            - iconMedia
                            - soldQty
                            - waitlistAvailableCount
                            additionalProperties: false
                        rawData:
                          type: object
                          properties:
                            contentI18n:
                              type: object
                              properties:
                                name:
                                  type: object
                                  properties:
                                    default:
                                      type: string
                                      nullable: true
                                    en:
                                      type: string
                                      nullable: true
                                    ja:
                                      type: string
                                      nullable: true
                                    ko:
                                      type: string
                                      nullable: true
                                    vi:
                                      type: string
                                      nullable: true
                                    zh-HK:
                                      type: string
                                      nullable: true
                                    zh-CN:
                                      type: string
                                      nullable: true
                                    es:
                                      type: string
                                      nullable: true
                                    th:
                                      type: string
                                      nullable: true
                                    pt:
                                      type: string
                                      nullable: true
                                  required:
                                  - default
                                  additionalProperties: false
                                description:
                                  type: object
                                  properties:
                                    default:
                                      type: string
                                      nullable: true
                                    en:
                                      type: string
                                      nullable: true
                                    ja:
                                      type: string
                                      nullable: true
                                    ko:
                                      type: string
                                      nullable: true
                                    vi:
                                      type: string
                                      nullable: true
                                    zh-HK:
                                      type: string
                                      nullable: true
                                    zh-CN:
                                      type: string
                                      nullable: true
                                    es:
                                      type: string
                                      nullable: true
                                    th:
                                      type: string
                                      nullable: true
                                    pt:
                                      type: string
                                      nullable: true
                                  required:
                                  - default
                                  additionalProperties: false
                                message:
                                  type: object
                                  properties:
                                    default:
                                      type: string
                                      nullable: true
                                    en:
                                      type: string
                                      nullable: true
                                    ja:
                                      type: string
                                      nullable: true
                                    ko:
                                      type: string
                                      nullable: true
                                    vi:
                                      type: string
                                      nullable: true
                                    zh-HK:
                                      type: string
                                      nullable: true
                                    zh-CN:
                                      type: string
                                      nullable: true
                                    es:
                                      type: string
                                      nullable: true
                                    th:
                                      type: string
                                      nullable: true
                                    pt:
                                      type: string
                                      nullable: true
                                  required:
                                  - default
                                  additionalProperties: false
                              additionalProperties: false
                            price:
                              type: number
                              format: float
                              minimum: 0
                            qty:
                              type: integer
                              minimum: 1
                            saleStartsAt:
                              type: string
                              format: date-time
                            saleEndsAt:
                              type: string
                              format: date-time
                              nullable: true
                            addOnIds:
                              type: array
                              items:
                                type: string
                                format: uuid
                            minAddOnQty:
                              type: integer
                              minimum: 0
                            maxAddOnQty:
                              type: integer
                              minimum: 0
                              nullable: true
                            minQty:
                              type: integer
                              minimum: 0
                            maxQty:
                              type: integer
                              minimum: 0
                          additionalProperties: false
                      required:
                      - id
                      - contentI18n
                      - price
                      - qty
                      - saleStartsAt
                      - saleEndsAt
                      - addOnIds
                      - minAddOnQty
                      - maxAddOnQty
                      - minQty
                      - maxQty
                      - createdAt
                      - updatedAt
                      - isAccessibleToAllWebinarSession
                      - accessibleWebinarSessionIds
                      - isAccessibleToPhysicalEvent
                      - isAccessibleToAllPhysicalSessions
                      - accessiblePhysicalSessionIds
                      - rawData
                      additionalProperties: false
                      description: Ticket class response object including add-ons, pricing, and availability
                      example:
                        id: 550e8400-e29b-41d4-a716-446655440000
                        contentI18n:
                          name:
                            default: General Admission
                          description:
                            default: Standard entry ticket
                          message:
                            default: ''
                        price: 100
                        qty: 500
                        saleStartsAt: '2024-01-01T00:00:00.000Z'
                        saleEndsAt: null
                        addOnIds:
                        - 550e8400-e29b-41d4-a716-446655440001
                        minAddOnQty: 0
                        maxAddOnQty: null
                        minQty: 1
                        maxQty: 10
                        createdAt: '2024-01-01T00:00:00.000Z'
                        updatedAt: '2024-01-01T00:00:00.000Z'
                        isAccessibleToAllWebinarSession: false
                        accessibleWebinarSessionIds: []
                        isAccessibleToPhysicalEvent: true
                        isAccessibleToAllPhysicalSessions: true
                        accessiblePhysicalSessionIds: []
                        addOns:
                        - id: 550e8400-e29b-41d4-a716-446655440001
                          stockQty: 100
                          isWaitlistEnabled: false
                          waitlistStockQty: null
                          price: 50
                          accessiblePhysicalSessionIds: []
                          isAccessibleToAllPhysicalSessions: true
                          contentI18n:
                            name:
                              default: Lunch Add-on
                            description:
                              default: Includes lunch
                          type: ADD_ON
                          iconMedia: null
                          soldQty: 0
                          waitlistAvailableCount: 0
                        rawData:
                          contentI18n:
                            name:
                              default: General Admission
                            description:
                              default: Standard entry ticket
                          price: 100
                          qty: 500
                          saleStartsAt: '2024-01-01T00:00:00.000Z'
                          saleEndsAt: null
                          addOnIds:
                          - 550e8400-e29b-41d4-a716-446655440001
                          minAddOnQty: 0
                          maxAddOnQty: null
                          minQty: 1
                          maxQty: 10
                required:
                - dataList
                additionalProperties: false
        '500':
          description: ERROR
      parameters:
      - name: eventId
        in: path
        required: true
        schema:
          type: string
      security:
      - bearerAuth: []
      tags:
      - Ticket Class
      operationId: getAllTicketClassByEventId
      summary: List all ticket classes for an event
  /public-api/v1/event/{eventId}/ticket-class:
    post:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                      contentI18n:
                        type: object
                        properties:
                          name:
                            type: object
                            properties:
                              default:
                                type: string
                                nullable: true
                              en:
                                type: string
                                nullable: true
                              ja:
                                type: string
                                nullable: true
                              ko:
                                type: string
                                nullable: true
                              vi:
                                type: string
                                nullable: true
                              zh-HK:
                                type: string
                                nullable: true
                              zh-CN:
                                type: string
                                nullable: true
                              es:
                                type: string
                                nullable: true
                              th:
                                type: string
                                nullable: true
                              pt:
                                type: string
                                nullable: true
                            required:
                            - default
                            additionalProperties: false
                          description:
                            type: object
                            properties:
                              default:
                                type: string
                                nullable: true
                              en:
                                type: string
                                nullable: true
                              ja:
                                type: string
                                nullable: true
                              ko:
                                type: string
                                nullable: true
                              vi:
                                type: string
                                nullable: true
                              zh-HK:
                                type: string
                                nullable: true
                              zh-CN:
                                type: string
                                nullable: true
                              es:
                                type: string
                                nullable: true
                              th:
                                type: string
                                nullable: true
                              pt:
                                type: string
                                nullable: true
                            required:
                            - default
                            additionalProperties: false
                          message:
                            type: object
                            properties:
                              default:
                                type: string
                                nullable: true
                              en:
                                type: string
                                nullable: true
                              ja:
                                type: string
                                nullable: true
                              ko:
                                type: string
                                nullable: true
                              vi:
                                type: string
                                nullable: true
                              zh-HK:
                                type: string
                                nullable: true
                              zh-CN:
                                type: string
                                nullable: true
                              es:
                                type: string
                                nullable: true
                              th:
                                type: string
                                nullable: true
                              pt:
                                type: string
                                nullable: true
                            required:
                            - default
                            additionalProperties: false
                        additionalProperties: false
                      price:
                        type: number
                        format: float
                        minimum: 0
                      qty:
                        type: integer
                        minimum: 1
                      saleStartsAt:
                        type: string
                        format: date-time
                      saleEndsAt:
                        type: string
                        format: date-time
                        nullable: true
                      addOnIds:
                        type: array
                        items:
                          type: string
                          format: uuid
                      minAddOnQty:
                        type: integer
                        minimum: 0
                      maxAddOnQty:
                        type: integer
                        minimum: 0
                        nullable: true
      

# --- truncated at 32 KB (68 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/eventxtra/refs/heads/main/openapi/eventxtra-ticket-class-api-openapi.yml