Skip to main content
DELETE
/
browser
/
sessions
Delete All Sessions
curl --request DELETE \
  --url https://api.example.com/browser/sessions

Overview

Tears down all active sessions owned by the authenticated user. Useful for emergency cleanup or at the end of a job run.

Example Request

curl -X DELETE "https://api.scrapengine.io/api/v1/browser/sessions" \
  -H "Authorization: Bearer $SCRAPENGINE_API_KEY"

Response

Success Response (204)

Empty body. All owned sessions have been destroyed.

Error Responses

StatusDescription
401Unauthorized — invalid or missing API key.