# Shared Resources

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](/api-reference/browser) and [Cloud Phones](/api-reference/cloud-phone). 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](/api-reference/getting-started/authentication).

## Resources

| 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 Reference

| API | Description |
|  --- | --- |
| [Shared Resources Open API](/api-reference/shared-resources/open-api) | Remote access via `https://api.morelogin.com`, OAuth2 authentication |
| [Shared Resources Local API](/api-reference/shared-resources/shared-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.


## Related Guides

| Guide | Description |
|  --- | --- |
| [Local API vs Open API](/api-reference/getting-started/local-vs-open-api) | Understand the differences between the two API types |
| [Authentication](/api-reference/getting-started/authentication) | OAuth2 token setup (Open API) and token auth (Local API) |
| [Quickstart](/api-reference/getting-started/quickstart) | Get started with your first API call |