Skip to main content
GET
/
computers
curl https://api.tzafon.ai/computers \
  -H "Authorization: Bearer sk_your_api_key"
[
  {
    "id": "comp_a1b2c3d4e5f6",
    "kind": "browser",
    "status": "running",
    "created_at": "2025-01-16T12:00:00Z"
  },
  {
    "id": "comp_f6e5d4c3b2a1",
    "kind": "desktop",
    "status": "ready",
    "created_at": "2025-01-16T11:30:00Z"
  }
]

Response

Returns an array of session objects.
sessions
array
List of active sessions
curl https://api.tzafon.ai/computers \
  -H "Authorization: Bearer sk_your_api_key"
[
  {
    "id": "comp_a1b2c3d4e5f6",
    "kind": "browser",
    "status": "running",
    "created_at": "2025-01-16T12:00:00Z"
  },
  {
    "id": "comp_f6e5d4c3b2a1",
    "kind": "desktop",
    "status": "ready",
    "created_at": "2025-01-16T11:30:00Z"
  }
]