# wackybot-request Introduction
## Super simple to use
wackybot-request is designed to be the simplest way possible to make http calls.

### Sample Code for GET Method
```js
const { get } = require("wackybot-request");
const response = await get("https://api.ipgeolocationapi.com/countries");
console.log(response);
```
