QuickFreeTools

Online URL Tool

Parse and display URL parts: protocol, host, pathname, search params. URL structure inspector.

{
  "href": "https://example.com/path?foo=bar&baz=1",
  "protocol": "https:",
  "host": "example.com",
  "hostname": "example.com",
  "port": "(default)",
  "pathname": "/path",
  "search": "?foo=bar&baz=1",
  "hash": "(none)",
  "params": {
    "foo": "bar",
    "baz": "1"
  }
}

Frequently Asked Questions

What does this tool do?
Paste a URL to see its breakdown: protocol, host, path, and query parameters.
Does it validate URLs?
It parses the string and shows parts; invalid URLs may show empty or unexpected parts.

Related Developer Tools