HTTP Request (req) Making outgoing HTTP requests in dryLang is done via the req built-in function. drylangres = req("https://api.github.com", {"method": "G"}) // Parsing the JSON response data = json(res) pt(data) The second argument is a configuration map where you can define method, body, headers, etc.PreviousOverviewNextHTTP Server (op)