Skip to content

Get Browser List

Description

Returns all browser profiles with summary fields (id, name, group, proxy, homepage, cookie mode).

Request

Method: GET | POST

URL: /api/getBrowserList

Parameters: none

Example

bash
curl --location 'http://localhost:9000/api/getBrowserList' \
  --header 'api-key: YOUR_API_KEY'

Response

json
{
  "success": true,
  "data": [
    {
      "id": 1,
      "name": "1",
      "group": "Default",
      "proxy": {
        "mode": 2,
        "protocol": "HTTP",
        "host": "127.0.0.1",
        "port": "333",
        "user": "",
        "pass": "",
        "url": "",
        "country": "KR",
        "checkFailed": false
      },
      "homepage": { "mode": 0, "value": "" },
      "cookie": { "mode": 0, "value": "", "jsonStr": "[]" }
    }
  ]
}

See also: Get full parameters · Launch browser