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
Refresh fingerprint
Get the browser profile running status
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
Morelogin Local endponint
http://127.0.0.1:40000/
- 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 \
http://127.0.0.1:40000/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" }
- 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 \
http://127.0.0.1:40000/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
- 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 \
http://127.0.0.1:40000/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": {} }