Events.com Research API

The Research API from Events.com — 2 operation(s) for research.

Operations 2

POST /ai/api/v2/research Research #
POST /ai/api/v2/research/download Download Pdf #

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-research-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-research-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Research API
  version: 1.0.36
  description: 'Operations tagged Research across 2 of this provider''s published API definitions: eventscom-datagol-ai-openapi.yml, eventscom-research-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: Research
paths:
  /ai/api/v2/research:
    post:
      tags:
      - Research
      summary: Research
      operationId: research_ai_api_v2_research_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyResearchRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarkdownRequest'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/research/download:
    post:
      tags:
      - Research
      summary: Download Pdf
      operationId: download_pdf_ai_api_v2_research_download_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MarkdownRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MarkdownRequest:
      properties:
        markdown_content:
          type: string
          title: Markdown Content
          description: Markdown content to be converted to PDF
      type: object
      required:
      - markdown_content
      title: MarkdownRequest
    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
    CompanyResearchRequest:
      properties:
        name:
          type: string
          title: Name
          description: Name of the company to research
        focus_query:
          type: string
          title: Focus Query
          description: Focus of the research
        headquarters:
          type: string
          title: Headquarters
          description: Company headquarters location
        website:
          type: string
          title: Website
          description: Company's website URL
        industry:
          type: string
          title: Industry
          description: Industry sector the company operates in
        crunchbaseToggle:
          type: boolean
          title: Crunchbasetoggle
          description: Toggle to include possible Crunchbase data
          default: false
        linkedinToggle:
          type: boolean
          title: Linkedintoggle
          description: Toggle to include possible LinkedIn data
          default: false
      type: object
      required:
      - name
      - focus_query
      - headquarters
      - website
      - industry
      title: CompanyResearchRequest
x-refined-from:
- eventscom-datagol-ai-openapi.yml
- eventscom-research-api-openapi.yml