Dispatch API
Get Active Sessions
GET

/v0/vm

Bearer*
curl --request GET \
  --url https://engine.hyperbeam.com/v0/vm \
  --header 'Bearer: <bearer>'

Parameters

after_id
string

Optional query parameter. Maximum number of results per request is fixed to 100.

Response

results
object
next
string

The value after_id should be set to for pagination

curl -H 'Authorization: Bearer <your-api-key>' \
    https://engine.hyperbeam.com/v0/vm
{
  "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"
}