developer tipspostman

How to Use Postman Scratch Pad Without Signing In

Learn how to use Postman Scratch Pad to send API requests without signing in to a workspace. A quick guide for local API development and testing.

Jul 10, 20262 min readUpdated Jul 17, 2026
How to Use Postman Scratch Pad Without Signing In

💡 How to Use Postman Scratch Pad Without Workspace

Starting from Postman v10.18 (released around May 2023), the classic Scratch Pad mode was officially removed and replaced by a new workspace-based experience that requires users to sign in. While this transition aims to improve collaboration and syncing between devices, many developers still prefer a lightweight, offline, and no-login workflow.

If you’re one of them — here’s a simple trick to re-enable the Scratch Pad manually, even in the latest versions of Postman.


⚙️ Steps to Enable Scratch Pad

Follow these 7 simple steps:

  1. Run Postman — make sure it starts in the lightweight client mode (the default for new versions).

  2. Open DevTools — press Ctrl + Shift + I (or Cmd + Option + I on macOS).

  3. In the Console, run this command:

    code
    pm.settings.setSetting("offlineAPIClientEnabled", 0)

    This disables the lightweight client and switches Postman back to the Scratch Pad mode.

  4. Restart Postman — you’ll briefly see the Scratch Pad interface appear before it gets hidden by the login screen.

  5. Open DevTools again (same shortcut as before).

  6. Run this command in the console:

    code
    pm.mediator.trigger("hideUserSwitchingExperienceModal")
  7. 🎉 Done! You now have full access to Scratch Pad again — no login, no workspace required.


🧠 Why This Works

These commands toggle Postman’s internal feature flags that control how the workspace UI and offline mode are displayed. Essentially, you’re telling Postman to behave like an older version, where Scratch Pad was the default.


⚠️ Notes

  • This tweak might reset after Postman updates, so keep the steps handy.
  • It’s meant for personal or offline testing only — avoid using it for team workspaces or production setups.
  • The commands are safe; they simply modify client-side settings.

✅ Final Thoughts

Postman’s move to enforce sign-in and cloud workspaces makes sense for collaboration — but sometimes, developers just want the simplicity of offline Scratch Pad.

This little trick gives you back that flexibility. Happy testing! 🚀

Comments

0/2000

Loading comments…

Trung Nguyen

Trung Nguyen

Software engineer building simple, reliable systems. I write about architecture, Java, and things I learn along the way.

More about me