NewSee everything we shipped in Launch Week 3
All articles
GuidesMarch 26, 2026· 6 min read

A beginner's guide to Ferr

From zero to your first cloud browser in a few minutes, with the code to copy.

PN
Priya N.
Developer Relations

New to Ferr? This is the shortest path from an empty file to a working cloud browser you can drive from your own code.

Install and authenticate

quickstart.sh
pip install ferr
ferr login

Your first session

Create a session, open a page, and pull the data. That is the whole loop — everything else is a variation on it.

first.py
from ferr import Ferr
 
ferr = Ferr()
session = ferr.sessions.create()
page = session.new_page()
page.goto('https://example.com')
print(page.title())
Build it on Ferr
Launch your first cloud browser for free.
Start For Free