Chrome Browser

The Chrome Browser category provides a comprehensive set of endpoints for interacting with and controlling Google Chrome browser instances. These endpoints enable automated browser navigation, tab management, DOM inspection, content extraction, element interaction, and JavaScript execution.

With the Chrome Browser API, you can build sophisticated web automation workflows, perform data extraction, test web applications, and create agents that can browse the web on behalf of users.

Important: Before using any of these endpoints, Chrome must first be started using the POST /tools-api/system/open-chrome endpoint, which is also included in this category.

Endpoints

Open Chrome

POST /tools-api/system/open-chrome

Opens Google Chrome and navigates to the specified URL.

View Details

Explain Current Tab

POST /tools-api/chrome/current-tab/explain

Provides detailed infos about current Chrome tab, incl. relevant HTML elements and reliable CSS selectors. Response can be passed to an LLM.

View Details

Navigate

POST /tools-api/chrome/navigate

Navigates the Chrome browser to the specified URL.

View Details

Reload

POST /tools-api/chrome/reload

Reloads the current page in the Chrome browser.

View Details

New Tab

POST /tools-api/chrome/new-tab

Opens a new tab in the Chrome browser and navigates to the specified URL.

View Details

Switch Tab

POST /tools-api/chrome/switch-tab

Switches to the specified tab in the Chrome browser.

View Details

Get DOM

POST /tools-api/chrome/get-dom

Gets complete DOM of current page in the Chrome browser (for LLM processing, will be smartly shortened if too long).

View Details

Get Text

POST /tools-api/chrome/get-text

Retrieves the complete text content of the current page in the Chrome browser (for LLM processing, will be smartly shortened if too long).

View Details

Click Element

POST /tools-api/chrome/click-element

Clicks an element in the Chrome browser identified by a CSS selector.

View Details

Simulate Input

POST /tools-api/chrome/simulate-input

Simulates text/number input into an element in the Chrome browser identified by a CSS selector.

View Details

Go Back

POST /tools-api/chrome/go-back

Navigates back to the previous page in the Chrome browser.

View Details

Execute JavaScript

POST /tools-api/chrome/execute

Executes JavaScript code in the Chrome browser to perform complex operations and extract data.

View Details