Skip to main content
DevToys
Network

URL parser

Inspect URL components and query parameters

Components
origin
https://example.com:8080
protocol
https:
username
user
password
pass
hostname
example.com
port
8080
pathname
/path/to/page
search
?q=devtoys&lang=ja
hash
#result
Path segments
0path1to2page
Query parameters2
q
devtoys
lang
ja
How to use / Notes

How to use

  1. Paste the URL to parse.
  2. Its scheme, host, path and query are broken out.
  3. Review the query parameters in a list.

Notes

  • Parsing runs in the browser; the URL is never sent anywhere.
  • Encoded parameters are shown decoded—do not confuse them with the raw value.