Skip to main content
PUT
/
v1
/
browsers
Create Session
curl --request PUT \
  --url https://api.example.com/v1/browsers/
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}

Description

Creates a new browser. Returns the browser id used for all subsequent commands. Billing starts immediately.

Authentication

Authorization: Bearer YOUR_API_KEY

Request Body

No request body required.

Response

id
string
UUID of the browser. Pass this as :id in all command endpoints.
success
boolean
Whether the browser was created successfully.

Example

curl -X PUT https://api.rustybrowser.com/v1/browsers/ \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000"
  }
}