Missing scheme
URLs without http(s):// fail to parse.
Fix: Prepend the scheme before parsing.
header • up to 320x100 / 728x90
Parse a URL into scheme, host, port, path, query parameters, fragment, and origin — fully client-side
Output will appear here...
content bottom • up to 300x250
sidebar • 160x600
Last reviewed:
A URL (Uniform Resource Locator) is a web address that points to a resource like a page, API endpoint, or file, typically including scheme, host, path, and query.
URL Parser uses the WHATWG `URL` parser — the same engine used by browsers — to split any URL into its scheme, userinfo, host, port, pathname, query parameters, fragment, and origin.
It's ideal when you need to verify the structure of a URL, extract query parameters, or debug callback URLs from OAuth flows.
https://user:[email protected]:8443/v2/items?q=books&page=2#top
Scheme: https Username: user Password: (set, hidden) Host: api.example.com Port: 8443 Pathname: /v2/items Query: ?q=books&page=2 Params: q = books page = 2 Fragment: #top Origin: https://api.example.com:8443
URLs without http(s):// fail to parse.
Fix: Prepend the scheme before parsing.
Raw spaces or quotes cause errors.
Fix: URL-encode special characters first.
No — this is a pure syntactic parser.
No — parsing is fully client-side.
Yes — `URLSearchParams` handles percent-decoding automatically.
Yes — any WHATWG-parsable URL works.
No — the password is detected but redacted in the report.
Pair with URL encoder/decoder and HTTP tools. You can also browse the full Networking & DNS category for more options.
Encode or decode URL strings
Paste response headers to audit HSTS, CSP, CORS, X-Powered-By disclosure, and Set-Cookie flags
Test whether origins are allowed by a given Access-Control-Allow-Origin value — wildcard and subdomain aware
Parse a User-Agent string into browser, version, operating system, device type, and bot status
Calculate network, broadcast, usable hosts, subnet mask, and wildcard for any IPv4 CIDR
Searchable list of well-known TCP/UDP ports — filter by port number, service name, or description
Pull all HTTP / HTTPS URLs out of any text with trailing punctuation cleaned
Inspect status, headers, redirects, and canonical hints for a URL
Decode and view JWT token payloads
Format, validate, and beautify JSON online with readable indentation, syntax checking, and copy-ready output for APIs, logs, and config files.
Open multiple URLs at once
Check slug length, stop words, readability, and URL cleanliness for SEO-friendly article, category, and landing page paths.