let group_id = 000000000;
let access_token = '____________________'
let v = '5.120'
let url = 'https://api.vk.com/method/groups.getById?access_token=' + access_token + '&v=' + v + '&group_id=' + group_id + '&fields=description,has_photo' //And more fields
let result = fetch(url)
if(result.ok){
result = await result.json()
//TODO smth
}