URL Parser

Break down any URL into its components: protocol, hostname, port, path, query parameters, and hash.

URL Input

Protocolhttps:
Hostnamewww.example.com
Port8080
Pathname/path/to/resource
Search?key1=value1&key2=value2
Hash#section-hash

Query Parameters

KeyValue
key1value1
key2value2

Anatomy of a URL

A URL (Uniform Resource Locator) is composed of several parts that tell a web browser how and where to retrieve a resource. This tool uses the browser's built-in URL parser to break down an address into its fundamental components, making it easy for developers and curious users to inspect the structure of a web link.

Frequently Asked Questions