Keboola Consumers API

The Consumers API from Keboola — 2 operation(s) for consumers.

Operations 5

GET /manage List consumers #
POST /manage Create consumer #
GET /manage/{componentId} Consumer detail #
PATCH /manage/{componentId} Update consumer #
DELETE /manage/{componentId} Delete consumer #

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-consumers-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-consumers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Keboola OAuth Service Consumers API
  version: 1.0.0
  contact:
    email: devel@keboola.com
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
tags:
- name: Consumers
paths:
  /manage:
    get:
      summary: List consumers
      operationId: consumersList
      tags:
      - Consumers
      description: 'Returns list of all registered consumers.

        '
      security:
      - ManageToken: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Consumer'
        '401':
          $ref: '#/components/responses/401_Unauthorized'
    post:
      summary: Create consumer
      operationId: consumerCreate
      tags:
      - Consumers
      description: 'Register a new OAuth consumer (component).

        '
      security:
      - ManageToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - componentId
              - friendlyName
              - oauthVersion
              - authUrl
              - tokenUrl
              - appKey
              - appSecret
              properties:
                componentId:
                  type: string
                friendlyName:
                  type: string
                oauthVersion:
                  type: string
                authUrl:
                  type: string
                tokenUrl:
                  type: string
                requestTokenUrl:
                  type:
                  - string
                  - 'null'
                appKey:
                  type: string
                appSecret:
                  type: string
                restrictCustomAuth:
                  type: boolean
      responses:
        '201':
          description: Consumer created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Consumer'
        '401':
          $ref: '#/components/responses/401_Unauthorized'
        '422':
          $ref: '#/components/responses/422_UnprocessableEntity'
  /manage/{componentId}:
    get:
      summary: Consumer detail
      operationId: consumerDetail
      tags:
      - Consumers
      description: 'Returns the consumer detail for given component.

        '
      security:
      - ManageToken: []
      parameters:
      - in: path
        name: componentId
        schema:
          type: string
        required: true
        description: Component ID
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Consumer'
        '401':
          $ref: '#/components/responses/401_Unauthorized'
        '404':
          $ref: '#/components/responses/404_NotFound'
    patch:
      summary: Update consumer
      operationId: consumerUpdate
      tags:
      - Consumers
      description: 'Update an existing consumer. All fields are optional.

        '
      security:
      - ManageToken: []
      parameters:
      - in: path
        name: componentId
        schema:
          type: string
        required: true
        description: Component ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                friendlyName:
                  type:
                  - string
                  - 'null'
                authUrl:
                  type:
                  - string
                  - 'null'
                tokenUrl:
                  type:
                  - string
                  - 'null'
                requestTokenUrl:
                  type:
                  - string
                  - 'null'
                appKey:
                  type:
                  - string
                  - 'null'
                appSecret:
                  type:
                  - string
                  - 'null'
                restrictCustomAuth:
                  type:
                  - boolean
                  - 'null'
      responses:
        '200':
          description: Consumer updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Consumer'
        '401':
          $ref: '#/components/responses/401_Unauthorized'
        '404':
          $ref: '#/components/responses/404_NotFound'
        '422':
          $ref: '#/components/responses/422_UnprocessableEntity'
    delete:
      summary: Delete consumer
      operationId: consumerDelete
      tags:
      - Consumers
      description: 'Delete an existing consumer.

        '
      security:
      - ManageToken: []
      parameters:
      - in: path
        name: componentId
        schema:
          type: string
        required: true
        description: Component ID
      responses:
        '204':
          description: Consumer deleted
        '401':
          $ref: '#/components/responses/401_Unauthorized'
        '404':
          $ref: '#/components/responses/404_NotFound'
components:
  schemas:
    Error:
      type: object
      required:
      - error
      - code
      - exceptionId
      - status
      properties:
        error:
          type: string
        code:
          type: integer
        exceptionId:
          type: string
        status:
          enum:
          - error
        context:
          type: object
    Consumer:
      type: object
      required:
      - componentId
      - friendlyName
      - oauthVersion
      - authUrl
      - tokenUrl
      - requestTokenUrl
      - appKey
      - appSecret
      - appSecretDocker
      - restrictCustomAuth
      properties:
        componentId:
          type: string
        friendlyName:
          type: string
        oauthVersion:
          type: string
        authUrl:
          type: string
        tokenUrl:
          type: string
        requestTokenUrl:
          type:
          - string
          - 'null'
        appKey:
          type: string
        appSecret:
          type: string
        appSecretDocker:
          type: string
        restrictCustomAuth:
          type: boolean
  responses:
    404_NotFound:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    422_UnprocessableEntity:
      description: Unprocessable entity
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    401_Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    StorageToken:
      type: apiKey
      in: header
      name: X-StorageApi-Token
    ManageToken:
      type: apiKey
      in: header
      name: X-KBC-ManageApiToken