Close Browser

/api/v1/Browser/Close Close a browser

Description: Allows to close a browser remotely without using Puppeteer.

Method: POST

Parameters:

  • address: string – The address of the browser you want to close.

Request Example:

curl -X POST https://production.cloudbrowser.ai/api/v1/Browser/Close \
-H "Authorization: Bearer <your-api-token>" \
-d '{
  "address": "browserprovider-worker-4.cloudbrowser.ai/devtools/browser/0b6d292-a6c7-4c06-83b3"
}'

/api/v1/Browser/Get Get all active browsers

Description: Returns a list of all currently open browsers.

Method: GET

Parameters: No parameters required.

Response:

  • browsers: Array of active browser sessions with the following fields:

    • startedOn: Date and time when the session was started.

    • label: Session label.

    • address: Browser address.

    • vncpass: Password of the remote desktop associated to the session.

Last updated