EventX Auth API

The Auth API from EventX — 1 operation(s) for auth.

Operations 1

POST /public-api/v1/auth Issue a short-lived JWT for API access #

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-auth-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-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Public Auth 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: Auth
paths:
  /public-api/v1/auth:
    post:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      accessToken:
                        type: string
                        description: Bearer JWT for subsequent API requests
                      userId:
                        type: string
                        format: uuid
                        description: ID of the authenticated user
                      expiresIn:
                        type: string
                        description: Token expiry duration
                        example: 1h
                    required:
                    - accessToken
                    - userId
                    - expiresIn
                    additionalProperties: false
                required:
                - data
                additionalProperties: false
        '500':
          description: ERROR
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                apiToken:
                  type: string
                  description: API token obtained from the platform admin panel
              required:
              - apiToken
              additionalProperties: false
      tags:
      - Auth
      operationId: issueJwt
      summary: Issue a short-lived JWT for API access
components:
  securitySchemes:
    bearerAuth:
      name: Authorization
      type: apiKey
      in: header
      description: Bearer Authorization with jwt token