API Documentation

Integrate your applications with the MDBOX Cloud global swarm using our RESTful API endpoints. All requests require cryptographic token authentication.

Deploy Swarm Cluster

Endpoint: POST /v1/swarm/deploy

// Request Payload
{
  "datacenter": "global-edge",
  "vcpus": 32,
  "ram_gb": 128,
  "image": "ubuntu-24.04-ai-optimized"
}
// Success Response (200 OK)
{
  "status": "provisioning",
  "cluster_id": "c_9f82b1a",
  "estimated_ready_ms": 450,
  "endpoints": [
    "edge1.mdbox.cloud",
    "edge2.mdbox.cloud"
  ]
}