Contact Us
If you still have questions or prefer to get help directly from an agent, please submit a request.
Popular topics: Multilogin X, Multilogin 6,
-
Retrieving the token Using the automation token in a workspace Retrieving profile, folder, and workspace IDs Retrieving the user ID Selenium automation example Playwright automation example Puppeteer automation example Logging in to Multilogin automatically Setting up automatic cookie collection Auto-launching the agent Exporting proxy details from profiles Converting external proxy lists into API-ready JSON files Automation FAQHow to fix agent connection issues How to fix startup issues in Multilogin How to fix profile launch or proxy connection issues How to fix Mimic launch issues on Linux How to enable web camera in Multilogin profiles How to fix website loading issues in Multilogin My app or profile is slow: how to fix performance issues How to unlock a locked profile How to find missing profiles How to access restricted websites How to fix small Stealthfox window resolution on Windows How to fix connection issues in restricted regions How to fix Multilogin issues on macOS How to disconnect and reconnect the agent How to reinstall app components How to send logs to support How to fix "Failed to get profile data" error How to fix "Access denied" error How to fix “ERR_CONNECTION_RESET” error How to fix Stealthfox issues on Windows How to fix “Wrong proxy data” error
-
Common errors and solutions in Multilogin 6 Can't launch profiles in Multilogin 6 Multilogin 6 browser profile shows "Error" in status How to fix Stealthfox issues on Windows JavaScript error when switching to dark mode in Multilogin 6 Error: Failed to get IP data: can't connect through proxy Error: Javax.crypto.badpaddingexception: pad block corrupted Status: Update in progress...Loading (1) of 2 components Error: Fingerprint composition failed Error: Mimic/Stealthfox executable is not found
Multilogin 6 automation FAQ
Written by Yelena Varabyeva
Updated on December 12th, 2024
Table of contents
We are excited to bring you automation features that you have been waiting for! Easy API access, local profiles and headless mode are already available in Multilogin X. Sign up and get started now with our comprehensive API documentation. Keep in mind that the information below applies to Multilogin 6 only.
Can I run Mimic and Stealthfox in headless mode?
You can use Multilogin 6 in both GUI and headless mode. However, if you want to run browser profiles, you still need to have GUI.
Which plans have access to automation tools?
Only Custom plan provides access to our Local API. If you attempt to use it with other subscription plans, the server will respond with the following error: {"status": "ERROR", "message": "Forbidden", "value": "Forbidden"}
.
Keep in mind that sub-accounts/team members don’t have access to automation tools.
How do I define the port?
The port for Multilogin 6 is defined in the app.properties
file by entering the following line (example for port 35000): multiloginapp.port=35000
The port number has to be in the range from 10000 to 49151. Check our quick guide to starting browser automation for step-by-step instructions.
What is Selenium Hardened?
It works like normal Selenium with the added feature that it cannot be seen by websites due to our anti-fingerprinting technologies. It is built into our browsers, so you don't have to download it or add it as a separate dependency.
Can I save profiles locally instead of using your cloud storage?
Local profiles are already available in our latest version Multilogin X!
Will you make an automation script for me?
We do not offer a service for creating tailor-made programs for you. If you have a script that is running into errors with our software, we can take a look if it is in Python/JavaScript. For this, contact us at [email protected].
Can I still use Multilogin 6 UI with automation?
Yes, you can still use the Multilogin 6 application.
Is the feature "Get new fingerprint" available in API?
We do not have an API endpoint that would randomly generate profile fingerprints like the UI button "Get new fingerprint". However, you can still get a new fingerprint by creating a profile or updating an existing one using the POST/profile/{uuid}
endpoint. It will update the profile information settings along with the fingerprint.
Can I import cookies via API?
Yes, it is possible to import cookies via API.
- To import cookies in JSON format, use the cookieImportJSON API endpoint
- To import cookies in Netscape format, use the cookieImportNetscape API endpoint
How do I get a group ID?
- Create the group manually within the app UI if it has not been created yet
- Add a profile manually within the app UI into this group
- Run a script that returns the list of profiles
- On that list you will see profile IDs and group IDs
Here’s our documentation on how to return the list of profiles.