Skip to main content
The OwnKube API allows you to programmatically manage applications, deployments, databases, and other resources.
The OwnKube API is currently in beta. Endpoints and schemas may change.

Base URL

https://api.ownkube.io/v1

Authentication

All API requests require authentication via a bearer token. See Authentication for details.

Rate limits

  • Standard plan: 100 requests per minute
  • Enterprise plan: Custom limits

Response format

All responses are returned in JSON format:
{
  "data": { ... },
  "meta": {
    "request_id": "req_abc123"
  }
}

Errors

Errors follow a consistent format with plain-English messages:
{
  "error": {
    "code": "not_found",
    "message": "Application not found",
    "request_id": "req_abc123"
  }
}