Keboola Admin Apps API

The Admin Apps API from Keboola — 5 operation(s) for admin apps.

Operations 6

GET /admin/apps List apps
GET /admin/apps/{id} Get app detail
PATCH /admin/apps/{id} Update app
POST /admin/apps/{id}/publish Approve app publishing
POST /admin/apps/{id}/reject Reject app publishing
GET /admin/changes List app changes

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-admin-apps-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-admin-apps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Keboola Developer Portal Admin Apps 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: Admin Apps
paths:
  /admin/apps:
    get:
      tags:
      - Admin Apps
      summary: List apps
      description: List all apps. Requires an admin token.
      parameters:
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 1000
      - name: filter
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: List of apps
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/App'
  /admin/apps/{id}:
    get:
      tags:
      - Admin Apps
      summary: Get app detail
      description: Get app detail across all vendors. Requires an admin token.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: App detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/App'
    patch:
      tags:
      - Admin Apps
      summary: Update app
      description: Update an app across vendors. Requires an admin token.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
              properties:
                name:
                  type: string
                  maxLength: 128
                type:
                  type: string
                  enum:
                  - extractor
                  - application
                  - writer
                  - processor
                  - code-pattern
                  - other
                  - transformation
                  - data-app
                shortDescription:
                  type: string
                longDescription:
                  type: string
                vendor:
                  type: string
                  maxLength: 32
                isPublic:
                  type: boolean
                isDeprecated:
                  type: boolean
                repository:
                  type: object
                  additionalProperties: true
            example:
              shortDescription: Reads reports defined by awql queries
      responses:
        '200':
          description: App updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/App'
  /admin/apps/{id}/publish:
    post:
      tags:
      - Admin Apps
      summary: Approve app publishing
      description: Approve a request to publish an app. Requires an admin token.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: App publishing approved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/App'
  /admin/apps/{id}/reject:
    post:
      tags:
      - Admin Apps
      summary: Reject app publishing
      description: Reject a request to publish an app. Requires an admin token.
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - reason
              properties:
                reason:
                  type: string
      responses:
        '200':
          description: App publishing rejected
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/App'
  /admin/changes:
    get:
      tags:
      - Admin Apps
      summary: List app changes
      description: Returns list of last changes across all apps or a specified app. Requires an admin token.
      parameters:
      - name: since
        in: query
        required: false
        description: Date in YYYY-MM-DD format, default is -24 hours
        schema:
          type: string
          format: date
      - name: until
        in: query
        required: false
        description: Date in YYYY-MM-DD format, default is now
        schema:
          type: string
          format: date
      - name: appId
        in: query
        required: false
        description: Return changes for the specified app only
        schema:
          type: string
      responses:
        '200':
          description: List of app changes
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  additionalProperties: true
                  properties:
                    id:
                      type: string
                    createdOn:
                      type: string
                      format: date-time
                    createdBy:
                      type: string
                    changes:
                      type: array
                      items:
                        type: object
                        additionalProperties: true
components:
  schemas:
    App:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        vendor:
          type: string
        name:
          type: string
        type:
          type: string
          enum:
          - extractor
          - application
          - writer
          - processor
          - code-pattern
          - other
          - transformation
          - data-app
        shortDescription:
          type: string
        longDescription:
          type: string
        version:
          type: integer
        isPublic:
          type: boolean
        isApproved:
          type: boolean
        repository:
          type: object
          additionalProperties: true
          properties:
            type:
              type: string
            name:
              type: string
            uri:
              type: string
            tag:
              type: string
  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.

        '