Skip to main content
PUT
/
v1
/
browsers
Create Session
curl --request PUT \
  --url https://api.example.com/v1/browsers/
{
  "execution_id": "exc-9cb50171-4b61-4b7c-ac62-c96fa0f1ae42"
}

Documentation Index

Fetch the complete documentation index at: https://docs.rustybrowser.com/llms.txt

Use this file to discover all available pages before exploring further.

Description

Creates a new browser. Returns the browser ID used for all subsequent commands. Billing starts immediately on Rusty Cloud.

Authentication

Authorization: Bearer YOUR_API_KEY
Self-hosted open source deployments do not require authentication.

Request Body

No request body required.

Response

execution_id
string
The browser ID. Pass this as :id in all subsequent command endpoints.

Example

curl -X PUT https://your-host/browsers/
{
  "execution_id": "exc-9cb50171-4b61-4b7c-ac62-c96fa0f1ae42"
}