Browser
List all browser tabs
Retrieve a comprehensive list of all currently open browser tabs in the specified box. This endpoint returns detailed information about each tab including its id, title, current URL, and favicon. The returned id can be used for subsequent operations like navigation, closing, or updating tabs. This is essential for managing multiple browser sessions and understanding the current state of the browser environment.
get/boxes/{boxId}/browser/tabs
Path parameters
boxIdstring required
Example:c9bdc193-b54b-4ddb-a035-5ac0c598d32d
Box ID
Response
Successfully retrieved list of browser tabs
Example response
{
"data": [
{
"id": "1",
"title": "Google",
"url": "https://www.google.com",
"favicon": "https://www.google.com/favicon.ico",
"active": true,
"loading": false
},
{
"id": "2",
"title": "Bing",
"url": "https://www.bing.com",
"favicon": "https://www.bing.com/favicon.ico",
"active": false,
"loading": true
}
]
}