Get Browser
Retrieve details for a single browser instance using its unique ID.
GET
/browsers/get?id=<browserId>
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
id | string | Yes | Unique identifier of the browser instance. |
Example Request
http
GET https://browserize.com/api/browsers/get?id=brw_123
Authorization: Bearer sk-brz-YOUR_API_KEY
Example Response
json
{
"success": true,
"browser": {
"id": "brw_123",
"name": "Product Scraper",
"status": "Running",
"memory": 512,
"cpu": 0,
"uptime": "1h 23m",
"currentUrl": "https://example.com"
}
}
Code Examples
bash
curl -H "Authorization: Bearer sk-brz-YOUR_API_KEY" \
"https://browserize.com/api/browsers/get?id=brw_123"
javascript
const res = await fetch('https://browserize.com/api/browsers/get?id=brw_123', {
headers: { 'Authorization': 'Bearer sk-brz-YOUR_API_KEY' }
});
const data = await res.json();
python
import requests
resp = requests.get(
'https://browserize.com/api/browsers/get',
params={'id': 'brw_123'},
headers={'Authorization': 'Bearer sk-brz-YOUR_API_KEY'}
)
print(resp.json())