How to use bookmark manager in Multilogin
Like any other browser, Multilogin support bookmarks for quick access to the web pages. With the built-in bookmark manager feature, it is possible to import, export and copy them between browser profiles.
Bookmark management is not available for GUI at the moment. It can be used only as API requests for now.
In order to use the bookmark manager – set up Postman and receive an authorization token – here is how you can do it.
Install Postman and import API endpoints
After installing Postman, open the Multilogin X API Documenter page:
- In the top-right corner, click “Run in Postman”
- Select “Postman for <your OS>”
Postman for Desktop will open. To import all API endpoints to your local environment:
- In “Import collection” → Select your desired workspace
- Click “Import”

Sign in via Postman
You need to sign in with your credentials to generate an API token, which grants you permission to access API endpoints and perform actions.
Find the User Sign in endpoint
- Open “Collections” → expand the “Multilogin X API” folder
- Open “Profile Access Management” folder
- Select the POST User Sign In endpoint (What is a POST request?)

Convert your password to MD5
You need to use the User Sign In endpoint to get your access token, but there is a catch: your password needs to be encrypted to MD5.
This is how to use MD5 Hash Generator to get your encrypted password:
- Insert your Multilogin X password
- Click “Generate”
- Copy your MD5 encrypted password

Get your API token
Regular tokens are valid for 30 minutes. Use Workspace Automation Token endpoint for options that last longer.
- In POST User Sign In → go to the “Body” tab
- Fill in your e-mail and your MD5 password as “strings”
- Send the request to sign in

- Check the access token in the “Response” area below → copy everything inside quotation marks

After installing Postman and generating a token for authorization, you will be able to execute bookmark manager requests.
How to export bookmarks
Endpoint: Export Bookmarks
Purpose: export bookmarks from a given profile.
Step 1: locate the API request
- Go to “Bookmark management” folder
- Open GET Export Bookmarks to configure the request
- From the “Params” tab, proceed to “Authorization”
- Select “Bearer Token” as the Auth Type
- In the “Token” field on the right, paste your API token previously copied
Step 2: edit the request and send it
- Edit the
:profile_idvalue in the endpoint bar: replace it with the ID of the profile with the bookmarks - Click “Send”
Bookmarks are exported by default to the following directories:
- Windows:
C:\Users\%username%\mlx\bookmarks - macOS:
/Users/%username%/mlx/bookmarks - Linux:
/home/%username%/mlx/bookmarks
How to import bookmarks
Endpoint: Import Bookmarks
Purpose: import bookmarks into a profile.
Parameters to edit:
-
paths(required) – Directory to a JSON file, which contains bookmarks -
operation(required) – Specify what to do with exported bookmarks (override or append)
If you've made a JSON file of bookmarks via Export Bookmarks endpoint, then the directory is the following:
- Windows:
C:\Users\%username%\mlx\bookmarks - macOS:
/Users/%username%/mlx/bookmarks - Linux:
/home/%username%/mlx/bookmarks
Step 1: locate the API request
Step 2: edit the request and send it
- Edit the
:profile_idvalue in the endpoint bar: replace it with the ID of the profile, where you expect to import the bookmarks - Go to the Body tab, and replace paths and operation parameters
- Click “Send”

How to copy bookmarks
Endpoint: Copy Bookmarks
Purpose: copy bookmarks from one profile to another.
Parameters to edit:
-
paths(optional) – Directory to a JSON file, which contains bookmarks -
operation(required) – Specify what to do with exported bookmarks (override or append)
If you made a JSON file of bookmarks via Export Bookmarks endpoint, then the directory is the following:
- Windows:
C:\Users\%username%\mlx\bookmarks - macOS:
/Users/%username%/mlx/bookmarks - Linux:
/home/%username%/mlx/bookmarks
Step 1: find the API request
Step 2: edit the request and send it
- Edit the
:profile_idand:source_profile_idvalues in the endpoint bar-
:profile_idwill be replaced with the ID of the profile where you expect to import the profiles -
:source_profile_idis the ID of the profile, where the bookmarks will be saved from.
-
- Go to the Body tab, replace paths and operation parameters
- Click “Send”