Req.params
You're seeing just the function
params
, go back to Req module for more information.
Adds params to request query string.
Examples
iex> Req.get!("https://httpbin.org/anything/query", params: [x: "1", y: "2"]).body["args"]
%{"x" => "1", "y" => "2"}