Keboola Encrypt API

The Encrypt API from Keboola — 1 operation(s) for encrypt.

Operations 1

POST /encrypt Encrypt 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/keboola-encrypt-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 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 Specification

keboola-encrypt-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Encryption Encrypt API
  version: ''
  description: 'Encryption is part of the [Job Runner](https://developers.keboola.com/extend/docker-runner/) component. Job Runner

    is a Keboola service, that runs configurations of components as Keboola Connection jobs.'
servers:
- url: https://encryption.{stack}
  variables:
    stack:
      enum:
      - keboola.com
      - eu-central-1.keboola.com
      - north-europe.azure.keboola.com
      - europe-west2.gcp.keboola.com
      - europe-west3.gcp.keboola.com
      - us-east4.gcp.keboola.com
      - eu-west-1.aws.keboola.dev
      - east-us-2.azure.keboola-testing.com
      - us-central1.gcp.keboola.dev
      default: keboola.com
- url: http://localhost:8080
tags:
- name: Encrypt
paths:
  /encrypt:
    post:
      summary: Encrypt data
      operationId: encryptData
      tags:
      - Encrypt
      description: Encrypts a string or a JSON
      parameters:
      - name: componentId
        in: query
        description: Keboola Connection Component Id
        required: false
        schema:
          type: string
        examples:
          id:
            value: keboola.ex-example
      - name: projectId
        in: query
        description: Keboola Connection Project Id
        required: false
        schema:
          type: string
        examples:
          id:
            value: '1234'
      - name: configId
        in: query
        description: Keboola Connection Configuration Id (when used, `projectId` must also be specified)
        required: false
        schema:
          type: string
        examples:
          id:
            value: my-config-id
      - name: branchType
        in: query
        description: Development branch type, either 'default' for production branch or 'dev' for development branch.
        required: false
        schema:
          type: string
          enum:
          - default
          - dev
        examples:
          id:
            value: default
      requestBody:
        content:
          application/json:
            example:
              '#test': MyValueToBeEncrypted
          text/plain:
            example: KBC::ProjectSecure::ENCODEDSTRING==
      responses:
        '200':
          description: Success response
          content:
            application/json:
              schema:
                type: object
                items:
                  type: string
                example:
                  '#test': KBC::ProjectSecure::xxxxxx
            text/plain:
              schema:
                type: object
                items:
                  type: string
                example: KBC::ProjectSecure::ENCODEDSTRING==
components:
  securitySchemes:
    configMigration:
      type: apiKey
      in: header
      name: X-KBC-ManageApiToken
      description: Assigned user must have `can-migrate-secrets` feature