Scrape and download Instagram posts, profiles, places, hashtags, photos, and comments. Supports search queries and URL lists. Download your data as HTML table, JSON, CSV, Excel, XML, and RSS feed.
- Modified
- Users14,671
- Runs2,973,436
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running actors via the API in Apify Docs.
const { ApifyClient } = require('apify-client');
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare actor input
const input = {
"directUrls": [
"https://www.instagram.com/apifytech/"
],
"resultsType": "details",
"searchType": "hashtag",
"proxy": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
},
"likedByLimit": 0,
"followingLimit": 0,
"followedByLimit": 0,
"extendOutputFunction": async ({ data, item, helpers, page, customData, label }) => {
return item;
},
"extendScraperFunction": async ({ page, request, label, response, helpers, requestQueue, logins, addProfile, addPost, addLocation, addHashtag, doRequest, customData, Apify }) => {
},
"customData": {}
};
(async () => {
// Run the actor and wait for it to finish
const run = await client.actor("jaroslavhejlek/instagram-scraper").call(input);
// Fetch and print actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();