# Delete browser session Invalidates the browser session. The session remains accessible through the API for a limited time before it is permanently deleted. If the end user is still viewing the page, they will be redirected to the delete handler URL you specified. > There is no need to delete completed sessions; they will be automatically pruned after a certain period. Endpoint: DELETE /api/browser/sessions/{session_id} Version: 0.1.0 Security: APIKey ## Header parameters: - `Accept` (string, required) Specify the response format. Enum: "application/json" ## Path parameters: - `session_id` (string, required) The UUID of the session to delete. Example: "7f3f5f62-2c69-7d4e-8a3d-9c0f0e2c5f3a" ## Response 200 fields (application/json): - `data` (object) - `data.id` (string, required) - `data.state` (any, required) - `data.status` (string, required) Enum: "pending", "completed", "deleted" ## Response 404 fields (application/json): - `data` (null, required) Always null for error responses. - `meta` (object, required) - `meta.status` (object, required) - `meta.status.code` (integer, required) - `meta.status.text` (string, required) - `meta.error` (object, required)