VOOZH about

URL: https://apify.com/goat255/instagram-posts-scraper

โ‡ฑ ๐Ÿ“ธ Instagram Posts Scraper - Bulk Export Posts & Engagement ยท Apify


Pricing

from $2.00 / 1,000 post scrapeds

Go to Apify Store

Instagram Posts Scraper Goat

Scrape Instagram posts in bulk by username. Extract full captions, like counts, comment counts, video views, media URLs (images, videos, carousels), locations, tagged users, coauthors, and paid-partnership flags. No Instagram API key, login, or cookies required.

Pricing

from $2.00 / 1,000 post scrapeds

Rating

0.0

(0)

Developer

๐Ÿ‘ Goutam Soni

Goutam Soni

Maintained by Community

Actor stats

0

Bookmarked

25

Total users

14

Monthly active users

6 hours ago

Last modified

Share

Instagram Posts Scraper Goat - Bulk Export Posts, Captions, Likes, Comments & Media

Scrape Instagram posts in bulk by username. Extract full captions, like counts, comment counts, video views, media URLs (images, videos, carousels), locations, tagged users, coauthors, and paid-partnership flags - all without an Instagram API key, login, or cookies.

What this Instagram posts scraper does

Pass a list of Instagram usernames (or @handles, or profile URLs - mix freely) and the actor returns one clean JSON record per post, with all engagement metrics and media URLs. Pagination is handled automatically across multiple pages, and runs use multiple independent data sources with automatic failover for high reliability.

Perfect for content analysis, competitor monitoring, influencer vetting, brand monitoring, and growth research on Instagram at scale.

Why use this Instagram scraper

  • No API key, no login, no cookies - works on any public Instagram profile.
  • Bulk by username - scrape one or many Instagram accounts in a single run.
  • Auto-pagination - request 12 posts or 12,000, the scraper fetches every page.
  • Accurate date filtering - onlyPostsNewerThan filters by each post's real timestamp, so old pinned posts are correctly excluded and pagination stops once the feed passes your cutoff.
  • Multi-source failover - if one upstream is rate-limited, the actor automatically falls back to another, so runs almost always finish.
  • Residential proxies built in (Apify proxy or your own).
  • One flat JSON object per post with a username field, so multi-account runs are easy to group/filter.
  • Carousel-aware - every slide of a multi-image post is returned with its own media URL.

What data you get per Instagram post

FieldTypeDescription
usernamestringThe Instagram username this post belongs to
idstringPost ID
shortcodestringURL slug (instagram.com/p/{shortcode})
mediaTypestring"image", "video", or "carousel"
timestampintegerWhen posted (unix epoch)
captionstringFull caption text (with hashtags, mentions, emojis)
displayUrlstringMain image URL (full resolution)
thumbnailUrlstringSquare thumbnail URL
videoUrlstringMP4 video URL (if video)
dimensionsobject{"height": 1080, "width": 1080}
accessibilityCaptionstringAuto-generated alt text
likeCountintegerNumber of likes
commentCountintegerNumber of comments
videoViewCountintegerVideo plays (if video)
locationstringTagged location name
taggedUsersstring[]Usernames tagged in the post
coauthorsstring[]Collab post co-authors
isPaidPartnershipbooleanSponsored content flag
commentsDisabledbooleanComments turned off
childrenobject[]Carousel slides (media URL, type, dimensions)

How to use the Instagram Posts Scraper

  1. Click Try for free on the actor page.
  2. Enter Instagram usernames in the usernames input. URLs, @handles, and plain usernames all work and are deduped.
  3. Set maxPostsPerUser (default 12). Set to 0 to fetch all posts.
  4. Optional: set onlyPostsNewerThan (YYYY-MM-DD) to only return recent posts - filtered by real timestamp, so pinned/old posts are excluded.
  5. Tune concurrency (default 5) and delayBetweenRequests (default 1s) if you're chasing speed.
  6. Click Save & start. Download the dataset in JSON, CSV, Excel, XML, or HTML.

Top use cases

  • Content strategy - analyse caption length, hashtag patterns, posting cadence on top accounts in your niche.
  • Competitor monitoring - track every post a competitor publishes and their engagement.
  • Influencer vetting - real engagement-rate calculation (likes รท followers) for agency outreach.
  • Brand monitoring - find posts mentioning your brand via taggedUsers and coauthors.
  • Hashtag and trend research - extract trending captions and tag clusters at scale.
  • AI training data - clean Instagram caption corpus for model fine-tuning.
  • Influencer marketing audits - track sponsored content via isPaidPartnership.

Integrations

Apify API

$curl"https://api.apify.com/v2/datasets/{DATASET_ID}/items?format=json"

Python

