Events.com SQL Parser APIs API

The SQL Parser APIs API from Events.com — 6 operation(s) for sql parser apis.

Operations 6

POST /ai/api/v2/sqlParser/dataSources Sql Parser Data Source #
POST /ai/api/v2/sqlParser/columns Sql Parser Columns #
POST /ai/api/v2/sqlParser/links Sql Parser Relationships #
POST /ai/api/v2/sqlParser/subQueries Sql Parser Relationships #
POST /ai/api/v2/sqlParser/removeComments Remove Comments #
POST /ai/api/v2/sqlParser/changeDialect Change Dialect #

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-sql-parser-apis-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-sql-parser-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Eventscom SQL Parser APIs API
  version: 1.0.36
  description: 'Operations tagged SQL Parser APIs across 2 of this provider''s published API definitions: eventscom-datagol-ai-openapi.yml, eventscom-sql-parser-apis-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: SQL Parser APIs
paths:
  /ai/api/v2/sqlParser/dataSources:
    post:
      tags:
      - SQL Parser APIs
      summary: Sql Parser Data Source
      operationId: sql_parser_data_source_ai_api_v2_sqlParser_dataSources_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        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/sqlParser/columns:
    post:
      tags:
      - SQL Parser APIs
      summary: Sql Parser Columns
      operationId: sql_parser_columns_ai_api_v2_sqlParser_columns_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ParsedSqlColumnsList'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /ai/api/v2/sqlParser/links:
    post:
      tags:
      - SQL Parser APIs
      summary: Sql Parser Relationships
      operationId: sql_parser_relationships_ai_api_v2_sqlParser_links_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        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/sqlParser/subQueries:
    post:
      tags:
      - SQL Parser APIs
      summary: Sql Parser Relationships
      operationId: sql_parser_relationships_ai_api_v2_sqlParser_subQueries_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        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/sqlParser/removeComments:
    post:
      tags:
      - SQL Parser APIs
      summary: Remove Comments
      operationId: remove_comments_ai_api_v2_sqlParser_removeComments_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        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/sqlParser/changeDialect:
    post:
      tags:
      - SQL Parser APIs
      summary: Change Dialect
      operationId: change_dialect_ai_api_v2_sqlParser_changeDialect_post
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: true
              type: object
              title: Body
        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:
    ParsedSqlColumn:
      properties:
        name:
          type: string
          title: Name
          description: Name of the column.
          default: ''
        sources:
          items:
            type: string
          type: array
          title: Sources
          description: List of sources.
          default: []
        functions:
          items:
            type: string
          type: array
          title: Functions
          description: List of functions.
          default: []
        dataType:
          anyOf:
          - type: string
          - type: 'null'
          title: Datatype
          description: Data type of the column.
          default: ''
      type: object
      title: ParsedSqlColumn
    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
    ParsedSqlColumnsList:
      properties:
        error:
          anyOf:
          - type: string
          - type: 'null'
          title: Error
          description: Error message.
        invalid_columns:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Invalid Columns
          description: List of invalid columns.
          default: []
        columns:
          items:
            $ref: '#/components/schemas/ParsedSqlColumn'
          type: array
          title: Columns
          description: List of columns.
          default: []
      type: object
      title: ParsedSqlColumnsList
x-refined-from:
- eventscom-datagol-ai-openapi.yml
- eventscom-sql-parser-apis-api-openapi.yml