Components
| Part | Value |
|---|
Query parameters
| Key | Value | Decoded value |
|---|
How to use the URL Parser
- Paste any URL into the input field.
- Click Parse to see all components broken out in a table.
- Query parameters are listed separately with their decoded values.
URL anatomy
scheme://username:password@hostname:port/path?key=value&key2=val#fragment
- Scheme – Protocol (https, http, ftp...)
- Host – Domain name or IP address
- Port – Defaults to 80 (http) or 443 (https) if omitted
- Path – Resource path on the server
- Query string – Key-value pairs after
? - Fragment – Anchor after
#, processed by the browser only