Keboola Credentials API
The Credentials API from Keboola — 3 operation(s) for credentials.
The Credentials API from Keboola — 3 operation(s) for credentials.
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-credentials-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 OAuth Service Credentials API
version: 1.0.0
contact:
email: devel@keboola.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
tags:
- name: Credentials
paths:
/credentials:
get:
summary: Credentials list
operationId: credentialsList
tags:
- Credentials
description: 'Returns list of component credentials.
'
security:
- StorageToken: []
parameters:
- in: query
name: componentId
schema:
type: string
description: Component ID
- in: query
name: branchId
schema:
type: string
description: 'Branch ID
Use value `null` to get credentials without branchId.
'
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Credentials'
'401':
$ref: '#/components/responses/401_Unauthorized'
'403':
$ref: '#/components/responses/403_Forbidden'
/credentials/{componentId}:
get:
summary: Component credentials list
operationId: componentCredentialsList
tags:
- Credentials
description: 'Returns list of component credentials.
'
security:
- StorageToken: []
parameters:
- in: path
name: componentId
schema:
type: string
required: true
description: Component ID
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Credentials'
'401':
$ref: '#/components/responses/401_Unauthorized'
'403':
$ref: '#/components/responses/403_Forbidden'
post:
summary: Create credentials
operationId: componentCredentialsCreate
tags:
- Credentials
description: 'Call the endpoint to create new credentials for given component.
'
security:
- StorageToken: []
parameters:
- in: path
name: componentId
schema:
type: string
required: true
description: Component ID
requestBody:
required: true
content:
application/x-www-form-urlencoded:
schema:
type: object
required:
- id
- authorizedFor
- '#data'
properties:
id:
type: string
description: Credentials ID
authorizedFor:
type: string
description: Authorization description
'#data':
type: string
description: Encrypted data, e.g. OAuth token
branchId:
type:
- string
- 'null'
description: 'ID of the branch where the credentials should live. If not specified, the credentials will be
considered as project-wide.
The property is not required for now, to keep compatibility with existing clients. But it will be
required in the future (but still nullable), to ensure the client has considered if they want to
create project-wide or branch-specific credentials.
'
responses:
'201':
description: Credentials created
content:
application/json:
schema:
$ref: '#/components/schemas/Credentials'
'400':
$ref: '#/components/responses/400_BadRequest'
'404':
$ref: '#/components/responses/404_NotFound'
'422':
$ref: '#/components/responses/422_UnprocessableEntity'
/credentials/{componentId}/{name}:
get:
summary: Credentials detail
operationId: credentialsDetail
tags:
- Credentials
description: 'Returns the credentials detail.
'
security:
- StorageToken: []
parameters:
- in: path
name: componentId
schema:
type: string
required: true
description: Component ID
- in: path
name: name
schema:
type: string
required: true
description: Credentials name (authorization ID)
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/Credentials'
'401':
$ref: '#/components/responses/401_Unauthorized'
'403':
$ref: '#/components/responses/403_Forbidden'
delete:
summary: Delete credentials
operationId: credentialsDelete
tags:
- Credentials
description: 'Delete existing credentials.
'
security:
- StorageToken: []
parameters:
- in: path
name: componentId
schema:
type: string
required: true
description: Component ID
- in: path
name: name
schema:
type: string
required: true
description: Credentials name (authorization ID)
responses:
'204':
description: Credentials deleted
'401':
$ref: '#/components/responses/401_Unauthorized'
'404':
$ref: '#/components/responses/404_NotFound'
components:
schemas:
Credentials:
type: object
required:
- id
- branchId
- authorizedFor
- creator
- created
- oauthVersion
- appKey
- '#appSecret'
- '#data'
properties:
id:
type: string
branchId:
type:
- string
- 'null'
authorizedFor:
type: string
creator:
type: object
required:
- id
- description
properties:
id:
type: string
description:
type:
- string
- 'null'
created:
type: string
format: date-time
oauthVersion:
type: string
appKey:
type: string
'#appSecret':
type: string
'#data':
type: string
Error:
type: object
required:
- error
- code
- exceptionId
- status
properties:
error:
type: string
code:
type: integer
exceptionId:
type: string
status:
enum:
- error
context:
type: object
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'
403_Forbidden:
description: Forbidden
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
401_Unauthorized:
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
400_BadRequest:
description: Bad request
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