latestOpenAPI 3.1.02026-08-22154287463.4 KB

858365328f92

Browser Pools

List browser pools

List browser pools in the resolved project.

get/browser_pools

Query parameters

limitinteger

Limit the number of browser pools to return.

offsetinteger

Offset the number of browser pools to return.

querystring

Case-insensitive substring match against browser pool name. IDs match by exact value.

namestring

Exact-match filter on browser pool name using the database collation. In production, matching is case- and accent-insensitive. During the default-project migration, unscoped requests prefer a concrete default-project browser pool over a legacy unscoped browser pool with the same name.

region'us-east' | 'eu-west'

Geographic region for hosting browser sessions or pools.

Filter pools by geographic region. Omit to list pools in all regions.

Response

List of browser pools

acquired_countinteger required

Number of browsers currently acquired from the pool

available_countinteger required

Number of browsers currently available in the pool

created_atstring date-time required

Timestamp when the browser pool was created

extension_idsstring[] required

Resolved extension IDs attached to the pool, in configured load order. Empty when no extensions are attached. Authoritative for programmatic consumers; the extensions inside browser_pool_config reflect the configured selector (echoed as sent on create).

idstring required

Unique identifier for the browser pool

namestring

Browser pool name, if set

profile_idstring

Resolved profile ID the pool is attached to. Omitted when no profile is attached. Authoritative for programmatic consumers; the profile inside browser_pool_config reflects the configured selector (echoed as sent on create).

region'us-east' | 'eu-west' required

Geographic region for hosting browser sessions or pools.

Example response

[
  {
    "acquired_count": 15,
    "available_count": 85,
    "browser_pool_config": {
      "kiosk_mode": true,
      "name": "my-pool",
      "network": {
        "private_hosts": [
          "*.example.ts.net",
          "100.64.0.0/10"
        ]
      },
      "refresh_on_profile_update": true,
      "size": 10,
      "start_url": "https://example.com",
      "stealth": true,
      "viewport": {
        "height": 800,
        "refresh_rate": 60,
        "width": 1280
      }
    },
    "id": "iv25ujqf37x3j07dwoffegqr",
    "name": "my-pool",
    "profile_id": "iv25ujqf37x3j07dwoffegqr"
  }
]