The following works:
exports = async function(arg) {
const axios = require('axios').default;
const response = await axios.get('https://jsonplaceholder.typicode.com/posts/1', {
responseType: 'json',
headers: {
"Accept": "application/json",
"Accept-Encoding": "deflate"
}
});
return response.data;
};