Last updated 22 days ago
© 2025 S2 Labs, Inc. All rights reserved.
Session details
Session stopped successfully
List of sessions
100
1
10
Session created
const response = await fetch('https://app.hyperbrowser.ai/api/session/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "teamId": "123e4567-e89b-12d3-a456-426614174000", "status": "active", "startTime": "text", "endTime": "text", "createdAt": "text", "updatedAt": "text", "sessionUrl": "text", "token": "text", "wsEndpoint": "text" }
const response = await fetch('https://app.hyperbrowser.ai/api/session/{id}/stop', { method: 'PUT', headers: {}, }); const data = await response.json();
{ "success": false }
const response = await fetch('https://app.hyperbrowser.ai/api/sessions', { method: 'GET', headers: {}, }); const data = await response.json();
{ "sessions": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "teamId": "123e4567-e89b-12d3-a456-426614174000", "status": "active", "startTime": "text", "endTime": "text", "createdAt": "text", "updatedAt": "text" } ], "totalCount": 100, "page": 1, "pageSize": 10 }
const response = await fetch('https://app.hyperbrowser.ai/api/session', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();