Skip to content

Get Browser Full Parameters

Description

Returns the full configuration for one profile (fingerprints, proxy, extensions, etc.). Omit id to return all profiles’ full configs (heavy response).

Request

Method: GET

URL: /api/getBrowserFullParameters

FieldTypeRequiredDescription
idintnoProfile ID; omit for all

Example

GET /api/getBrowserFullParameters?id=1
bash
curl --location 'http://localhost:9000/api/getBrowserFullParameters?id=1' \
  --header 'api-key: YOUR_API_KEY'

Response

json
{
  "success": true,
  "data": {
    "id": 1,
    "name": "1",
    "group": "Default",
    "os": "Win 11",
    "chrome_version": 126,
    "proxy": { "mode": 0, "protocol": "", "host": "", "port": "" },
    "ua": { "mode": 0, "value": "Mozilla/5.0 ..." },
    "screen": { "mode": 0, "width": 2560, "height": 1440 }
  }
}

The payload mirrors the client editor fields (ua, time-zone, canvas, webgl, cookie, etc.). Use the UI export or Apifox for a full sample JSON.

See: Get list · Create browser