Overview
Cloud API Platform
A unified RESTful interface for provisioning, managing, and monitoring cloud resources programmatically. Build integrations with confidence.
What is the Cloud API?
The Cloud API provides a single entry point for interacting with compute, storage, networking, and identity services across your infrastructure. Every action available in the console can be performed through the API, enabling automation, CI/CD pipelines, and custom tooling.
Core Capabilities
Create, update, and delete compute instances, volumes, and networks via simple REST calls.
Manage API keys, service accounts, and role-based access control for teams.
Query metrics, retrieve audit logs, and configure alerting thresholds programmatically.
Subscribe to real-time events and trigger workflows on resource state changes.
Base URL
All API requests are made to the following base URL over HTTPS:
GET https://api.cloudplatform.io/v2
Common Use Cases
-
Infrastructure as Code — Provision and tear down environments from CI/CD pipelines using API calls.
-
Custom Dashboards — Pull real-time metrics to build internal monitoring interfaces.
-
Multi-tenant Platforms — Automate resource isolation and access control for SaaS products.
-
Cost Optimization — Schedule auto-scaling and deprovisioning to control cloud spend.
Quick Start
Make your first request in under a minute. Grab an API key from the Authentication section, then run:
$ curl request
curl -X GET https://api.cloudplatform.io/v2/instances \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Explore the full endpoint reference in the Endpoints section.