Target environment (browser profile) ID
API Reference
/Local API
/- Get a list of browser kernel versions
Start browser profile
Stop browser profile
Quick create browser profile
Advanced create browser profile
Modify browser profile
Delete browser profile
Get a list of browser profiles
Get browser profile details
Get browser profile UA
Get resolution
Get configurable platforms
Get browser security lock status
Get a list of timezone and language
Clear local profile cache
Clean Environment Cloud Cache
Refresh fingerprint
Get the browser profile running status
Get screen list
One-click adaptive window arrangement
Batch modify profiles group
Batch modify profiles proxy
Batch modify profile remark
Close all opened prifile
Get process IDs of all opened profiles
Get remote debugging info for all opened profiles
Get phone model list
Get a list of browser ker...
Local API (1.0.0)
The MoreLogin API offers a comprehensive and developer-friendly RESTful interface that empowers you to programmatically manage browser profiles, cloud phones, and related resources—enabling seamless automation, scalability, and control.The MoreLogin local API runs on your machine and is accessible at:127.0.0.1:40000
Download OpenAPI description
Languages
Servers
Mock server
https://guide.morelogin.com/_mock/api-reference/local-api/local-api
Morelogin Local endponint
http://127.0.0.1:40000
- Mock serverhttps://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/detail
- Morelogin Local endponinthttp://127.0.0.1:40000/api/env/detail
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/detail \
-H 'Content-Type: application/json' \
-d '{
"envId": "1869988538611834880"
}'Response
application/json
{ "code": 0, "msg": null, "data": { "id": "string", "envName": "string", "browserTypeId": 0, "operatorSystemId": 0, "groupId": "string", "tagIds": null, "proxyId": "string", "isEncrypt": 0, "envRemark": "string", "uaVersion": 0, "browserCore": 0, "accountInfo": { … }, "isShowAccount": 0, "afterStartupConfig": { … }, "startupParams": null, "cookies": null, "advancedSetting": {} }, "requestId": "string" }
- Mock serverhttps://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/advanced/ua/versions
- Morelogin Local endponinthttp://127.0.0.1:40000/api/env/advanced/ua/versions
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/advanced/ua/versionsResponse
application/json
{ "code": 0, "msg": null, "data": [ { … } ], "requestId": "string" }
Bodyapplication/jsonrequired
Operating system type. 1 = Windows, 2 = macOS, 3 = Android, 4 = iOS
Enum1234
Example: 1
- Mock serverhttps://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/advanced/ua/get
- Morelogin Local endponinthttp://127.0.0.1:40000/api/env/advanced/ua/get
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://guide.morelogin.com/_mock/api-reference/local-api/local-api/api/env/advanced/ua/get \
-H 'Content-Type: application/json' \
-d '{
"os": 1,
"osVersion": "Windows 11",
"vendor": 1
}'Response
application/json
{ "code": 0, "msg": "string", "data": null, "resolution": { "id": "string", "value": "string" }, "ua": "string", "requestId": "string", "error": {} }