Skip to main content
DELETE
/
v1
/
teardown
Teardown
curl --request DELETE \
  --url https://api.example.com/v1/teardown/
{
  "browsers": [],
  "nodes_terminated": true
}

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

Performs a full teardown — closes all active browsers and terminates the underlying browser nodes. Use this at the end of a session or test suite to cleanly release all resources.

Authentication

No authentication required.

Request Body

No request body required.

Response

browsers
array
List of browser IDs that were closed. Empty if none were active.
nodes_terminated
boolean
Whether the underlying browser nodes were successfully terminated.

Example

curl -X DELETE https://your-host/teardown/
{
  "browsers": [],
  "nodes_terminated": true
}
This terminates all running browsers and nodes immediately. There is no confirmation step.