Instagram scraper, with support for users, medias, tags, comments and locations. Proxified by Residential and 4G Proxies.
Get a public users data, media, or search for a specific tag or location, without having to register an app.
Since this library uses the web version of Instagram to scrape content, it can break at any time should the returned source code for these pages change.
Proxified for Instagram Scraper API use a intelligent proxy balancing to better data get and no blocking, success rate is very high.
- Rapid API Account
- PHP 5.6.0 or higher
composer require angeljunior/instagram-scraper
Informe your Rapid API Key
$is = new angeljunior\InstagramScraper('RAPID-API-KEY');
Returns all public data from an Instagram profile.
// by Username
$result = $is->getProfileByUsername('nike');
// by URL
$result = $is->getProfileByURL('https://www.instagram.com/nike/');
Returns all public medias.
// by User Id
$result = $is->getMedias(13460080);
// by public Hashtag
$result = $is->getMediaByHashtag('travel');
// by public Place
$result = $is->getMediaByLocation(108424279189115);
Returns a specific public media data.
// by Media Shortcode
$result = $is->getMediaByCode('CMe3AQxnhmd');
// by Media URL
$result = $is->getMediaByUrl('https://www.instagram.com/p/CMnW2SBMKiu/');
Returns a list of users, tags or locations
// by Hashtags
$result = $is->searchHashtags('travel');
// by Location
$result = $is->searchLocations('New york');
// by Userame
$result = $is->searchUsers('nik');