URL Parser & Query Decoder

Parse URLs locally, break down protocol, host, path, and query parameters, and copy extracted query values as JSON.

Click for theater mode

URLs are parsed only in your browser. Nothing is uploaded, logged, or sent to a third-party API.

URL Parts

Live parsing ready

Protocol

https:

Origin

https://app.example.com:8443

Host

app.example.com:8443

Hostname

app.example.com

Port

8443

Path

/reports/orders

Search

?status=paid&status=refunded&utm_source=newsletter&page=2

Hash

#summary

Query Parameters

KeyValue
statuspaid
statusrefunded
utm_sourcenewsletter
page2

How to Use

  1. Paste a complete URL, such as a link with UTM tags, tokens, pagination, or filters.
  2. Review the parsed protocol, host, path, search string, and hash below.
  3. Inspect each query parameter key and value in the table.
  4. Click "Copy Parameters JSON" to move the parsed query into debugging scripts, logs, or test fixtures.
  5. If the URL is missing a protocol or is severely malformed, the tool shows an error instead of guessing.

Core Features

  • Parse protocol, host, path, search, and hash as soon as you paste a complete URL
  • Display query string parameters as a clean key-value table while preserving repeated keys
  • Copy extracted URL parameters as a JSON object for debugging and test fixtures
  • Use browser-native URL and URLSearchParams APIs for realistic parsing behavior
  • Keep internal URLs, tokens, and user-specific links local to your browser

Related Tools

FIRE Calculator 2026 (Inflation Adjusted) | Retirement Gap Simulator

The 2026 FIRE Calculator (Inflation Adjusted). Simulate real purchasing power, analyze retirement savings gaps, and generate a visual wealth roadmap. One-click CSV export for your Excel or Notion finance dashboard. 100% Private, client-side calculation.

Position Size Calculator - Risk-Based Trade Sizing

Calculate trade position size from account balance, risk %, entry, and stop loss. Runs locally in your browser with no uploads, so you can compare risk scenarios before you trade.

Compound Interest Calculator | Free APY & Investment Chart

Calculate compound interest from principal, recurring contributions, APY, and time. Visualize principal, interest, and final balance with a local interactive chart.

PUBG Erangel Interactive Map 2026: Secret Basements & Loot Guide

Struggling to find Erangel secret rooms? Use our 2026 interactive map to locate all 15 red-door entries, key spawns, and T3 loot heatmaps. Privacy-first & free.

PUBG Taego Secret Room Map 2026: Key Spawn & Hidden Locations

Definitive Taego map for 2026. With Error Spaces removed, identify "Blue-Roof" houses for crate-tier loot and Self-AEDs. Privacy-first, forever free.

PUBG Vikendi Map 2026: Bear Caves, Lab Camps & Secret Loot

Vikendi 2026 tactical guide. Track deadly Bear Cave entrances, Lab Camp security keys, and Thermal Scope spawn zones. Avoid Polar Bears, grab loot.

PUBG Rondo Interactive Map 2026: Security Keys & Safes Guide

Master Rondo 2026 with our 8x8 tactical map. Locate every Security Door, Keycard spawn, and Safe for maximum gold. Privacy-first & free.

Universal Image Stamper Pro: SVG & WebP Support, Lossless Annotation 2026

Struggling with blurry markups? EasyTools offers a universal stamper supporting lossless SVG scaling and high-quality WebP export. Preserve transparency and export JSON data locally.

Calculation Logic

The tool uses the browser's built-in URL and URLSearchParams interfaces. That keeps parsing behavior close to frontend code, the address bar, and Web APIs instead of guessing URL structure with custom regular expressions.

If the same parameter name appears more than once, the exported JSON keeps those values as an array so multi-select filters, repeated tags, or tracking parameters are not lost. This tool is focused on structured parsing and parameter extraction, not URL character encoding.

FAQ

Are pasted URLs logged anywhere?

No. Parsing, table display, and JSON export run in your current browser session.

Can it handle malformed URLs?

The tool expects a complete URL, such as one starting with https://. Severely malformed input shows a clear error and is not sent to a server for processing.

What happens to repeated query parameters?

Repeated keys are exported as arrays in JSON and shown as separate rows in the table.

How is this different from a URL encoder?

A URL encoder converts characters for safe transport. A URL parser breaks a complete link into structured fields and query parameters.