🏯 Instagram Scraper (Pay Per Result) avatar
🏯 Instagram Scraper (Pay Per Result)
Try for free

Pay $0.50 for 1,000 posts

View all Actors
🏯 Instagram Scraper (Pay Per Result)

🏯 Instagram Scraper (Pay Per Result)

apidojo/instagram-scraper
Try for free

Pay $0.50 for 1,000 posts

Famous for its blazing-fast speed and completeness, it offers rapid and efficient scraping of many URLs such as; location, audio, tag, and profile. It's incredibly cost-effective at only $0.50 for every 1000 posts, capable of scraping 100-200 posts each second!

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    "https://www.instagram.com/taylorswift/",
9    "https://www.instagram.com/explore/tags/travel",
10    "https://www.instagram.com/explore/locations/213131048/berlin-germany/",
11    "https://www.instagram.com/reels/audio/271328201351336/"
12  ],
13  "maxItems": 1000,
14  "until": "2023-12-31",
15  "customMapFunction": "(object) => { return {...object} }"
16}
17EOF
18
19# Run the Actor using an HTTP API
20# See the full API reference at https://docs.apify.com/api/v2
21curl "https://api.apify.com/v2/acts/apidojo~instagram-scraper/runs?token=$API_TOKEN" \
22  -X POST \
23  -d @input.json \
24  -H 'Content-Type: application/json'
Developer
Maintained by Community
Actor metrics
  • 100 monthly users
  • 6 stars
  • 100.0% runs succeeded
  • 3.4 hours response time
  • Created in Dec 2023
  • Modified about 13 hours ago