Events.com Internal API

The Internal API from Events.com — 5 operation(s) for internal.

Operations 5

GET /ai/api/v2/internal/{auth_token}/conversation/check-access Check Conversation Access #
GET /ai/api/v2/internal/{auth_token}/conversation/thread-details Get Conversation Details #
POST /ai/api/v2/internal/{auth_token}/file-search/create-store Create File Search Store #
GET /ai/api/v2/internal/{auth_token}/agent/by-thread Get Custom Agent For Thread #
GET /ai/api/v2/internal/{auth_token}/message/status Get Message Status #

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/eventscom-internal-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

eventscom-internal-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Internal API
  version: 1.0.36
  description: 'Operations tagged Internal across 2 of this provider''s published API definitions: eventscom-datagol-ai-openapi.yml, eventscom-internal-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://datagol-be.events.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Internal
paths:
  /ai/api/v2/internal/{auth_token}/conversation/check-access:
    get:
      tags:
      - Internal
      summary: Check Conversation Access
      description: Check if user is the creator of the conversation
      operationId: check_conversation_access_ai_api_v2_internal__auth_token__conversation_check_access_get
      parameters:
      - name: auth_token
        in: path
        required: true
        schema:
          type: string
          title: Auth Token
      - name: user_id
        in: query
        required: true
        schema:
          type: integer
          description: User ID
          title: User Id
        description: User ID
      - name: thread_id
        in: query
        required: true
        schema:
          type: string
          description: Thread ID
          title: Thread Id
        description: Thread ID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/internal/{auth_token}/conversation/thread-details:
    get:
      tags:
      - Internal
      summary: Get Conversation Details
      description: Get the details of the conversation
      operationId: get_conversation_details_ai_api_v2_internal__auth_token__conversation_thread_details_get
      parameters:
      - name: auth_token
        in: path
        required: true
        schema:
          type: string
          title: Auth Token
      - name: thread_id
        in: query
        required: true
        schema:
          type: string
          description: Thread ID
          title: Thread Id
        description: Thread ID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/internal/{auth_token}/file-search/create-store:
    post:
      tags:
      - Internal
      summary: Create File Search Store
      description: Create a file search store
      operationId: create_file_search_store_ai_api_v2_internal__auth_token__file_search_create_store_post
      parameters:
      - name: auth_token
        in: path
        required: true
        schema:
          type: string
          title: Auth Token
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateStoreRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/internal/{auth_token}/agent/by-thread:
    get:
      tags:
      - Internal
      summary: Get Custom Agent For Thread
      description: Get custom agent details for a thread
      operationId: get_custom_agent_for_thread_ai_api_v2_internal__auth_token__agent_by_thread_get
      parameters:
      - name: auth_token
        in: path
        required: true
        schema:
          type: string
          title: Auth Token
      - name: thread_id
        in: query
        required: true
        schema:
          type: string
          description: Thread ID
          title: Thread Id
        description: Thread ID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/internal/{auth_token}/message/status:
    get:
      tags:
      - Internal
      summary: Get Message Status
      description: Get the status of a streaming message
      operationId: get_message_status_ai_api_v2_internal__auth_token__message_status_get
      parameters:
      - name: auth_token
        in: path
        required: true
        schema:
          type: string
          title: Auth Token
      - name: message_id
        in: query
        required: true
        schema:
          type: integer
          description: Message ID
          title: Message Id
        description: Message ID
      - name: thread_id
        in: query
        required: true
        schema:
          type: string
          description: Thread/Conversation ID
          title: Thread Id
        description: Thread/Conversation ID
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreateStoreRequest:
      properties:
        company_name:
          type: string
          title: Company Name
          description: The company name.
      type: object
      required:
      - company_name
      title: CreateStoreRequest
x-refined-from:
- eventscom-datagol-ai-openapi.yml
- eventscom-internal-api-openapi.yml