API Reference

List Browsers

Retrieve all browser instances associated with your project.

GET/browsers/list

Example Request

http
GET https://browserize.com/api/browsers/list
Authorization: Bearer sk-brz-YOUR_API_KEY

Example Response

json
{
  "success": true,
  "browsers": [
    {
      "id": "brw_123",
      "name": "Product Scraper",
      "status": "Running",
      "memory": 512,
      "uptime": "1h 23m"
    },
    {
      "id": "brw_456",
      "name": "Price Monitor",
      "status": "Paused",
      "memory": 256,
      "uptime": "4h 12m"
    }
  ]
}

Code Examples

bash
curl -H "Authorization: Bearer sk-brz-YOUR_API_KEY" \
  https://browserize.com/api/browsers/list
javascript
const res = await fetch('https://browserize.com/api/browsers/list', {
  headers: { 'Authorization': 'Bearer sk-brz-YOUR_API_KEY' }
});
const data = await res.json();
python
import requests

resp = requests.get(
    'https://browserize.com/api/browsers/list',
    headers={'Authorization': 'Bearer sk-brz-YOUR_API_KEY'}
)
print(resp.json())