URL Parser

Break down complex URLs into structured components like protocol, host, and params.

URL Input

Supports full URLs with protocols, subdomains, and ports.

Query Parameters
KeyValue
userdev
id123
Protocolhttps:
Hostnameexample.com
Port8080
Path/path/to/page
Hash / Anchor#section-1
Query String?user=dev&id=123
Structured JSON
{
  "protocol": "https:",
  "hostname": "example.com",
  "port": "8080",
  "pathname": "/path/to/page",
  "search": "?user=dev&id=123",
  "hash": "#section-1",
  "params": {
    "user": "dev",
    "id": "123"
  }
}