Browser Pools
Create a browser pool
Create a new browser pool with the specified configuration and size. Pooled browsers load their profile read-only: any save_changes on the profile is ignored (not rejected), so pooled browsers never persist changes back to the profile.
post/browser_pools
Request body
Example request
{
"size": 10,
"name": "my-pool",
"stealth": true,
"refresh_on_profile_update": true,
"viewport": {
"width": 1280,
"height": 800,
"refresh_rate": 60
},
"kiosk_mode": true,
"start_url": "https://example.com"
}Response
Browser pool created successfully
Example response
{
"id": "iv25ujqf37x3j07dwoffegqr",
"name": "my-pool",
"available_count": 85,
"acquired_count": 15,
"browser_pool_config": {
"size": 10,
"name": "my-pool",
"stealth": true,
"refresh_on_profile_update": true,
"viewport": {
"width": 1280,
"height": 800,
"refresh_rate": 60
},
"kiosk_mode": true,
"start_url": "https://example.com"
},
"profile_id": "iv25ujqf37x3j07dwoffegqr"
}