GET
/
api
/
v1
/
sessions
/
{browser_id}
curl --request GET \
  --url http://localhost:3000/api/v1/sessions/{browser_id} \
  --header 'Authorization: Bearer <token>'
{
  "project_id": 5,
  "browser_settings": {
    "proxy": {
      "country": "jp"
    },
    "record_live": true,
    "live_url": "http://localhost:3000/session/inspector.html?wss=browser.emereg.com/devtools/page/7FDF552596C3FCE19FF411F486FDD642"
  },
  "timeout": 60,
  "started_at": "2024-08-14 06:08:12 +0000",
  "ended_at": "2024-08-14 06:08:53 +0000",
  "status": "finished",
  "created_at": "2024-08-14T14:08:07.791+08:00",
  "updated_at": "2024-08-14T14:08:53.523+08:00",
  "browser_id": "cbcf1d9b-a157-43c9-99e9-a07506c536a6"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

browser_id
string
required

Response

200
application/json
OK

The response is of type object.