TopDev
🔗

URL Parser & Query String Builder

Split a URL into protocol/host/path/query/hash. Edit each query param and rebuild a clean URL — uses URL & URLSearchParams APIs.

All tools Browser-only

Uses standard URL & URLSearchParams — splits into protocol, host, path, query, hash; edit each param and rebuild a clean URL.

When you need to parse a URL

Standard URL structure

https://user:pass@example.com:8080/path/to/page?key=value&q=hello#section
└─┬─┘   └────┬────┘ └────┬────┘ └─┬┘ └──────┬──────┘ └──────┬───────┘ └───┬──┘
protocol     auth        host    port      path           query         hash

Query string encoding tips

Who this is for

Backend devs, API integrators, anyone debugging JSON/YAML/CSV payloads or working with structured data.

FAQ

Is my sensitive data safe?

Yes. JSON/YAML/CSV you paste is NOT uploaded to any server. All processing happens locally in your browser.

Is there a size limit?

Browser RAM dependent. Files under 10MB run smoothly. Larger files may freeze the tab.

Related tools

See all tools →