• Website
  • Server status
  • API documentation
  • Blog
Telegram Icon Community
EN
English
Português
Русский
中文 (中国)
Tiếng Việt
Log in Try for €1.99
  • Website
  • Server status
  • API documentation
  • Blog
  • Telegram Icon Community
  • English (US)
    English
    Português
    Русский
    中文 (中国)
    Tiếng Việt
Log in View Plans

Low-code automation with Postman

Automate browser tasks with Postman – no coding required. Learn how to send API requests, manage profiles, and streamline workflows with minimal effort.

search icon

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Getting started with Multilogin automation
  • Basic automation with CLI
  • Low-code automation with Postman
  • Script runner & predefined scripts
  • Puppeteer, Selenium, and Playwright
  • Custom Python scripts
  • Quick solutions with Developer Tools
  • External automation tools
  • Home
  • breadcrumb separator bar
  • Multilogin (latest)
  • breadcrumb separator bar
  • Efficient task automation with API
  • breadcrumb separator bar
  • Low-code automation with Postman
  • breadcrumb separator bar
  • Object Storage API requests overview

Object Storage API requests overview

Written by Anton L ( Updated on April 24th, 2026 )

Updated on April 24th, 2026

Want to back up specific parts of your browser profile, like cookies or extensions? Object Storage features will help you out with that. By uploading segments of browser data, you will protect them from getting lost. 

You will learn which API endpoints you can use for your profile objects.

Keep in mind, that this is a feature overview, and the explanations to their configuration will be brief. It is expected, that you know how to use Postman at basic level. The articles below are recommended to read before proceeding with that one.

  • How to set up Multilogin automation with Postman
  • How to navigate Multilogin API documentation with Postman
 

The endpoints are split into categories for your convenience. All of them are available in “Object Storage” folder, “Multilogin API” collection.

Make sure the app is launched, as it makes profile launching possible

 

List of object types

Endpoint: Get list of object types

 

It might be the first API request, which is recommended to do in advance. GET List of object types provides various categories, which are used for object classification. The types include various categories, such as extensions, cookies, profile templates, passwords, automation scripts, and launch parameter templates.

Bearer (or automation) token is enough for executing the request.

Get list of object types - My Workspace 2025-10-23 at 7.58.23 PM

 

Object upload, download, and deletion

How to upload the object 

Endpoint: Upload Object

 

POST Upload Object allows you to upload an object to the storage. You need to set the object type ID (which can be received from the following request: GET List of object types), object path (directory where you set your object), and storage type (cloud or local). There are also optional values, such as object meta (description of the object) and encryption. 

How to create and upload the object

Endpoint: Create and Upload Object

 

POST Create and Upload Object can help with the upload of the file as well, but it also provides an option to make a new file inside the API request itself. For example, it can be useful if you exported cookies via API. It has the same parameters as POST Upload Object, but it also has object_name parameter for file name and object_extension for file extension.

Create and Upload - My Workspace 2025-10-24 at 2.02.01 PM

How to download the object

Endpoint: Download Object

 

If you need to download the object from the cloud, you can use GET Download Object for that. You need to know the ID of the object (you receive it as a response during the object upload, or you can find it via GET Objects Meta endpoint). Replace <id_upload> in the endpoint bar with it.

Download Object - My Workspace 2025-10-24 at 2.37.07 PM

How to delete the object

Endpoint: Delete Object

 

You can use GET Delete Object for removing objects from storage. You need to state the ID of the object (you receive it as a response during the object upload, or you can find it via GET Objects Meta endpoint). There is also a parameter called permanently, which defines whether the object goes to the trash bin or not. Its value is set as false by default.

Delete Object - My Workspace 2025-10-24 at 4.37.50 PM

How to restore the object

Endpoint: Restore Object

 

If you removed the object and sent it to the trash bin (refer to the Object deletion chapter for that), you can recover the object. You need to know ID of the object (you receive it as a response during the object upload, or you can find it via GET List of object types endpoint). Replace :id in the endpoint bar with it.

