Documentation provides simple examples with fetch API:
fetch('http://example.com/')
.then(function(res) {
return res.text();
})
.then(function(body) {
var output = {id: 1234, rawHTML: body};
callback(null, output);
})
.catch(callback);
to query data.
How can I add headers or pass post data in those structures?
One can use standard Fetch API possibilities (second parameter is options for request where you can pass headers, HTTP method to be used etc.), e.g.
like described here