v5

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

List Sandbox Compute pools

get/sandbox

Query parameters

status'provisioning' | 'active' | 'alert' | 'stopping' | 'stopped' | 'failed'
pageinteger
page_sizeinteger

Response

Sandbox list

successboolean

Example response

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