Skip to main content
BrowsersGet a list of all browsers supported in HyperExecute.
TestMu AI
StatusCommunityBlog
Browsers

Get a list of all browsers supported in HyperExecute.

This API returns a current list of all supported browser names and versions for a specific operating system in HyperExecute. This information assists you in planning your cross-browser testing strategy and ensuring compatibility across multiple browser environments.

GET
/v2.0/browsers
Get a list of all browsers supported in HyperExecute.
curl --request GET \
--url "https://api.hyperexecute.cloud/v2.0/browsers" \
--header "Authorization: Basic <encoded-value>"
{
"message": "",
"platforms": {
"desktop": [
{
"platform": "Windows 10",
"browsers": [
{
"name": "Firefox",
"version": "99.0"
}
],
"resolutions": [
"1024x768",
"1280x800",
"1280x1024",
"1366x768"
]
}
]
},
"status": 200
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

platformstring

windows 11, windows 10, macos monterey, macos ventura, ubuntu 20

stableboolean

If true, will return only stable version of browsers.

Response

application/json

Successful operation

messageobject
platformsobject
platforms.desktopobject[]
statusinteger
Get a list of all browsers supported in HyperExecute.
curl --request GET \
--url "https://api.hyperexecute.cloud/v2.0/browsers" \
--header "Authorization: Basic <encoded-value>"
{
"message": "",
"platforms": {
"desktop": [
{
"platform": "Windows 10",
"browsers": [
{
"name": "Firefox",
"version": "99.0"
}
],
"resolutions": [
"1024x768",
"1280x800",
"1280x1024",
"1366x768"
]
}
]
},
"status": 200
}