from apify_client import ApifyClient
from itertools import groupby
from operator import itemgetter
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("goat255/instagram-posts-scraper").call(run_input={
"usernames":["example_user_1","example_user_2"],
"maxPostsPerUser":24,
})
posts =list(client.dataset(run["defaultDatasetId"]).iterate_items())
posts.sort(key=itemgetter("username"))
for username, user_posts in groupby(posts, key=itemgetter("username")):
user_posts =list(user_posts)
avg_likes =sum(p.get("likeCount",0)or0for p in user_posts)/len(user_posts)
print(f"@{username}: {len(user_posts)} posts, avg {avg_likes:.0f} likes")

JavaScript / Node.js

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_API_TOKEN'});
const run =await client.actor('goat255/instagram-posts-scraper').call({
usernames:['example_user_1','example_user_2'],
maxPostsPerUser:24,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();

No-code integrations

Send results directly to Google Sheets, Slack, Zapier, Make, Amazon S3, or any webhook via Apify Integrations.

Pricing

Pay-per-event. No subscription.

EventPrice
Post scraped (primary)$0.002

Apify's $5 platform free credit applies on first use - ~2,500 free posts to start.

FAQ

Do I need an Instagram account or API key?

No. This scraper works on any public Instagram profile without login, cookies, or the Instagram Graph API.

Can it scrape private Instagram accounts?

No. Only public profiles' posts are accessible. Private accounts return zero posts.

How many posts can I scrape per profile?

Unlimited - Instagram allows pagination across the entire feed. Set maxPostsPerUser: 0 to fetch everything, or pick a number.

How fast is it?

A typical 3-post run on one username finishes in ~5 seconds. Larger runs scale linearly with concurrency.

Does it return Instagram Reels and carousels?

Yes - carousels appear as one record per post with each slide nested in children[]. Reels appear as mediaType: "video" with videoUrl populated.

Can I export to CSV / Google Sheets / Excel?

Yes - JSON, CSV, Excel, XML, HTML are all supported, plus direct integrations to Google Sheets, Zapier, Make, Slack, S3.

Will Instagram block this?

Multi-source failover plus rotating residential proxies handle Instagram's rate limits automatically. Recent 30-day success rate is 95%+.

Related Apify actors

Support

Found a bug or missing field? Open an issue on the actor page. Reviews are read and replied to.

You might also like

๐Ÿš€ Instagram Posts Scraper โšก No Login Required

vulnv/instagram-posts-scraper

Extract detailed data from Instagram posts including captions, likes, comments, images, videos, hashtags, tagged users, and creator details. Bulk processing supported. No Instagram authentication needed - just provide post URLs and get structured JSON data.

Instagram Tagged Posts Scraper

scrapier/instagram-tagged-posts-scraper

Scrape Instagram posts by tags with the Instagram Tagged Posts Scraper. Extract post captions, images, videos, usernames, likes, comments, and timestamps. Perfect for trend analysis, content research, and engagement tracking. Fast, reliable, and scalable for bulk scraping.

Scrape Instagram User Posts by Username - No Login - Cookieless

patient_discovery/instagram-posts

Extract Instagram posts from any public profile by username with this cookieless scraper. Get likes, comments, captions, hashtags, tagged users, media URLs, and engagement metrics in JSON or CSV. Ideal for competitor analysis, influencer research, and Instagram content performance tracking.

114

Instagram Tagged Posts Scraper

scrapapi/instagram-tagged-posts-scraper

Instagram Tagged Posts Scraper ๐Ÿท๏ธ๐Ÿ“ธ extracts tagged posts from public Instagram profiles, including captions, media, post URLs, and engagement data. Ideal for brand monitoring, influencer research, campaign tracking, and social media analysis. Fast, scalable, and automation-ready. ๐Ÿš€๐Ÿ“Š

Instagram Downloader Api

crawlerbros/instagram-downloader-api

Download photos, videos, reels, and carousels from Instagram posts. Extracts detailed metadata for videos and images.

80

5.0

Instagram Tagged and Mentions Posts Scraper

scraper-engine/instagram-tagged-and-mentions-posts-scraper

๐Ÿ“ธ Instagram Tagged and Mentions Posts Scraper lets you extract posts where users are tagged or mentioned. ๐Ÿš€ Get captions, likes, comments, video URLs, and partnership info. Perfect for brand monitoring, influencer research, and engagement analysis. Export data in JSON, CSV, or Excel!

๐Ÿ‘ User avatar

Scraper Engine

124

4.1

Instagram Posts & Reels Scraper

seemuapps/instagram-posts-scraper

Scrape all posts and Reels from any public Instagram profile โ€” captions, like, comment and view counts, hashtags, media URLs, and author details.

Instagram Hashtag Posts Scraper

khadinakbar/instagram-hashtag-scraper

Scrape public Instagram posts and Reels for one or more hashtags. Exports captions, engagement counts, author metadata, media URLs, comments when available, cursor metadata, and run summaries. No Instagram cookies required.

54

Instagram Scraper

rupom888/instagram-scraper-js

Scrape Instagram posts, profiles, hashtags, reels, and location pages. Extract likes, comments, captions, media URLs, author stats, and more. No Instagram login required for public content.