Anchor Browser

Learn how to use Anchor Browser with Composio

Overview

Enum

ANCHOR_BROWSER

Description

Anchor Browser is a developer platform that enables AI agents to interact with the web through browser automation, transforming complex web interactions into simple API endpoints.

Authentication Details

api_key
stringRequired

Actions

Tool to create a new browser profile from an active session. use after ending a session to persist cookies and cache.

Action Parameters

dedicated_sticky_ip
boolean
description
string
name
stringRequired
session_id
source
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to delete a browser profile by id. use after confirming the profile exists.

Action Parameters

name
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to end all active browser sessions. use after confirming a security concern when you need to immediately close every session for the authenticated user.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to end a specific browser session by id. use after confirming the session id you want to terminate.

Action Parameters

session_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to fetch details for a specific browser profile by id. use after you know the profile id and need its settings and session information.

Action Parameters

name
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve rendered content of a webpage in html or markdown format. use when you need to fetch a page’s full content, optionally within an existing browser session.

Action Parameters

format
stringDefaults to markdown
sessionId
string
url
string

Action Response

data
object
error
string
successful
boolean
Tool to list agent resources (files) for a given session. use after establishing a browser session to retrieve agent-uploaded files.

Action Parameters

session_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to list the status of all active browser sessions. use after authenticating when you need to retrieve an up-to-date overview of all sessions.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to list all browser extensions for the authenticated user. use when you need to retrieve available extensions after authentication.

Action Parameters

page
integer
page_size
integer

Action Response

data
object
error
string
successful
boolean
Tool to fetch all stored browser profiles. use when you need an overview of all profiles available to the authenticated user (e.g., after creating or deleting profiles).

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to list all browser sessions. use when you need to retrieve both active and inactive sessions.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to list all recordings for a specific browser session. use after confirming the session id.

Action Parameters

session_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to take a screenshot of a specified webpage within a session. use when you need a visual png snapshot of a live page. example: "capture a 1280×720 screenshot of https://example.com".

Action Parameters

capture_full_height
boolean
height
integerRequired
image_quality
integerRequired
s3_target_address
string
scroll_all_content
boolean
sessionId
string
url
stringRequired
wait
integerRequired
width
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to signal a specific event to be received by other processes or sessions. use when you need real-time coordination across browser sessions after verifying session is active.

Action Parameters

data
objectRequired
event_name
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to start a new browser session with optional customizations. use when you need to programmatically allocate an isolated browser instance with recording, proxy, live view, and feature toggles.

Action Parameters

browser
objectRequired
session
objectRequired

Action Response

data
object
error
string
successful
boolean
Tool to update an existing browser profile by id. use when you need to modify the profile's description or source session.

Action Parameters

description
string
name
stringRequired
session_id
source
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to upload a file to a browser session as an agent resource. use after starting or referencing a session when you need to provide file inputs (single files or zip archives) for web forms or ai-driven tasks.

Action Parameters

file
stringRequired
file_name
stringRequired
session_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to wait for a specific event. use when coordinating browser sessions or workflows that depend on an event signal; blocks until the event is signaled or timeout is reached.

Action Parameters

event_name
stringRequired
timeoutMs
integerRequired

Action Response

data
object
error
string
successful
boolean