NETWORK

URL Parser & Query Builder

Inspect URL parts and decode query parameters at a glance.

URL INSPECTION

Parse a URL

Browser-only

URL parser and query builder guide

Inspect a URL’s protocol, host, path, query, fragment, and decoded query parameters without visiting the destination.

This is an inspection aid, not a link-safety service. Parsing never proves that a destination is trustworthy.

URL parts explained

A URL can contain a scheme such as https, an authority with host and optional port, a path, a query string beginning with ?, and a fragment beginning with #. The parser presents those components separately.

Query parameters and encoding

Query keys and values can be percent-encoded and repeated. Inspect each parameter in context; a decoded value may contain characters that need encoding again when constructing a new URL.

Review links safely

  • Check the scheme and hostname for look-alikes and unexpected redirects.
  • Treat query values as untrusted input.
  • Do not paste sensitive tokens into third-party services unless you understand the privacy implications.

Tip: Encode individual path or query components for their context instead of blindly encoding an already assembled URL.

Frequently asked questions

Does parsing fetch the URL?

No. The tool parses the text you provide and does not request the destination.

Should I encode the entire URL?

Usually encode individual query or path components as required by the URL context, not an already assembled URL indiscriminately.

Does a valid URL mean the destination is safe?

No. Syntactic validity says nothing about ownership, reputation, content, redirects, or malware.

Privacy note: URL parsing happens in your browser. Your URL is not fetched, stored, or uploaded.