Comprehensive REST APIs, official SDKs, and developer-first tooling designed to ship production-ready infrastructure in minutes, not months.
Provision your first cloud instance in under 60 seconds.
curl -X POST https://api.cloudnexus.com/v1/instances \\
-H "Authorization: Bearer $CN_API_KEY" \\
-H "Content-Type: application/json" \\
-d '{
"plan": "professional",
"region": "us-east-1",
"os": "ubuntu-22.04",
"name": "my-app-server"
}'
import cloudnexus
# Initialize client with your API key
client = cloudnexus.Client("$CN_API_KEY")
# Create a new cloud instance
instance = client.instances.create(
plan="professional",
region="us-east-1",
os="ubuntu-22.04",
name="my-app-server"
)
print(f"Instance deployed: {instance.id}")
const { CloudNexus } = require("@cloudnexus/sdk");
const client = new CloudNexus(process.env.CN_API_KEY);
async function deploy() {
const instance = await client.instances.create({
plan: "professional",
region: "us-east-1",
os: "ubuntu-22.04",
name: "my-app-server"
});
console.log(`Deployed: ${instance.id}`);
}
deploy();
package main
import (
"context"
"log"
"github.com/cloudnexus/sdk-go"
)
func main() {
client := cnexus.NewClient(os.Getenv("CN_API_KEY"))
ctx := context.Background()
inst, err := client.Instances.Create(ctx, &cnexus.CreateInstanceOpts{
Plan: "professional",
Region: "us-east-1",
OS: "ubuntu-22.04",
Name: "my-app-server",
})
if err != nil { log.Fatal(err) }
log.Printf("Deployed: %s", inst.ID)
}
Native libraries and command-line tools for every major platform.
pip install cloudnexus
Stablenpm i @cloudnexus/sdk
Stablego get cnexus-go
Stablecomposer require cnexus/sdk
Betacargo add cnexus
Betacnexus deploy --prod
StableEverything you need to integrate, deploy, and scale with confidence.
Complete endpoint documentation with request/response schemas, authentication flows, and rate limits.
View Reference âLearn about API keys, OAuth 2.0, service accounts, and role-based access control (RBAC).
View Guide âBest practices for multi-region deployments, load balancing, and high-availability setups.
View Guides âConfigure real-time event notifications for deployments, billing, security alerts, and metrics.
View Docs âUnderstand status codes, retry policies, pagination, and graceful degradation patterns.
View Reference âTrack SDK updates, API versioning, deprecation notices, and new feature releases.
View Changelog âGet help, share ideas, and stay updated with the CloudNexus ecosystem.