Format converter

Convert the format of delivered credentials. Data is processed locally in your browser.

Cookies → Android/UID

Converts delivered lines into the mobile session format — for software that talks to the mobile API.

Paste the delivered lines

login:pass[:email:password][:2FA] | cookies — one account per line

Result

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.

Android/UID → Cookies

The reverse: from a mobile session back to cookies — for the browser and extensions like Cookie-Editor.

Paste the delivered lines

also accepts account-manager containers — records separated by a double bar

Result

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.

Cookies → JSON for antidetect browsers

A ready cookie array for Dolphin, AdsPower and similar — with domain, path and flags.

Paste the delivered lines

accepts both cookie forms: a JSON array and a name=value; string

Result

[{"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.