.do
Integration

browsers

Orchestrate hundreds of browsers simultaneously for testing, scraping, and automation. Manage browser pools, distribute workloads, and scale browser operations across global infrastructure.

browsers

Browsers.do

Overview

The browsers primitive is part of the .do platform's semantic API system. It follows the $.Subject.verb.Object pattern for consistent, intuitive interactions across SDK, CLI, API, and MCP interfaces.

Semantic Pattern

All browsers operations follow the semantic $.Browsers.verb.Object pattern:

import { $, browsers } from 'sdk.do'

// Create resources
await $.Browsers.create.Resource({ /* config */ })

// Query data
await $.Browsers.get.Data({ /* params */ })

// Update state
await $.Browsers.update.Status({ /* changes */ })

Quick Start

import { browsers } from 'sdk.do'

// Initialize and use the primitive
const result = await browsers.operation({
  // configuration parameters
})

Access Methods

The browsers primitive is accessible through multiple interfaces:

SDK

TypeScript/JavaScript library for programmatic access:

import { browsers } from 'sdk.do'
await browsers.method({ /* ... */ })

SDK Documentation

CLI

Command-line interface for terminal operations:

do browsers <command> [options]

CLI Documentation

API

REST/RPC endpoints for HTTP integration:

curl -X POST https://api.do/v1/browsers \
  -H "Content-Type: application/json" \
  -d '{"key":"value"}'

API Documentation

MCP

Model Context Protocol for AI assistant integration:

Use browsers primitives with AI assistants via MCP

MCP Documentation

See other primitives in the integration category.