> ## 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.

# Get Active Sessions

## Parameters

<ParamField query="after_id" type="string">
  Optional query parameter. Maximum number of results per request is fixed to
  100\.
</ParamField>

## Response

<ResponseField name="results" type="object">
  <Expandable>
    <ResponseField name="creation_date" type="string">
      The start time of the cloud computer session. Formatted according to RFC3339
      (e.g. 2006-01-02T15:04:05Z07:00)
    </ResponseField>

    <ResponseField name="id" type="string">
      The ID of the cloud com session
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="next" type="string">
  The value after\_id should be set to for pagination
</ResponseField>

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

<ResponseExample>
  ```json Response Example theme={null}
  {
    "results": [
      {
        "id": "1bd96bee-088e-4ec5-ae55-7fec00b73efa",
        "creation_date": "2006-01-02T15:04:05Z07:00"
      },
      {
        "id": "c5772689-2255-4e59-8cea-b846cda7ad4e",
        "creation_date": "2006-01-03T15:04:05Z07:00"
      }
    ],
    "next": "c5772689-2255-4e59-8cea-b846cda7ad4e"
  }
  ```
</ResponseExample>
