Skip to main content
GET
/
v1
/
sandboxes
List sandboxes
curl --request GET \
  --url https://api.hopx.dev/v1/sandboxes \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "auth_token": "<string>",
      "created_at": "<string>",
      "direct_url": "<string>",
      "expires_at": "<string>",
      "id": "<string>",
      "internet_access": true,
      "live_mode": true,
      "node_id": "<string>",
      "object": "<string>",
      "organization_id": 123,
      "preview_url": "<string>",
      "public_host": "<string>",
      "region": "<string>",
      "request_id": "<string>",
      "resources": {
        "disk_mb": 123,
        "memory_mb": 123,
        "vcpu": 123
      },
      "status": "<string>",
      "template_id": "<string>",
      "template_name": "<string>",
      "timeout_seconds": 123,
      "token_expires_at": "<string>"
    }
  ],
  "has_more": true,
  "object": "<string>",
  "request_id": "<string>",
  "url": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key for authentication (format: sk_live_...)

Query Parameters

limit
integer
default:100

Number of results to return (max 100)

status
string

Filter by status (running, stopped, paused, creating)

region
string

Filter by region

Response

List of sandboxes

data
object[]
has_more
boolean
object
string
request_id
string
url
string