Events.com Data Download API

The Data Download API from Events.com — 1 operation(s) for data download.

Operations 1

POST /ai/api/v2/{agent_type}/download-data Download Agent Data #

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-data-download-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-data-download-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Data Download API
  version: 1.0.36
  description: 'Operations tagged Data Download across 2 of this provider''s published API definitions: eventscom-data-download-api-openapi.yml, eventscom-datagol-ai-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: Data Download
paths:
  /ai/api/v2/{agent_type}/download-data:
    post:
      tags:
      - Data Download
      summary: Download Agent Data
      description: "Unified download endpoint for jira-agent-v2, hubspot-agent-v2, atlassian-agent, fellow-agent-v2,\ncustom-agent, and python-agent.\nDownloads data files as a zip file, or single file directly from S3\n\nArgs:\n    agent_type: \"jira-agent-v2\", \"hubspot-agent-v2\", \"atlassian-agent\", \"fellow-agent-v2\",\n        \"custom-agent\", or \"python-agent\"\n    body: Request containing list of file paths and optional workspaceId"
      operationId: download_agent_data_ai_api_v2__agent_type__download_data_post
      parameters:
      - name: agent_type
        in: path
        required: true
        schema:
          type: string
          title: Agent Type
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataDownloadRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    servers:
    - url: https://datagol-be.events.com/
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  schemas:
    DataDownloadRequest:
      properties:
        data:
          items:
            type: string
          type: array
          title: Data
          description: List of file paths to download from S3
        workspaceId:
          anyOf:
          - type: string
          - type: 'null'
          title: Workspaceid
          description: Workspace ID (optional, kept for backward compatibility)
      type: object
      required:
      - data
      title: DataDownloadRequest
      description: Request model for downloading data files from S3
    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
x-refined-from:
- eventscom-data-download-api-openapi.yml
- eventscom-datagol-ai-openapi.yml