Skip to main content
GET
/
computers
/
{id}
/
stream
/
status
Get stream status
curl --request GET \
  --url https://www.orgo.ai/api/computers/{id}/stream/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "streaming",
  "start_time": "2024-01-15T10:30:00Z",
  "pid": 12345
}
Returns the current streaming status.

Path parameters

id
string
required
Computer ID.

Response

status
string
Stream status: idle, streaming, or terminated.
start_time
string
ISO 8601 timestamp when stream started (only if streaming).
pid
integer
Stream process ID (only if streaming).

Example

curl https://www.orgo.ai/api/computers/a3bb189e-8bf9-3888-9912-ace4e6543002/stream/status \
  -H "Authorization: Bearer $ORGO_API_KEY"

When streaming

{
  "status": "streaming",
  "start_time": "2024-01-20T10:30:00Z",
  "pid": 12345
}

When idle

{
  "status": "idle"
}

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Path Parameters

id
string
required

Computer ID

Response

Stream status

status
enum<string>
Available options:
idle,
streaming,
terminated
start_time
string<date-time>
pid
integer