Skip to content
Last updated

Manage proxies, groups, and tags that are shared across both Browser Profiles and Cloud Phones.


Overview

Shared Resources are common entities used by both Browser Profiles and Cloud Phones. Instead of managing them separately for each product, MoreLogin provides a unified set of APIs.

Shared Resources 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

For authentication details, see Authentication.


Resources

ResourceDescriptionKey Operations
ProxyHTTP/HTTPS/SOCKS5 proxy configurationsList, add, update, delete
GroupOrganize profiles/devices into groupsList, create, edit, delete
TagLabel profiles/devices with custom tagsList, create, edit, delete

API Reference

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

Note: Local API paths use the /api/ prefix (e.g., /api/proxyInfo/page), while Open API paths omit it (e.g., /proxyInfo/page). Always refer to the specific API reference for exact paths and parameters.


GuideDescription
Local API vs Open APIUnderstand the differences between the two API types
AuthenticationOAuth2 token setup (Open API) and token auth (Local API)
QuickstartGet started with your first API call