Skip to main content
GET
/
v1
/
browsers
/
{id}
Get Session
curl --request GET \
  --url https://api.example.com/v1/browsers/{id}/
{
  "success": true,
  "data": {}
}

Description

Returns the current state and metadata of a browser.

Authentication

Authorization: Bearer YOUR_API_KEY

Path Parameters

id
string
required
UUID of the browser.

Response

success
boolean
Whether the request was successful.
data
object
Session details. Structure to be documented.

Example

curl https://api.rustybrowser.com/v1/browsers/550e8400-e29b-41d4-a716-446655440000/ \
  -H "Authorization: Bearer YOUR_API_KEY"