Convert the format of delivered credentials. Data is processed locally in your browser.
Converts delivered lines into the mobile session format — for software that talks to the mobile API.
login:pass[:email:password][:2FA] | cookies — one account per line
credentials | User-Agent | device | X-MID;…;Authorization=Bearer IGT:2:…
Cookie delivery carries no original device or claim, so the User-Agent and device id are derived from ds_user_id: unique per account and stable across runs, but the fingerprint stays synthetic. The claim is set to 0 — Instagram issues a fresh one on the first request.
The reverse: from a mobile session back to cookies — for the browser and extensions like Cookie-Editor.
also accepts account-manager containers — records separated by a double bar
credentials | [{"name":"sessionid",…},{"name":"ds_user_id",…}]
The session is read from the Bearer token, or from a standalone sessionid field when there is none. A line with no working session is returned untouched and is not counted as done.
A ready cookie array for Dolphin, AdsPower and similar — with domain, path and flags.
accepts both cookie forms: a JSON array and a name=value; string
[{"domain":".instagram.com","name":"sessionid","secure":true,…}]
Cookie lifetime is set to a fixed far-future date. When a line carries no cookies, the session is taken from the Bearer token — that is how account-manager formats work.