Skip to main content
DELETE
/
v1
/
browsers
/
{id}
Delete Session
curl --request DELETE \
  --url https://api.example.com/v1/browsers/{id}/
{
  "deleted": "exc-b072ebd8-2dc9-4353-b894-123911d5399f"
}

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

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

Authentication

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

Path Parameters

id
string
required
The browser ID to close.

Response

deleted
string
The ID of the browser that was deleted.

Example

curl -X DELETE https://your-host/browsers/exc-b072ebd8-2dc9-4353-b894-123911d5399f/
{
  "deleted": "exc-b072ebd8-2dc9-4353-b894-123911d5399f"
}
Browsers continue billing until deleted. Always close them when your task is complete.