v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB
Sandbox

Create a Sandbox Compute pool

post/sandbox

Request body

OR

Example request

{
  "tier": "small",
  "name": "my-sandbox",
  "models": [
    "rtdetr-v2-r50vd"
  ],
  "model_categories": [
    "object_detection"
  ]
}

Response

Sandbox accepted for provisioning

successboolean

Example response

{
  "success": true,
  "data": {
    "sandbox_id": "bx-123abc",
    "name": "my-sandbox",
    "tier": "small",
    "status": "active",
    "models": [
      "rtdetr-v2-r50vd"
    ],
    "model_categories": [
      "object_detection"
    ],
    "region": "aws-us-east-1"
  }
}