v2.4 · stable
Updated Apr 28, 2026
Overview
The Cloud API Platform gives developers a single, predictable interface to deploy, scale, and observe cloud workloads. Built on REST principles with JSON payloads, every endpoint is versioned, rate-limited, and designed for production use from day one.
This guide walks you through the core concepts, authentication flow, available endpoints, and common integration patterns. If you've used a modern REST API before, you'll feel at home in minutes.
# Key capabilities
-
→
Predictable REST API
Resource-oriented URLs, JSON bodies, standard HTTP codes.
-
→
Token-based auth
Scoped API keys with rotation and per-environment isolation.
-
→
Global low-latency edge
Sub-100ms response times across 30+ regions worldwide.
-
→
Webhooks & streaming
Real-time events via signed webhooks or persistent SSE streams.
-
→
Idempotent writes
Safely retry any mutating request with idempotency keys.
-
→
First-class SDKs
Official libraries for Node, Python, Go, Ruby, and Rust.
# Quick start
You'll need an API key from your dashboard. All requests are sent to https://api.cloudplatform.dev/v2 over HTTPS. Authenticate by passing your key as a Bearer token in the Authorization header.
- 1Generate an API key from the Authentication section.
- 2Send a test request to
/v2/ping to verify connectivity.
- 3Explore available Endpoints and integrate.
# Example request
A simple authenticated GET request and the JSON response you can expect:
GET
/v2/projects/proj_8f2a/status
cURL
$ curl https://api.cloudplatform.dev/v2/projects/proj_8f2a/status \
-H "Authorization: Bearer sk_live_xxxxxxxxxxxx" \
-H "Accept: application/json"
200 OK
application/json
Response
{
"id": "proj_8f2a",
"name": "production-api",
"status": "healthy",
"region": "us-east-1",
"uptime": 99.998,
"updated_at": "2026-04-28T14:22:09Z"
}