I'm wondering if there's a way to get recent 10 posts with some of their insights (reactions, reach, views ..etc) from a single API call.
Currently what I'm doing is getting recent 10 posts and looping through their IDs to get their insights. But this slows down the request.
I'm expecting a response like this
{
"posts": {
"data": [
{
"story": "Cyborgs shared Society of Computer Sciences - SUSL's post.",
"id": "1078877558819703_1767294393311346",
"views": "123",
"reach": "435",
},
{
"story": "Cyborgs shared Gamers On Board's video.",
"id": "1078877558819703_1766615263379259",
"views": "23",
"reach": "45",
},
{
"story": "Cyborgs was feeling motivated.",
"id": "1078877558819703_1547214361986018"
"views": "243",
"reach": "34",
},
],
}
}
So, as you can see along with post list, views and reach values are also coming relevant to each object.
So, is this possible ? How ?