IG Media Insights - jstolpe/instagram-graph-api-php-sdk GitHub Wiki
Get insights on a media post.
use Instagram\Media\Insights;
$config = array( // instantiation config params
'user_id' => '<IG_USER_ID>',
'media_id' => '<MEDIA_ID>', // id of post to get insights on
'media_type' => '<MEDIA_TYPE>', // type of media CAROUSEL_ALBUM|VIDEO|IMAGE|STORY
'access_token' => '<ACCESS_TOKEN>',
);
// instantiate insights for use
$insights = new Insights( $config );
// get insights on the specified media
$mediaInsights = $insights->getSelf();