Types
GET/workstations/types
List all Workstation Types available for request:
Workstation Type | Description |
---|---|
default | A Workstation with maximum hardware and software capabilities. |
Workstation Types are the different configurations of Workstations available for request. Each type has a unique set of hardware and software resources available to the agentic application connecting to the Workstation.
Responses
- 200
- 400
- 401
- 429
- 500
Successfully listed a set of all available Workstation Types.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: [list
]
data
object[]
The identification label for a Workstation Type.
Possible values: [default
]
A brief description of the Workstation, its capabilities, and intended use.
List of virtual hardware capabilities available within the Workstation.
Possible values: [keyboard
, mouse
, speaker
, microphone
, camera
, display
]
List of software applications available within the Workstation.
Possible values: [ssh
, terminal
, vnc
, desktop
, chromium
]
List of AI models available within the Workstation.
Possible values: [speech-to-text
, text-to-speech
, large-language-model
]
{
"object": "list",
"data": {
"object": "list",
"data": [
{
"id": "default",
"description": "A Workstation with maximum hardware and software capabilities.",
"hardware": [
"keyboard",
"mouse",
"speaker",
"microphone",
"camera",
"display"
],
"software": [
"ssh",
"terminal",
"vnc",
"desktop",
"chromium"
],
"models": [
"speech-to-text",
"text-to-speech",
"large-language-model"
]
}
]
}
}
Invalid Request Format - check API documentation for proper syntax.
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"message": "string"
}
Unauthorized - missing or invalid API key.
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"message": "string"
}
Too Many Requests - you have exceeded the rate limit for your account. Please wait before making additional requests.
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"message": "string"
}
Internal Server Error - please retry your request.
- application/json
- Schema
- Example (from schema)
Schema
{
"error": "string",
"message": "string"
}