Skip to content
Last updated

Manage cloud phone instances programmatically through the MoreLogin API.


Overview

The Cloud Phone API allows you to create, control, and manage virtual Android devices in the cloud. It supports app installation, file management, scheduled tasks, and ADB debugging.

Cloud Phone supports two API access methods:

MethodBase URLUse Case
Open API (Remote)https://api.morelogin.comAccess from anywhere, OAuth2 authentication
Local API (Local)http://127.0.0.1:40000Access from the machine running MoreLogin client

Choose Open API if you need remote access or server-to-server integration. Choose Local API if you are running automation on the same machine as the MoreLogin client.

For authentication details, see Authentication.


Capabilities

ResourceDescriptionKey Operations
Cloud PhoneVirtual Android devicesCreate, start, stop, delete, modify, reset
File ManagementFile transfer to/from devicesUpload, download, set keybox
App ManagementApp lifecycle managementInstall, launch, restart, stop, uninstall
Schedule ManagementAutomated task schedulingCreate, update, delete, execute scheduled tasks
ProxyProxy configurationsAdd, update, delete, list proxies
GroupOrganize devices into groupsCreate, edit, delete groups
TagLabel devices with tagsCreate, edit, delete tags
ADBAndroid Debug Bridge accessRemote debugging via SSH tunnel

API Reference

APIDescription
Cloud Phone Open APIRemote access via https://api.morelogin.com, OAuth2 authentication
Cloud Phone Local APILocal access via http://127.0.0.1:40000, token authentication

Note: While most operations are available in both APIs, there are differences in path prefixes and some endpoint details. Local API paths use the /api/cloudphone/... prefix, while Open API paths use /cloudphone/.... Always refer to the specific API reference for exact paths and parameters.


GuideDescription
ADB ConnectionConnect to cloud phones via ADB for debugging
AuthenticationOAuth2 token setup (Open API) and token auth (Local API)
QuickstartRun your first Cloud Phone API call