Restore Object - My Workspace 2025-10-24 at 3.58.09 PM

Object statistics related endpoints

How to detect which profiles use the object

Endpoint: Object Profile Usages

 

GET Object Profile Usages can be used for that purpose. Set your object ID (you receive it as a response during the object upload, or you can find it via GET List of object types endpoint) and replace Object ID in the endpoint bar.

Object Profile Usages - My Workspace 2025-10-24 at 5.35.06 PM

 

How to get statistics for objects

Endpoint: Get Statistics for Objects

 

GET Statistics for Objects provides info about the objects: how much space do they take, if they are available to the user, etc. Bearer/automation token is enough for running that API request.

How to receive meta info about objects

Endpoint: Get Objects meta

 

This endpoint displays various info related to profiles, such as ID, creation date, name, etc. It has various sorting parameters, which can help out to search necessary objects. Keep in mind that limit and offset values need to be set. You can add and adjust values of the parameters in the “Params” tab.

How to receive meta info about specific profile

Endpoint: Get Objects meta by ID

 

If you need the info about one specific object – you can use this endpoint instead of GET Object Meta. You need to set the object ID for the request (you receive it as a response during the object upload, or you can find it via GET Objects Meta endpoint). Replace :id value with it.

How to print the list of objects used in the profile

Endpoint: List of Objects per profile

 

Similar use case to GET Object Profile Usages, but it provides the list of objects used in the specific profile. You need to state the profile ID in the profile_id parameter (here is how you can get it: How to copy profile IDs in Multilogin). 

Make sure that the request type is set as GET.

 

Storage type conversion

How to convert cloud object to local one

Endpoint: Cloud to Local

 

This endpoint is used to transfer a local object to cloud storage. You need to set the object_id value for it (you can receive it via GET Objects Meta). 

How to convert local object to cloud one

Endpoint: Local to Cloud

 

This endpoint is used to transfer an object from local storage to cloud storage. You need to set the directory of the object in object_path parameter and set object_id (you can get it via GET Objects Meta).

Local to Cloud - My Workspace 2025-10-24 at 6.52.53 PM

Extension management

Related to the extension manager feature, which is mentioned in the following article: How to install browser extensions in Multilogin (Extension manager method).

How to create extension object

Endpoint: Create Extension

 

POST Create Extension creates an object from the extension link. Set the browser_type (Mimic or Stealthfox), storage_type (cloud or local), and url values for the extension (from Chrome Web Store for Mimic and Firefox Add-ons for Stealthfox). 

If you have extension locally on your storage device, refer to the following endpoint: POST Upload Object.

 

How to enable and disable extension

Endpoints: 

  • Enable Extension
  • Disable Extension
 

You can use those endpoints for making extensions available for profiles or the opposite. The structure for both of them is similar: set the extension object ID (you can receive it via POST Upload Object, POST Create Extension or GET Objects Meta) in the endpoint bar and profile IDs (here is how you can get them: How to copy profile IDs in Multilogin) in the Body tab.

Enable Extension - My Workspace 2025-10-24 at 7.08.17 PM

 

Was this article helpful?

Give feedback about this article

In this article

  • List of object types
  • Object upload, download, and deletion
  • How to upload the object
  • How to create and upload the object
  • How to download the object
  • How to delete the object
  • How to restore the object
  • Object statistics related endpoints
  • How to detect which profiles use the object
  • How to get statistics for objects
  • How to receive meta info about objects
  • How to receive meta info about specific profile
  • How to print the list of objects used in the profile
  • Storage type conversion
  • How to convert cloud object to local one
  • How to convert local object to cloud one
  • Extension management
  • How to create extension object
  • How to enable and disable extension

Multilogin community

Stay informed, share your thoughts, and engage with others!

Telegram Icon Join us on Telegram

Read more on the topic

Blog Post Img

10 Best Datacenter Proxies for Web Scraping (2025 Edition)

Apr 2, 2025 5 min read
Google SERP Img

