Is Browser Running
Description
Checks whether a profile is currently running.
Request
Method: GET
URL: /api/isBrowserRunning
| Field | Type | Required | Description |
|---|---|---|---|
| id | int | yes | Profile ID (query string) |
Example
bash
curl --location 'http://localhost:9000/api/isBrowserRunning?id=1' \
--header 'api-key: YOUR_API_KEY'Response
json
{
"success": true,
"data": true
}data: true — running; false — not running.
