Gå til hovedindhold

Steel

Open-source browser infrastructure built exclusively for AI agents

Steel provides production-grade headless browser sandboxes with built-in stealth, session persistence, and anti-bot mitigation.

Kom hurtigt i gang

steel-session.ts

Kom i gang med Steel i dit projekt.

import { Steel } from 'steel-sdk'
import { chromium } from 'playwright'

const client = new Steel({ steelAPIKey: process.env.STEEL_API_KEY })
const session = await client.sessions.create({ useProxy: true })

const browser = await chromium.connectOverCDP(session.websocketUrl)
const page = await browser.newPage()
await page.goto('https://www.dst.dk')
console.log(await page.title())
await client.sessions.release(session.id)

Om Steel

Steel is an open-source browser API and cloud infrastructure layer built specifically for autonomous web agents. Instead of dealing with flaky local Chrome processes, Steel spins up isolated browser sandboxes pre-configured with residential proxy rotation, CAPTCHA bypass, and live session debugging.

DK

Danske data- og produkt-guides

Hvordan udviklere og agenter bruger Steel til at tilgå dansk digital infrastruktur.

Run Persistent Agent Sessions on Danish Portals

Authenticate an agent session once on a Danish portal and reuse authenticated cookie states across multiple agent automation tasks.

Nøglefunktioner

100% open source self-hostable via Docker or managed cloud API
Built-in residential proxy rotation and CAPTCHA solving
Session recording and interactive visual live debugger
Direct compatibility with Playwright, Puppeteer, and Stagehand