Developer reference

URL and Query String Cheatsheet

URL anatomy, query string, UTM, encoding, and request snippet reminders for web workflows.

URL shape

A URL can include scheme, host, path, query, and hash.

https://example.com/path?key=value#section

Query pair

Query strings pass key-value parameters.

utm_source=newsletter

Encoded space

Spaces are percent-encoded in URL components.

%20

Fetch request

Browser JavaScript request shape for simple APIs.

fetch("https://example.com/api")

Related tools

Related categories