Images API

Discover available browser images and configurations.

List Available Images

GET
https://api.example.com/orgs/{org_uuid}/api/images

Retrieve a list of all available browser images for your organization.

Request Example

curl -X GET "https://api.example.com/orgs/{org_uuid}/api/images" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json"

Response Example

{
  "images": [
    {
      "name": "ubuntu-20.04",
      "description": "Ubuntu 20.04 LTS with Chrome",
      "os": "linux",
      "browser": "chrome"
    },
    {
      "name": "ubuntu-22.04",
      "description": "Ubuntu 22.04 LTS with Chrome",
      "os": "linux",
      "browser": "chrome"
    },
    {
      "name": "windows-10",
      "description": "Windows 10 with Edge",
      "os": "windows",
      "browser": "edge"
    },
    {
      "name": "windows-11",
      "description": "Windows 11 with Edge",
      "os": "windows",
      "browser": "edge"
    }
  ]
}