Skip to main content
POST
/
browser
/
session
curl -X POST "https://api2.circlemind.co/api/v1/browser/session" \
-H "Content-Type: application/json" \
-H "apikey: YOUR_API_KEY" \
-d '{
"session_id": "my-persistent-session"
}'
{
  "session_id": "<string>",
  "live_url": "<string>"
}

Authorizations

apikey
string
header
required

Body

application/json

Request model for creating a browser session.

session_id
string | null

The session ID to open in the browser. If None, a new session will be created with a random name.

live_view
boolean

Whether to open a live browser instance using the specified session.

Response

Successful Response

Browser session response model.

session_id
string
required

The ID of the browser session associated with the opened browser instance.

live_url
string

The live URL to interact with the browser session.

I