Если вы про это
async function fetchPosts() {
let res = await axios.get('api saita', {
params: {
['filter[tag]']: 'report',
['page[offset]']: 0,
['include']: 'user,lastPostedUser,tags,tags.parent,recipienUsers,recipienGroups.firstPost',
},
});
if (!res || !res.data) return false;
let posts = [];
for (let post of res.data.data) {
if (post.attributes.isLocked || post.attributes.isSticky) continue;
if (this.find(i => i.id == post.id)) continue;
let postMsg = res.data?.included.find(i => i.type == 'posts' && i.id == post.relationships.firstPost.data.id);
let text = postMsg?.attributes.contentHtml || '';
text = text.replace(/<br\s*[\/]?><br\s*[\/]?>/gi, '\n');
text = text.replace(/<[^>]*>/g, '');
vk.api.call("messages.send", {
peer_ids: id,
message: text,
random_id: 0,
}
)}}
То где у вас определяется id, который используется в стр 24?