EventX Event API

The Event API from EventX — 4 operation(s) for event.

Operations 7

GET /public-api/v1/event List all events you host or manage #
POST /public-api/v1/event Create a new event in your organization #
GET /public-api/v1/event/hosting-event List events you host #
GET /public-api/v1/event/{eventId} Get an event by ID #
PUT /public-api/v1/event/{eventId} Update an event #
DELETE /public-api/v1/event/{eventId} Soft-delete an event #
PATCH /public-api/v1/event/{eventId}/extension-data Merge extension data into 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-event-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-event-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Event 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: Event
paths:
  /public-api/v1/event:
    get:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  dataList:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        locationLatLng:
                          type: object
                          properties:
                            lat:
                              type: string
                            lng:
                              type: string
                          required:
                          - lat
                          - lng
                          additionalProperties: false
                          nullable: true
                        startsAt:
                          type: string
                          format: date-time
                        endsAt:
                          type: string
                          format: date-time
                        entryStartsAt:
                          type: string
                          format: date-time
                          nullable: true
                        entryEndsAt:
                          type: string
                          format: date-time
                          nullable: true
                        timezone:
                          type: string
                        types:
                          type: array
                          items:
                            type: string
                        categories:
                          type: array
                          items:
                            type: string
                        format:
                          type: string
                          enum:
                          - virtual
                          - in-person
                          - hybrid
                          nullable: true
                        entryType:
                          type: string
                          enum:
                          - by_invite_only
                          - public
                        defaultLocale:
                          type: string
                          enum:
                          - en
                          - ja
                          - ko
                          - vi
                          - zh-HK
                          - zh-CN
                          - es
                          - th
                          - pt
                        supportedLocales:
                          type: array
                          items:
                            type: string
                            enum:
                            - en
                            - ja
                            - ko
                            - vi
                            - zh-HK
                            - zh-CN
                            - es
                            - th
                            - pt
                        extensionData:
                          type: object
                          properties: {}
                          additionalProperties:
                            anyOf:
                            - anyOf:
                              - type: string
                              - type: number
                                format: float
                              - type: boolean
                              nullable: true
                            - type: array
                              items:
                                anyOf:
                                - type: string
                                - type: number
                                  format: float
                                - type: boolean
                                nullable: true
                          description: Please refer to example for preview data structure as swagger not support pattern object in query & response
                          example:
                            key1: value
                            key2: 123
                            key3: true
                            key4:
                            - value1
                            - value2
                            key5:
                            - 123
                            - 456
                            key6:
                            - true
                            - false
                        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
                            location:
                              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
                            organizerName:
                              type: object
                              properties: {}
                              additionalProperties: false
                            descriptionHtml:
                              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
                            logoImageMediaId:
                              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
                            bannerImageMediaId:
                              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
                            faviconImageMediaId:
                              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
                            ogImageMediaId:
                              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
                            ogDescription:
                              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
                            ogTitle:
                              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
                            logoImageMedia:
                              type: object
                              properties:
                                default:
                                  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
                                en:
                                  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
                                ja:
                                  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
                                ko:
                                  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
                                vi:
                                  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
                                zh-HK:
                                  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
                                zh-CN:
                                  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
                                es:
                                  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
                     

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