Resume Browser
Restart a previously paused browser instance.
POST
/browsers/resume
Request Body
Parameter | Type | Required | Description |
---|---|---|---|
browserId | string | Yes | ID of the paused browser instance to resume. |
Example Request
http
POST https://browserize.com/api/browsers/resume
Authorization: Bearer sk-brz-YOUR_API_KEY
Content-Type: application/json
{
"browserId": "brw_123"
}
Example Response
json
{
"success": true,
"browserId": "brw_123"
}
Code Examples
bash
curl -X POST https://browserize.com/api/browsers/resume \
-H "Authorization: Bearer sk-brz-YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "browserId": "brw_123" }'
javascript
await fetch('https://browserize.com/api/browsers/resume', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk-brz-YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({ browserId: 'brw_123' })
});
python
import requests
resp = requests.post(
'https://browserize.com/api/browsers/resume',
headers={
'Authorization': 'Bearer sk-brz-YOUR_API_KEY',
'Content-Type': 'application/json'
},
json={'browserId': 'brw_123'}
)
print(resp.json())