URL Parser
Enter a URL and see it decomposed into all components: protocol (scheme), hostname, port, path, query parameters (parsed individually), hash/fragment, username, and password. Copy any component individually. Essential for debugging URLs and understanding URL structure.
href
https://user:pass@example.com:8080/api/v2/users?page=1&limit=20&sort=name&order=asc#section-2
protocol
https:
hostname
example.com
port
8080
pathname
/api/v2/users
search
?page=1&limit=20&sort=name&order=asc
hash
#section-2
origin
https://example.com:8080
host
example.com:8080
username
user
password
***
params
{
"page": "1",
"limit": "20",
"sort": "name",
"order": "asc"
}