Skip to main content
You’re at the best place to automate your browser. Notte is a unified platform to build, run, and deploy AI agents and web automation scripts. Browser infrastructure, agents framework, serverless functions, and observability, all in one single place.

Overview

The Platform API services provides the infrastructure and the primitives to run your automations — browser sessions, web agents framework, serverless functions, and scraping APIs. This documentation covers the technical reference for the Platform. The Products help you build faster. Create automation scripts with our AI assistant, teach by workflow demonstration (screen recording), orcode in our automation studio. See the product guides below or jump straight into the Console to get started.

Getting Started

Start here if you want to go from zero to a working Notte integration as quickly as possible.

Browser Session Quickstart

The shortest path to a working Notte integration is to create a cloud browser session and connect to it over CDP. If this works, your API key, SDK install, and browser connection are all set up correctly.
1

Get an API key

Create an account on the Console to get your API key.
2

Export your API key

export NOTTE_API_KEY=your_api_key_here
3

Install the SDK

pip install notte-sdk playwright
from playwright.sync_api import sync_playwright
from notte_sdk import NotteClient

client = NotteClient()

with client.Session(open_viewer=True) as session:
    cdp_url = session.cdp_url()

    with sync_playwright() as p:
        browser = p.chromium.connect_over_cdp(cdp_url)
        page = browser.contexts[0].pages[0]
        page.goto("https://www.google.com")
        page.screenshot(path="screenshot.png")

Quickstart

Continue to the full quickstart for Agents, Scraping, and additional examples.

SDK Reference

Start from the SDK entrypoint for Sessions, Agents, Vaults, Personas, and Functions.

OpenAPI Spec

Access the machine-readable API contract directly from the Notte API.
For the API surface, see API Reference; for the SDK entrypoint, see SDK Reference.

Platform

The building blocks for your web agents and automations.

Sessions

Remote browser infrastructure. Fast, scalable browsers with anti-detection, proxies, and captcha solving.

Web Agents

AI web agents & automation framework. Build agents that browse, understand, and complete tasks autonomously.

Functions

Deploy your scripts as API endpoints. Serverless automations and agents you can invoke and schedule anywhere.

Scraping

Extract structured data with AI. Turn any website into structured data. Use agents or direct scrape endpoints.

Products

Tools to speed up the build, debug, and deploy automations lifecycle.

Agent Builder

Create automation scripts with an AI conversation.

Demonstrate Mode

Record workflows and get automation scripts automatically.

Studio

Edit & debug in live browser enabled IDE and one-click deploy.

Agent Tools

Empower your agents with secure credentials and authentic identities.

Vaults

Secure credential storage. Keep passwords, API keys, and sensitive data encrypted.

Identities

Emails and phone numbers for agents. Verified identities to interact authentically across platforms.