The shape of a request
A method, an address, some headers, and sometimes a body.
GET /search?q=kindred&page=2 HTTP/1.1
Host: api.example.org
Accept: application/json
Authorization: Bearer abc123- The method says what kind of operation this is.
- Everything after the ? is the query string: parameters, joined by &.
- Headers carry metadata: what you accept, who you are, what format you are sending.