Here are the methods you can use to make HTTP calls.
Http.get("https://randomuser.me/api").then(({data}) => {
const response = data;
Bot.reply(response.results[0].name.first)
})
const body = {} â
Http.post("URL", body ).then(({data}) => {
const response = data;
})