Popular topics: Multilogin X, Multilogin 6,
Multilogin 6 automation FAQ
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 support@multilogin.com.
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.