- Browser
- Open API
Create a single browser profile with a full fingerprint configuration.
The browser kernel is matched from published kernels using the operating system and kernel fields in the request. No client version is read.
Operating system:
1— Windows2— macOS3— Android4— iOS5— Linux
Group name. The group is looked up or created automatically when supplied.
Proxy connection details. When proxyId refers to an existing proxy, that proxy is reused; otherwise a new proxy is created from these fields.
Kernel major version. Defaults to 0, which selects a published kernel automatically.
System bitness. Defaults to 1:
0— 32-bit1— 64-bit
CPU architecture. Defaults to 0:
0— x861— ARM
Dynamic fingerprint configuration. Keys come from the profile advanced-settings protocol; each value may be a string, number, boolean, array, or object depending on the key.
{ "language": "en-US", "timezone": "America/Los_Angeles" }
curl -i -X POST \
https://api.morelogin.com/env/create/advanced \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"envName": "marketing-01",
"browserTypeId": 1,
"operatorSystemId": 1,
"groupName": "Marketing",
"isEncrypt": 0,
"envRemark": "Created through the Open API",
"uaVersion": 124,
"browserCore": 124,
"systemBitType": 1,
"architecture": 0,
"afterStartupConfig": {
"afterStartup": 2,
"autoOpenUrls": [
"https://example.com"
],
"stayOnCheckIPPage": false
},
"startupParams": [
"--disable-notifications"
],
"disableAudio": 0,
"disableVideo": 0,
"disableImg": 0
}'Success
Operation request ID. This field may be present when the request passes through the API gateway.
{ "code": 0, "msg": null, "data": "1800000000000001", "requestId": "1d4f3ea968664593860b94b35d4ebf5e" }