How to create a quick Multilogin profile with Postman
Quick browser profiles are temporary browser sessions for short tasks. When you close one, Multilogin deletes the profile and its data automatically. Start Quick Profile endpoint will help you launch multiple quick profiles.
This guide shows you how to start quick browser profiles through Postman using the Multilogin API.
Quick profiles are for browser tasks. For Android cloud-phone automation, use CLI, ADB, Appium, or supported AI-agent workflows instead.
Who can use this API request?
- 👨💻 Account owner and all team members
- 💰 Available on Pro 10, Pro 50, Business 100 and all Business plans
When should I use a quick profile?
Before you start
Before sending the request, make sure the Multilogin app is open.
- Complete all three steps from the article How to set up Multilogin API with Postman, including “Using the bearer token”: they will allow you to sign in correctly
- Navigate to the “Launcher” section in your Postman workspace and select the Start Quick Profile v3 endpoint
- Add a proxy:
- Go to the “Body” tab
- Scroll down to find
flagsand setproxy_maskingtocustom - Add your proxy details into the
proxyparameter
- Fill in the values for
automationandheadless_modeparameters:-
automation: selenium/puppeteer/playwright (specifying this parameter will return the port for automation in the response) -
headless_mode: true/false
-
If you do not need to use automation or headless mode, you can deselect these parameters from the start.
Run the request
- Launch the app
- Click “Send” to execute the request: a “200” status means success (in the response, you will also see the profile ID and the automation port)

Request body example
{
"browser_type": "mimic",
"os_type": "macos",
"parameters": {
"flags": {
"navigator_masking": "mask",
"audio_masking": "mask",
"localization_masking": "mask",
"geolocation_popup": "prompt",
"geolocation_masking": "mask",
"timezone_masking": "mask",
"canvas_noise": "natural",
"graphics_noise": "natural",
"graphics_masking": "mask",
"webrtc_masking": "natural",
"fonts_masking": "mask",
"media_devices_masking": "mask",
"screen_masking": "mask",
"proxy_masking": "custom",
"ports_masking": "mask",
"startup_behavior": "custom"
},
"proxy": {
"host": "gate.multilogin.com",
"type": "socks5",
"port": 1080,
"username": "0_0_0_0_0_0_multilogin_com-country-any-sid-X-filter-medium",
"password": "0"
},
"fingerprint": {},
"custom_start_urls": [
"https://multilogin.com/help/en_US/postman/creating-a-quick-profile-with-postman"
]
}
}If you want to use Multilogin proxy for your request, copy proxy details via GUI or API request.
Also, keep in mind that you have to set proxy_masking value as “custom”. Also, the proxy in the request body above is an example. You have to set the proxy on your own.
Prevent accidental deletion of quick profiles
If you're using quick profiles and want to avoid accidentally closing (permanently deleting) them, you can turn on a warning pop-up.
Add this snippet to the query body:
For mimic profiles:
"fingerprint": {
"cmd_params": {
"params": [
{
"flag": "warn-on-window-close"
}
]
}
},For stealthfox profiles:
"fingerprint": {
"cmd_params": {
"params": [
{ "flag": "mla.wwc",
"value": "true"
}
]
},
},Request body example (mimic with the modal enabled)
{
"browser_type": "mimic",
"os_type": "macos",
"parameters": {
"flags": {
"navigator_masking": "mask",
"audio_masking": "mask",
"localization_masking": "mask",
"geolocation_popup": "prompt",
"geolocation_masking": "mask",
"timezone_masking": "mask",
"canvas_noise": "natural",
"graphics_noise": "natural",
"graphics_masking": "mask",
"webrtc_masking": "natural",
"fonts_masking": "mask",
"media_devices_masking": "mask",
"screen_masking": "mask",
"proxy_masking": "custom",
"ports_masking": "mask",
"startup_behavior": "custom"
},
"proxy": {
"host": "gate.multilogin.com",
"type": "socks5",
"port": 1080,
"username": "0_0_0_0_0_0_multilogin_com-country-any-sid-X-filter-medium",
"password": "0"
},
"fingerprint": {
"cmd_params": {
"params": [
{
"flag": "warn-on-window-close"
}
]
}
},
"custom_start_urls": [
"https://multilogin.com/help/en_US/postman/creating-a-quick-profile-with-postman"
]
}
}With this flag enabled, you’ll see a confirmation modal before the profile closes. It’ll even remind you that you can upgrade it to a regular profile if needed (to proceed, see how to convert quick profiles to regular ones).
