URL & Query-Parameter API

Every tool is an addressable service. You can prefill any input or option, auto-run the tool, and deep-link to a result — entirely client-side, with nothing sent to a server. Great for docs, bookmarks and quick workflows.

Universal parameters

Examples

Shareable links

Every tool page has a “Copy shareable link” button that captures your current inputs and options into a URL. Small states use readable query parameters; large ones are deflate-compressed into the #s= fragment. Either way the data is encoded in the link and never uploaded.

Bookmarklet

Drag a one-click bookmarklet to your bookmarks bar. This one formats the JSON at whatever URL you're viewing:

javascript:(function(){window.open('https://www.codingsetu.com/formatters/json-formatter/?run=true&url='+encodeURIComponent(location.href))})();

Privacy

The API changes nothing about how tools handle data: everything runs in your browser. The ?url= fetch is made directly by your browser, and #s= share state never leaves the page. See the privacy policy.