GET
/
browser
/
browser_id
/
{browser_id}
/
tabs
Get browser tabs
curl --request GET \
  --url https://app.nextbrowser.com/api/v1/browser/browser_id/{browser_id}/tabs \
  --header 'Authorization: <api-key>'
{
  "tabs": [
    {
      "debug_url": "ws://localhost:9222/devtools/browser/123e4567-e89b-12d3-a456-426614174000",
      "title": "Example Page",
      "url": "https://example.com"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in the format 'x-api-key <your-api-key>'

Path Parameters

browser_id
string
required

The ID of the browser instance

Response

Browser tabs retrieved successfully

tabs
object[]