const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({groupByField: '<string>', unnestGroupByField: true})
};
fetch('https://{instance}/api/v2/worker/group-and-count', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));