EventX Public API

The Public Api API from EventX — 5 operation(s) for public api.

Operations 10

GET /public-api/v1/org/{orgId}/custom-domains List custom domains for an organization #
POST /public-api/v1/org/{orgId}/custom-domains Create a custom domain via Cloudflare #
GET /public-api/v1/org/{orgId}/custom-domains/{customDomainId} Get custom domain details with DNS records #
PUT /public-api/v1/org/{orgId}/custom-domains/{customDomainId} Update the default redirect URL of a custom domain #
DELETE /public-api/v1/org/{orgId}/custom-domains/{customDomainId} Delete a custom domain #
PUT /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/verify Trigger DNS verification for a custom domain #
GET /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings List path mappings for a custom domain #
POST /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings Create a path mapping for a custom domain #
PUT /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings/{pathMappingId} Update a path mapping #
DELETE /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings/{pathMappingId} Delete a path mapping #

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-public-api-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-public-api-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public 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: Public Api
paths:
  /public-api/v1/org/{orgId}/custom-domains:
    get:
      responses: {}
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          minimum: 1
          default: 1
      - name: pageSize
        in: query
        schema:
          type: integer
          minimum: 1
          maximum: 100
          default: 25
      - name: status
        in: query
        schema:
          type: string
          enum:
          - pending
          - active
          - pending_ssl
          - moved
          - failed
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      operationId: listCustomDomains
      summary: List custom domains for an organization
      tags:
      - Public Api
    post:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                domain:
                  type: string
                defaultRedirectUrl:
                  type: string
              required:
              - domain
              - defaultRedirectUrl
              additionalProperties: false
      operationId: createCustomDomain
      summary: Create a custom domain via Cloudflare
      tags:
      - Public Api
  /public-api/v1/org/{orgId}/custom-domains/{customDomainId}:
    get:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      operationId: getCustomDomainDetail
      summary: Get custom domain details with DNS records
      tags:
      - Public Api
    put:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                defaultRedirectUrl:
                  type: string
              required:
              - defaultRedirectUrl
              additionalProperties: false
      operationId: updateCustomDomain
      summary: Update the default redirect URL of a custom domain
      tags:
      - Public Api
    delete:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      operationId: deleteCustomDomain
      summary: Delete a custom domain
      tags:
      - Public Api
  /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/verify:
    put:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      operationId: verifyCustomDomain
      summary: Trigger DNS verification for a custom domain
      description: Initiates DNS ownership and SSL verification checks. Idempotent — can be called multiple times to refresh the verification status.
      tags:
      - Public Api
  /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings:
    get:
      responses: {}
      parameters:
      - name: page
        in: query
        schema:
          type: integer
          minimum: 1
          default: 1
      - name: pageSize
        in: query
        schema:
          type: integer
          minimum: 1
          maximum: 100
          default: 25
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      operationId: listPathMappings
      summary: List path mappings for a custom domain
      tags:
      - Public Api
    post:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                eventId:
                  type: string
                eventRegFormId:
                  type: string
                pathName:
                  type: string
              required:
              - eventId
              - pathName
              additionalProperties: false
      operationId: createPathMapping
      summary: Create a path mapping for a custom domain
      tags:
      - Public Api
  /public-api/v1/org/{orgId}/custom-domains/{customDomainId}/path-mappings/{pathMappingId}:
    put:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      - name: pathMappingId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                eventId:
                  type: string
                eventRegFormId:
                  type: string
                  nullable: true
                pathName:
                  type: string
              additionalProperties: false
      operationId: updatePathMapping
      summary: Update a path mapping
      tags:
      - Public Api
    delete:
      responses: {}
      parameters:
      - name: orgId
        in: path
        required: true
        schema:
          type: string
      - name: customDomainId
        in: path
        required: true
        schema:
          type: string
      - name: pathMappingId
        in: path
        required: true
        schema:
          type: string
      operationId: deletePathMapping
      summary: Delete a path mapping
      tags:
      - Public Api
components:
  securitySchemes:
    bearerAuth:
      name: Authorization
      type: apiKey
      in: header
      description: Bearer Authorization with jwt token