(http-request-arg http-request key) -> value
This is a shortcut function that is, perhaps, best explained by the source code:
(define (http-request-arg http-request key) (define args (http-url-args (http-request-url http-request))) (if args (dict-ref args key) #f))