Manage proxies, groups, and tags that are shared across both Browser Profiles and Cloud Phones.
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:
| Method | Base URL | Use Case |
|---|---|---|
| Open API (Remote) | https://api.morelogin.com | Access from anywhere, OAuth2 authentication |
| Local API (Local) | http://127.0.0.1:40000 | Access from the machine running MoreLogin client |
For authentication details, see Authentication.
| Resource | Description | Key Operations |
|---|---|---|
| Proxy | HTTP/HTTPS/SOCKS5 proxy configurations | List, add, update, delete |
| Group | Organize profiles/devices into groups | List, create, edit, delete |
| Tag | Label profiles/devices with custom tags | List, create, edit, delete |
| API | Description |
|---|---|
| Shared Resources Open API | Remote access via https://api.morelogin.com, OAuth2 authentication |
| Shared Resources Local API | Local 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.
| Guide | Description |
|---|---|
| Local API vs Open API | Understand the differences between the two API types |
| Authentication | OAuth2 token setup (Open API) and token auth (Local API) |
| Quickstart | Get started with your first API call |