Skip to main content
DELETE
/
v1
/
browsers
/
{id}
Delete Session
curl --request DELETE \
  --url https://api.example.com/v1/browsers/{id}/
{
  "success": true
}

Description

Closes the browser and stops billing. Always delete browsers when finished.

Authentication

Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required
UUID of the browser to close.

Response

success
boolean
Whether the browser was deleted successfully.

Example

curl -X DELETE https://api.rustybrowser.com/v1/browsers/550e8400-e29b-41d4-a716-446655440000/ \
  -H "Authorization: Bearer YOUR_API_KEY"
Browsers continue billing until deleted. Always close them when your task is complete.