Browsers › Get a list of all browsers supported in HyperExecute.
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 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 Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Query Parameters platform string
windows 11, windows 10, macos monterey, macos ventura, ubuntu 20
stable boolean
If true, will return only stable version of browsers.
Response 200▼
application/json Successful operation
platforms object
▶ Hide child attributesplatforms. desktop object[]
▶ Show child attributes
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
}