> For the complete documentation index, see [llms.txt](https://cloudbrowser.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cloudbrowser.gitbook.io/docs/get-started/browser-management/close-browser.md).

# Close Browser

### `/api/v1/Browser/Close` – **Close a browser** <a href="#id-3-toc-title" id="id-3-toc-title"></a>

**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:**

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

### `/api/v1/Browser/Get` – **Get all active browsers** <a href="#id-4-toc-title" id="id-4-toc-title"></a>

**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.
