Skip to main content

API tokens

Generate API tokens from your OwnKube dashboard under Settings > API Tokens.

Usage

Include your token in the Authorization header of every request:
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
  https://api.ownkube.io/v1/apps

Token scopes

ScopeAccess
readRead-only access to resources
writeCreate and modify resources
adminFull access including team management

Security best practices

  • Store tokens in environment variables, never in source code
  • Use the minimum scope required for your use case
  • Rotate tokens regularly
  • Revoke tokens immediately if compromised