executor_ids, not browser IDs directly.
List Browser Sessions
Endpoint
Request Example
Response Example
Get a Browser Session
Endpoint
Path Parameters
integer
required
The unique identifier of the browser session.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns connected browser sessions. Browsers are read-only via the API. Use app-state IDs as executor_ids, not browser IDs directly.
executor_ids, not browser IDs directly.
GET /api/v1/browsers
curl -X GET 'https://reachowl.com/api/v1/browsers' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Accept: application/json'
{
"data": [
{
"id": 1,
"name": "Chrome Session 1",
"status": "connected",
"created_at": "2024-01-15T10:00:00Z"
}
]
}
GET /api/v1/browsers/{id}
curl -X GET 'https://reachowl.com/api/v1/browsers/1' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Accept: application/json'
{
"id": 1,
"name": "Chrome Session 1",
"status": "connected",
"created_at": "2024-01-15T10:00:00Z"
}
executor_id when creating campaigns. Use app-state IDs instead. See the App States endpoint for details.| Status | Description |
|---|---|
| 401 | Unauthorized |
| 404 | Browser session not found |
