URL Parser & Inspector

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

How to use the URL Parser

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

URL anatomy

scheme://username:password@hostname:port/path?key=value&key2=val#fragment

  • Scheme – Protocol (https, http, ftp...)
  • Host – Domain name or IP address
  • Port – Defaults to 80 (http) or 443 (https) if omitted
  • Path – Resource path on the server
  • Query string – Key-value pairs after ?
  • Fragment – Anchor after #, processed by the browser only