URL Parser & Inspector – Free Online Tool | Awesome Toolkit

URL Parser & Inspector

Dissect any URL into its components: scheme, host, port, path, query parameters, and fragment.

By Marshkalk

How to use the URL Parser

  1. Paste any URL into the input field.
  2. Click Parse to see all components in a table.
  3. Query parameters are listed separately with their decoded values.

Anatomy of a URL

scheme://user:password@host:port/path?key=value&key2=val2#fragment

PartExampleDescription
SchemehttpsProtocol (https, http, ftp, mailto...)
Hostexample.comDomain name or IP address
Port:443Defaults to 80 (http) or 443 (https) if omitted
Path/blog/postResource path on the server
Query string?q=test&lang=enKey-value pairs after ?
Fragment#sectionAnchor after #, processed by the browser only (not sent to server)

URL encoding

Query parameter values are percent-encoded, spaces become %20 or +, special characters are escaped. This tool automatically decodes percent-encoded values for readability.

Common use cases

  • Debugging API calls: inspect the parameters in a complex API URL
  • Tracking parameters: identify UTM parameters (utm_source, utm_medium) added by marketing tools
  • Redirect analysis: parse the destination URL in a redirect_url parameter
  • SEO audit: check for session IDs or other parameters that create duplicate content