> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hyperbeam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Ending a Session

## Parameters

<ParamField path="session_id" type="string">
  The ID of the session to terminate.
</ParamField>

## Response

<ResponseField path="session_id" type="string">
  The ID of the session that was terminated.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE -H 'Authorization: Bearer <your-api-key>' \
      https://engine.hyperbeam.com/v0/vm/{session_id}
  ```
</RequestExample>

<ResponseExample>
  ```json Response Example theme={null}
  {
    "session_id": "52f968cb-6739-4197-83d7-2305fe5d6f54"
  }
  ```
</ResponseExample>
