Missing scheme
URLs without http(s):// fail to parse.
Fix: Prepend the scheme before parsing.
Search tools and pages.
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
Written by Giorgos Kostas. Last reviewed:
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
Passive Access-Control-Allow-Origin matcher — paste a header value plus a list of origins to confirm wildcard, scheme, and subdomain rules
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 JWTs, verify HMAC, RSA, and EC signatures (paste secret/PEM or fetch JWKS), inspect claims, and visualize the exp/nbf/iat timeline
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.
URLs
Fix common URL encoding mistakes in query strings, callback URLs, OAuth redirects, and nested API parameters.
Security
A practical checklist for checking JWT claims, expiration, audiences, issuers, algorithms, and signature verification.
Time
Debug Unix timestamps, local time, UTC offsets, DST boundaries, and off-by-one-day errors in apps and APIs.