cURL
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>" }
Open an interactive browser instance for 5 minutes. You can either create a new session or resume an existing one by providing its session_id.
session_id
Request model for creating a browser session.
The session ID to open in the browser. If None, a new session will be created with a random name.
Whether to open a live browser instance using the specified session.
Successful Response
Browser session response model.
The ID of the browser session associated with the opened browser instance.
The live URL to interact with the browser session.