Skip to content

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/

Browser Profile

Operations

Get configurable platforms

Request

curl -i -X GET \
  http://127.0.0.1:40000/api/system/platform/list

Responses

Bodyapplication/json
codeinteger
msgnull
dataArray of objects
requestIdstring
Response
application/json
{ "code": 0, "msg": null, "data": [ { … } ], "requestId": "string" }

Get browser security lock status

Request

Bodyapplication/jsonrequired
envIdstringrequired

Unique environment (browser profile) ID

Example: "1869988538611834880"
curl -i -X POST \
  http://127.0.0.1:40000/api/env/lock/query \
  -H 'Content-Type: application/json' \
  -d '{
    "envId": "1869988538611834880"
  }'

Responses

Bodyapplication/json
codeinteger
msgnull
dataobject
requestIdstring
Response
application/json
{ "code": 0, "msg": null, "data": { "envId": "string", "locked": true }, "requestId": "string" }

Get a list of timezone and language

Request

Bodyapplication/jsonrequired
osintegerrequired

Operating system type. 1 = Windows, 2 = macOS, 3 = Android, 4 = iOS

Enum1234
Example: 1
curl -i -X POST \
  http://127.0.0.1:40000/api/env/base/list \
  -H 'Content-Type: application/json' \
  -d '{
    "os": 1
  }'

Responses

Bodyapplication/json
codeinteger
msgstring
dataobject
requestIdstring
Response
application/json
{ "code": 0, "msg": "string", "data": { "time_zone_list": [ … ], "language_list": [ … ] }, "requestId": "string" }

Cloud Phone

Operations

Cloud Phone/File Management

Operations

Cloud Phone/App Management

Operations

Cloud Phone/Schedules management

Operations

Proxy Management

Operations

Group Management

Operations

Tag Management

Operations