Keboola Vendor API

Vendor membership and service accounts.

Operations 10

POST /vendors Create a vendor
PATCH /vendors/{vendor} Update a vendor
POST /vendors/{vendor}/users Request to join a vendor
GET /vendors/{vendor}/users List users
POST /vendors/{vendor}/users/{username} Accept request to join
DELETE /vendors/{vendor}/users/{username} Remove user / delete service account
POST /vendors/{vendor}/invitations/{email} Invite user to a vendor
GET /vendors/{vendor}/invitations/{email}/{code} Accept invitation to a vendor
POST /vendors/{vendor}/credentials Create service account
GET /vendors/{vendor}/user-requests List join requests

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-vendor-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-vendor-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Keboola Developer Portal Vendor API
  description: 'API for the Keboola Developer Portal — vendor, app (component) and user management for Keboola Connection. Most calls authenticate with a JWT token returned by `POST /auth/login`, passed verbatim in the `Authorization` header (valid for 1 hour; refresh with `GET /auth/token`).

    '
  version: 1.0.0
servers:
- url: https://apps-api.keboola.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Vendor
  description: Vendor membership and service accounts.
paths:
  /vendors:
    post:
      tags:
      - Vendor
      summary: Create a vendor
      description: 'Create a vendor. You will receive an email confirmation once it is approved by Keboola.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              - address
              - email
              properties:
                name:
                  type: string
                  maxLength: 128
                address:
                  type: string
                  maxLength: 255
                email:
                  type: string
                  format: email
                  maxLength: 128
                projectUrl:
                  type: string
                  format: uri
            example:
              name: Company ltd.
              address: 410 Terry Ave. North, Seattle, WA
              email: info@company.com
              projectUrl: https://connection.keboola.com/admin/projects/313
      responses:
        '201':
          description: Vendor created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Vendor'
  /vendors/{vendor}:
    patch:
      tags:
      - Vendor
      summary: Update a vendor
      description: Update vendor details.
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  maxLength: 128
                address:
                  type: string
                  maxLength: 255
                email:
                  type: string
                  format: email
                  maxLength: 128
                projectUrl:
                  type: string
                  format: uri
            example:
              name: Company ltd.
              address: 410 Terry Ave. North, Seattle, WA
              email: info@company.com
      responses:
        '200':
          description: Vendor updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Vendor'
  /vendors/{vendor}/users:
    post:
      tags:
      - Vendor
      summary: Request to join a vendor
      description: 'Request to join a vendor. You will receive an email confirmation once it is approved.

        '
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Request submitted
    get:
      tags:
      - Vendor
      summary: List users
      description: Lists all regular users or service accounts of the vendor.
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: service
        in: query
        required: false
        schema:
          type: integer
          default: 0
        description: List service accounts instead of regular users
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 1000
      responses:
        '200':
          description: List of users
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'
  /vendors/{vendor}/users/{username}:
    post:
      tags:
      - Vendor
      summary: Accept request to join
      description: Accept a user's request to join the vendor.
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Request accepted
    delete:
      tags:
      - Vendor
      summary: Remove user / delete service account
      description: 'Remove another user or yourself from the vendor; service accounts will be deleted instead.

        '
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: User removed
  /vendors/{vendor}/invitations/{email}:
    post:
      tags:
      - Vendor
      summary: Invite user to a vendor
      description: Sends an email with a link to accept the invitation.
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: email
        in: path
        required: true
        schema:
          type: string
          format: email
      responses:
        '204':
          description: Invitation sent
  /vendors/{vendor}/invitations/{email}/{code}:
    get:
      tags:
      - Vendor
      summary: Accept invitation to a vendor
      description: Confirmation link from the invitation email; returns an HTML page.
      security: []
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: email
        in: path
        required: true
        schema:
          type: string
          format: email
      - name: code
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: HTML confirmation page
          content:
            text/html:
              schema:
                type: string
  /vendors/{vendor}/credentials:
    post:
      tags:
      - Vendor
      summary: Create service account
      description: 'Generates a service account which can be used e.g. for continuous integration and returns its username and password.

        '
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - name
              properties:
                name:
                  type: string
                  description: Can only contain a-z, A-Z, 0-9, and underscore _ and has max length 64 chars.
                  maxLength: 64
                description:
                  type: string
                  description: Max length 256 chars.
                  maxLength: 256
            example:
              name: travis_ci
              description: Service user for Travis CI
      responses:
        '200':
          description: Service account created
          content:
            application/json:
              schema:
                type: object
                properties:
                  username:
                    type: string
                  password:
                    type: string
                  description:
                    type: string
                  createdOn:
                    type: string
              example:
                username: service.keboola.travis_ci
                password: '{password}'
                description: Service user for Travis CI
                createdOn: ''
  /vendors/{vendor}/user-requests:
    get:
      tags:
      - Vendor
      summary: List join requests
      description: Lists requests to join the vendor.
      parameters:
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 1000
      responses:
        '200':
          description: List of join requests
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: true
                  properties:
                    username:
                      type: string
                    createdOn:
                      type: string
components:
  schemas:
    User:
      type: object
      additionalProperties: true
      properties:
        name:
          type: string
        email:
          type: string
          format: email
        vendors:
          type: array
          items:
            type: string
        isAdmin:
          type: boolean
    Vendor:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        name:
          type: string
        address:
          type: string
        email:
          type: string
          format: email
        isPublic:
          type: boolean
        isApproved:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'JWT token from `POST /auth/login`, passed verbatim (no "Bearer " prefix). Admin endpoints require a token belonging to an administrator.

        '