Skip to main content
GET
/
invocations
/
{id}
/
browsers
List browsers for an invocation
curl --request GET \
  --url https://api.onkernel.com/invocations/{id}/browsers \
  --header 'Authorization: Bearer <token>'
{
  "browsers": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "cdp_ws_url": "wss://api.onkernel.com/browser/cdp?jwt=eyJ0eXAi...",
      "headless": false,
      "stealth": false,
      "session_id": "htzv5orfit78e1m2biiifpbv",
      "timeout_seconds": 123,
      "browser_live_view_url": "https://api.onkernel.com/browser/remote?jwt=eyJ0eXAi...",
      "persistence": {
        "id": "my-awesome-browser-for-user-1234"
      },
      "profile": {
        "id": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "name": "<string>",
        "updated_at": "2023-11-07T05:31:56Z",
        "last_used_at": "2023-11-07T05:31:56Z"
      },
      "proxy_id": "<string>",
      "viewport": {
        "width": 1280,
        "height": 800,
        "refresh_rate": 60
      },
      "kiosk_mode": false,
      "deleted_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Invocation ID

Response

List of browsers for this invocation

browsers
object[]
required