Keboola Documentation API
The Documentation API from Keboola — 9 operation(s) for documentation.
The Documentation API from Keboola — 9 operation(s) for documentation.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/keboola-documentation-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Keboola Documentation API
version: '1.0'
description: 'Operations tagged Documentation across 3 of this provider''s published API definitions: keboola-ai-api-openapi.yml, keboola-query-api-openapi.yml, keboola-stream-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://query.north-europe.azure.keboola.com/
- url: https://stream.keboola.com/
tags:
- name: Documentation
paths:
/docs/question:
post:
summary: Ask a documentation question
operationId: askDocsQuestion
tags:
- Documentation
description: 'Ask a question about the documentation and get an answer with relevant sources.
'
security:
- ApiKeyAuth: []
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/AskDocsQuestionRequest'
responses:
'201':
description: Answer created successfully
content:
application/json:
schema:
$ref: '#/components/schemas/DocsResponse'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/docs/components/{componentId}:
get:
summary: Get component documentation
operationId: getComponentDocs
tags:
- Documentation
description: 'Get documentation for a specific component.
'
security:
- ApiKeyAuth: []
parameters:
- name: componentId
in: path
description: The ID of the component to get documentation for
required: true
schema:
type: string
responses:
'200':
description: Component documentation retrieved successfully
content:
application/json:
schema:
$ref: '#/components/schemas/ComponentDocsResponse'
default:
description: Error response
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/api/v1/documentation:
get:
summary: API Documentation
operationId: ''
tags:
- Documentation
description: Interactive API documentation with Swagger UI
responses:
'200':
description: HTML page with Swagger UI
content:
application/json:
schema:
type: string
servers:
- url: https://query.north-europe.azure.keboola.com/
/:
get:
summary: Redirect to /v1
operationId: ApiRootIndex
tags:
- Documentation
description: Redirect to /v1.
responses:
'301':
description: Moved Permanently response.
servers:
- url: https://stream.keboola.com/
/v1:
get:
summary: List API name and link to documentation.
operationId: ApiVersionIndex
tags:
- Documentation
description: List API name and link to documentation.
responses:
'200':
description: OK response.
content:
application/json:
schema:
$ref: '#/definitions/ServiceDetail'
required:
- api
- documentation
servers:
- url: https://stream.keboola.com/
/v1/documentation/openapi.json:
get:
summary: Swagger 2.0 JSON Specification
operationId: OpenapiJson
tags:
- Documentation
responses:
'200':
description: File downloaded
content:
application/json:
schema:
type: file
servers:
- url: https://stream.keboola.com/
/v1/documentation/openapi.yaml:
get:
summary: Swagger 2.0 YAML Specification
operationId: OpenapiYaml
tags:
- Documentation
responses:
'200':
description: File downloaded
content:
application/json:
schema:
type: file
servers:
- url: https://stream.keboola.com/
/v1/documentation/openapi3.json:
get:
summary: OpenAPI 3.0 JSON Specification
operationId: Openapi3Json
tags:
- Documentation
responses:
'200':
description: File downloaded
content:
application/json:
schema:
type: file
servers:
- url: https://stream.keboola.com/
/v1/documentation/openapi3.yaml:
get:
summary: OpenAPI 3.0 YAML Specification
operationId: Openapi3Yaml
tags:
- Documentation
responses:
'200':
description: File downloaded
content:
application/json:
schema:
type: file
servers:
- url: https://stream.keboola.com/
components:
schemas:
AskDocsQuestionRequest:
type: object
required:
- query
properties:
query:
type: string
description: The documentation question to ask
example: How do I configure the Database writer?
ComponentDocsResponse:
type: object
required:
- componentId
- componentType
- componentName
- componentCategories
- description
- longDescription
- documentationUrl
- documentation
- configurationSchema
- configurationRowSchema
- configurationDescription
- rootConfigurationExamples
- rowConfigurationExamples
- componentFlags
properties:
componentId:
type: string
description: Unique identifier of the component
example: keboola.wr-azure-event-hub
componentType:
type: string
description: Type of the component (e.g., writer, extractor)
example: writer
componentName:
type: string
description: Display name of the component
example: Azure Event Hub
componentCategories:
type: array
description: Categories the component belongs to
items:
type: string
example:
- Monitoring
description:
type: string
description: Short description of the component
longDescription:
type: string
description: Extended description of the component
documentationUrl:
type:
- string
- 'null'
description: URL to the component's documentation
format: uri
documentation:
type:
- string
- 'null'
description: Full markdown documentation content
configurationSchema:
type:
- object
- 'null'
description: JSON Schema for the component configuration
configurationRowSchema:
type:
- object
- 'null'
description: JSON Schema for the component configuration row
configurationDescription:
type:
- string
- 'null'
description: Human-readable description of the configuration process
rootConfigurationExamples:
type:
- array
- 'null'
items:
type: object
description: List of configuration examples
rowConfigurationExamples:
type:
- array
- 'null'
items:
type: object
description: List of configuration examples
componentFlags:
type:
- array
- 'null'
items:
type: string
description: List of component flags
synchronousActions:
type:
- array
- 'null'
items:
type: string
description: List of synchronous actions supported by the component
Error:
type: object
required:
- error
- code
- status
properties:
error:
type: string
example: The value foobar is invalid
code:
type: integer
example: 400
status:
type: string
enum:
- error
exceptionId:
type: string
example: job-runner-1234567890
DocsResponse:
type: object
required:
- response
- metadata
properties:
response:
type: string
description: The answer to the documentation question
example: To configure the Database writer, you need to...
metadata:
type: object
required:
- sources
properties:
sources:
type: array
description: List of documentation source URLs that were used to generate the answer
items:
type: string
format: uri
example:
- https://help.example.com/components/writers/database
- https://help.example.com/tutorial/write/
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: X-StorageApi-Token
StorageApiToken:
type: apiKey
name: X-StorageAPI-Token
in: header
storage-api-token:
type: apiKey
name: X-StorageApi-Token
in: header
x-refined-from:
- keboola-ai-api-openapi.yml
- keboola-query-api-openapi.yml
- keboola-stream-api-openapi.yml