What is a Google SERP Proxy and Why Should You Care?

Apr 1, 2025 6 min read
UK Proxy Img

What Are Dedicated UK Proxies? Everything You Need to Know

Apr 1, 2025 6 min read
Related Article Title Icon

Related articles

  • How to use custom DNS in Multilogin 6
  • How to choose the right proxy type for Multilogin
  • Proxies & IP masking FAQ

Mobile

  • Cloud phone
  • Virtual phone
  • Remote phone
  • Phone farming
  • Cloud cell phone
  • Cloud Android emulation
  • AI Quick Action Automation

Multi-accounting

  • Multiple Instagram accounts
  • Multiple Tiktok accounts
  • Multiple Reddit accounts
  • Multiple Telegram accounts
  • Multiple Facebook accounts
  • Multiple Youtube accounts
  • Multiple LinkedIn accounts

COMPARISON

  • Multilogin vs. MoreLogin
  • Multilogin vs. FlashID
  • Multilogin vs. DuoPlus
  • Multilogin vs. VMOS cloud
  • Multilogin vs. Octo Browser
  • Multilogin vs. AdsPower
  • Multilogin vs. GoLogin

Platform proxies

  • Mobile proxy
  • Reddit proxy
  • Instagram proxy
  • TikTok proxy
  • Facebook proxy
  • Youtube proxy
  • LinkedIn proxy

USECASES

  • Cloud phones for Tiktok
  • Cloud phones for Instagram
  • Cloud phones for Reddit
  • Cloud phones for Facebook
  • Cloud phones for Youtube

RESOURCES

  • Knowledge base
  • API documentation
  • Glossary
  • Academy
  • Blog
  • Server status
  • Release notes

FREE TOOLS

  • YouTube views to money calculator
  • Instagram money calculator
  • Online URL to text converter
  • Google local SERP checker
  • Random address generator

GET IN TOUCH

  • Contact 24/7 support
    [email protected]
  • Referral program
  • Affiliate program
  • Pricing page
  • Careers
GDPR Compliant

© 2026 Multilogin. All rights reserved.

  • Privacy policy
  • Terms of service
  • Cookie policy
Multilogin watermark
  • MOBILE

    • Cloud phone
    • Virtual phone
    • Remote phone
    • Phone farming
    • Cloud cell phone
    • Cloud Android emulation
    • AI Quick Action Automation
  • MULTI-ACCOUNTING

    • Multiple Instagram accounts
    • Multiple Tiktok accounts
    • Multiple Reddit accounts
    • Multiple Telegram accounts
    • Multiple Facebook accounts
    • Multiple Youtube accounts
    • Multiple LinkedIn accounts
  • COMPARISON

    • Multilogin vs. MoreLogin
    • Multilogin vs. FlashID
    • Multilogin vs. DuoPlus
    • Multilogin vs. VMOS cloud
    • Multilogin vs. Octo Browser
    • Multilogin vs. AdsPower
    • Multilogin vs. GoLogin
  • PLATFORM PROXIES

    • Mobile proxy
    • Reddit proxy
    • Instagram proxy
    • TikTok proxy
    • Facebook proxy
    • Youtube proxy
    • LinkedIn proxy
  • USECASES

    • Cloud phones for Tiktok
    • Cloud phones for Instagram
    • Cloud phones for Reddit
    • Cloud phones for Facebook
    • Cloud phones for Youtube
  • RESOURCES

    • Knowledge base
    • API documentation
    • Glossary
    • Academy
    • Blog
    • Server status
    • Release notes
  • FREE TOOLS

    • YouTube views to money calculator
    • Instagram money calculator
    • Online URL to text converter
    • Google local SERP checker
    • Random address generator
  • GET IN TOUCH

    • Contact 24/7 support
      [email protected]
    • Referral program
    • Affiliate program
    • Pricing page
    • Careers
GDPR Compliant
  • Privacy policy
  • Terms of service
  • Cookie policy

© 2026 Multilogin. All rights reserved.

Expand