Break down a URL to inspect its parts. It is completely free and very easy to use.
Loading tool...
The URL & Query String Inspector breaks down any web URL into its constituent components: Protocol, Hostname, Port, Pathname, Query Parameters, and Hash Fragment for debugging and API analysis.
Parses URLs using the standard W3C `URL` and `URLSearchParams` Web APIs. Extracts protocol schemes (`https:`), subdomain/domain hierarchies, port numbers, structured key-value query parameter dictionaries, and hash identifiers.
https://shop.example.com:8080/products/shoes?category=running&sort=price_asc&utm_source=google#reviewsProtocol: https: | Host: shop.example.com:8080 | Path: /products/shoes
Params: { category: "running", sort: "price_asc", utm_source: "google" }
Hash: #reviewsExtracts every structural layer and presents query parameters as an editable key-value dictionary.
Yes! If you paste a raw query string (e.g. ?utm_source=google&utm_campaign=winter), the inspector automatically isolates and decodes the parameters without requiring a domain prefix.
Passing authentication tokens, API keys, or passwords inside URL query strings is a major security risk because URLs are recorded in server access logs and browser history.
No. All parsing and parameter decoding is executed 100% locally on your machine using standard browser URL APIs.