Skip to main content
GET
/
browser
/
v1
/
sessions
List browser sessions
curl --request GET \
  --url https://api.voyant.travel/browser/v1/sessions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "organizationId": "<string>",
    "browserMsUsed": 123,
    "commandCount": 123,
    "keepAliveMs": 123,
    "lastUsedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "apiTokenId": "<string>",
    "label": "<string>",
    "closedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Voyant Cloud API token, passed as Authorization: Bearer <token>. Each token carries a fixed set of scopes; an operation rejects tokens missing its required scope.

Response

200 - application/json

Sessions

id
string
required
organizationId
string
required
status
enum<string>
required
Available options:
active,
closed,
expired
browserMsUsed
integer
required
commandCount
integer
required
keepAliveMs
integer
required
lastUsedAt
string<date-time>
required
createdAt
string<date-time>
required
apiTokenId
string | null
label
string | null
closedAt
string<date-time> | null