I have created a REST API for you to integrate into your website / app or other project, to retrieve the results of a fake check in JSON format.
The integration in PHP is as below. You should be able to hack this to work in another language if you don’t use PHP.
PHP Implementation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?php //your api key that was emailed to you $apikey = '0123456789'; //your api secret that was emailed to you $apisecret = 'fakecheck.co'; //the instagram account to check $account = 'kimkardashian'; $time = time(); $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $url = 'https://api.fakecheck.co/instagram/'.$account; $auth = base64_encode(hash_hmac("sha1", $apikey.$time, $apisecret)); $headers = array( 'X-Auth: '.$auth, 'X-Time: '.time(), 'X-Key: '.$apikey ); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_URL, $url); echo curl_exec($ch); |
JSON Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
[ { "Account":"kimkardashian", "Name":"Kim Kardashian West", "Followers":111725775, "ProfilePicUrl":"https://scontent-atl3-1.cdninstagram.com/vp/....jpg" }, { "AverageLikesPc":1.816, //average likes in percent "TargetLikesPc":0.8, //industry standard likes in percent "AverageLikesNum":2028668, //average likes "TargetLikesNum":893806, //industry standard likes "LikesResult":"Pass", //test result #1 "RealFollowers":111725775 //likely real followers }, { "AverageCommentsPc":0.014, //average comments in percent "TargetCommentsPc":0.01, //industry standard comments in percent "AverageCommentsNum":15992, //average comments "TargetCommentsNum":11173, //industry standard comments "CommentsResult":"Pass" //test result #2 } ] |
How Do I Get Access?
Sign up here! https://www.fakecheck.co/instagram-api