Quick Start
This guide walks through the shortest path from console setup to Python automation: create an API key, create a session, open the browser View, and connect the SDK.

Create credentials for platform and SDK calls.
Launch one cloud browser instance on demand.
Open the remote screen and verify page access.
Move the same workflow into agent code.
Console Flow
Use the console to confirm credentials, session creation, and remote access before putting the flow into code.
Sign in to the console, go to API Keys, create a new key, and keep the key plus project ID for SDK access.
Open Sessions, click Create, choose the browser mode, and wait for the session to enter the running state.

Open View from the running session. You can type a URL, observe the page, and take over manually when needed.

Python SDK
After the console flow is verified, the agent can create and control cloud browsers directly through the SDK.
Use environment variables so API keys do not appear in source code.
export LEXMOUNT_API_KEY="sk_..."
export LEXMOUNT_PROJECT_ID="project_..."pip install lexmount playwright
playwright install chromiumfrom lexmount import Lexmount
from playwright.sync_api import sync_playwright
client = Lexmount()
with client.sessions.create(browser_mode="normal") as session:
print("session:", session.id)
print("view:", session.inspect_url)
with sync_playwright() as p:
browser = p.chromium.connect_over_cdp(session.connect_url)
context = browser.contexts[0] if browser.contexts else browser.new_context()
page = context.pages[0] if context.pages else context.new_page()
page.goto("https://example.com", wait_until="domcontentloaded")
print("title:", page.title())
browser.close()Start from the console, confirm one session works, then move the workflow into SDK code.