Kubiya LogoKubiya Developer Docs

Secrets API

API endpoints for managing secrets in the Kubiya platform

Secrets API

This playground makes API calls to Kubiya API through a secure server-side proxy. Your requests never expose your API token directly to the browser.

Endpoints

MethodPathDescription
PUT/api/v1/secretsUpdate secrets
GET/api/v1/secretsList all secrets
POST/api/v1/secretsCreate a new secret

Example Usage

PUT /api/v1/secrets

Request body:

{
  "key": "secret-key",
  "value": "secret-value"
}
GET /api/v1/secrets

Response:

[
  { "key": "secret-key", "value": "secret-value" }
]
POST /api/v1/secrets

Request body:

{
  "key": "secret-key",
  "value": "secret-value"
}

Secrets are used to securely store sensitive information for use by agents and tools.

On this page