Events.com Workbook AI Generate API

The Workbook AI Generate API from Events.com — 3 operation(s) for workbook ai generate.

Operations 3

POST /ai/api/v2/ai-generate/internal/completion Ai Generate Internal #
GET /ai/api/v2/ai-generate/internal/databar/get-enrichments Get Databar Enrichment Options #
POST /ai/api/v2/ai-generate/internal/databar/run-enrichment Run Databar Enrichment #

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-workbook-ai-generate-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-workbook-ai-generate-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom Workbook AI Generate API
  version: 1.0.36
  description: 'Operations tagged Workbook AI Generate across 2 of this provider''s published API definitions: eventscom-datagol-ai-openapi.yml, eventscom-workbook-ai-generate-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: Workbook AI Generate
paths:
  /ai/api/v2/ai-generate/internal/completion:
    post:
      tags:
      - Workbook AI Generate
      summary: Ai Generate Internal
      operationId: ai_generate_internal
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIGenerateInternalRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/ai-generate/internal/databar/get-enrichments:
    get:
      tags:
      - Workbook AI Generate
      summary: Get Databar Enrichment Options
      operationId: get_databar_enrichment_options
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
  /ai/api/v2/ai-generate/internal/databar/run-enrichment:
    post:
      tags:
      - Workbook AI Generate
      summary: Run Databar Enrichment
      operationId: run_databar_enrichment
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RunEnrichmentRequest'
        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:
    AIGenerateInternalSettings:
      properties:
        prompt:
          type: string
          title: Prompt
          description: Prompt for AI Generation
        model:
          type: string
          title: Model
          description: Model for AI Generation
        web_access:
          type: boolean
          title: Web Access
          description: Web access for AI Generation
        web_search_provider:
          anyOf:
          - type: string
          - type: 'null'
          title: Web Search Provider
          description: Provider for web search (required when web_access is true)
        web_search_provider_key:
          anyOf:
          - type: string
          - type: 'null'
          title: Web Search Provider Key
          description: Key for provider (required when web_access is true)
      type: object
      required:
      - prompt
      - model
      - web_access
      title: AIGenerateInternalSettings
    AIGenerateInternalRequest:
      properties:
        row:
          additionalProperties: true
          type: object
          title: Row
          description: Row data for AI Generation
        ai_settings:
          $ref: '#/components/schemas/AIGenerateInternalSettings'
          description: AI settings for AI Generation
        llm_config:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Llm Config
          description: LLM configuration parameters
      type: object
      title: AIGenerateInternalRequest
    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
    RunEnrichmentRequest:
      properties:
        enrichment_id:
          type: integer
          title: Enrichment Id
        params:
          additionalProperties: true
          type: object
          title: Params
        databar_api_key:
          type: string
          title: Databar Api Key
      type: object
      required:
      - enrichment_id
      - params
      - databar_api_key
      title: RunEnrichmentRequest
x-refined-from:
- eventscom-datagol-ai-openapi.yml
- eventscom-workbook-ai-generate-api-openapi.yml