Warning: JavaScript is not enabled or not loaded. Please enable JavaScript for the best experience.

Documentation

Cloud API Platform Documentation

Minimal, reliable, and developer-first docs.

Overview

Reliable, scalable cloud APIs for developers

This platform provides production-grade APIs for provisioning, networking, storage, and observability. It is built for predictable behavior, clear contracts, and fast integration into existing systems.

What you get

  • Consistent endpoints. Stable resource models with clear request and response schemas.
  • Scalable infrastructure. Horizontally scalable APIs designed for high-throughput workloads.
  • Reliable operation. Strong uptime targets, well-defined error codes, and idempotent semantics.

Use the sidebar to navigate authentication details, endpoint reference, and common questions.

Authentication

Authenticate requests with API keys

Use API Key and Secret Key headers to securely authenticate every request to the platform.

  1. 1

    Enable API access in the API Manager for your workspace.

  2. 2

    Generate an API Key and Secret Key. Multiple keys can be created for different environments or services.

  3. 3

    Send both values in every request using the required headers.

Required headers

X-API-Key: <your_api_key>
X-API-Secret: <your_secret_key>

Keep keys private and rotate them regularly.

Endpoints

Core API routes for common resources. All endpoints are prefixed with HTTPS and return JSON by default.

Users

Create, list, and manage user accounts within your organization.

/v1/users
Methods:
GET, POST
Auth:
Bearer token required

Projects

Provision and manage projects, environments, and resource metadata.

/v1/projects
Methods:
GET, POST, PATCH
Auth:
Bearer token required

Tokens

Issue and rotate API access tokens for automation and CI/CD workflows.

/v1/tokens
Methods:
POST, DELETE
Auth:
Bearer token required

FAQ

Concise answers to common developer questions about the API platform.

Create an API key in the dashboard, then call the base URL with your key in the Authorization header as a Bearer token. Start with the Overview and Authentication sections to validate a simple request.