curl --request GET \
--url https://api.plane.com/v1/sandboxes \
--header 'Authorization: Bearer <token>'{
"sandboxes": [
{
"id": "sbx_3vNqM7xRk2pWsT",
"name": "Airfoil Sandbox",
"status": "ready",
"workspace": "wsp_4kW3GnQCo1CQ49",
"sandbox_workspace": "wsp_test_9nD31mQzRa8kF2",
"created": "2026-03-28T17:20:00Z",
"updated": "2026-03-28T17:21:04Z"
}
],
"cursor": "WyIyMDI2LTAzLTI4VDE3OjIxOjA0LjAwMDAwMFoiLCJzYnhfM3ZOcU03eFJrMnBXc1QiXQ"
}
Returns the sandboxes owned by your live Plane workspace.
curl --request GET \
--url https://api.plane.com/v1/sandboxes \
--header 'Authorization: Bearer <token>'{
"sandboxes": [
{
"id": "sbx_3vNqM7xRk2pWsT",
"name": "Airfoil Sandbox",
"status": "ready",
"workspace": "wsp_4kW3GnQCo1CQ49",
"sandbox_workspace": "wsp_test_9nD31mQzRa8kF2",
"created": "2026-03-28T17:20:00Z",
"updated": "2026-03-28T17:21:04Z"
}
],
"cursor": "WyIyMDI2LTAzLTI4VDE3OjIxOjA0LjAwMDAwMFoiLCJzYnhfM3ZOcU03eFJrMnBXc1QiXQ"
}
cursor, starting_after, or ending_before may be provided.
Returns a dictionary with a sandboxes property that contains an array of
Sandbox objects. When another page is available,
the response also includes a cursor value.
{
"sandboxes": [
{
"id": "sbx_3vNqM7xRk2pWsT",
"name": "Airfoil Sandbox",
"status": "ready",
"workspace": "wsp_4kW3GnQCo1CQ49",
"sandbox_workspace": "wsp_test_9nD31mQzRa8kF2",
"created": "2026-03-28T17:20:00Z",
"updated": "2026-03-28T17:21:04Z"
}
],
"cursor": "WyIyMDI2LTAzLTI4VDE3OjIxOjA0LjAwMDAwMFoiLCJzYnhfM3ZOcU03eFJrMnBXc1QiXQ"
}
Was this page helpful?