VOOZH about

URL: https://apify.com/caprolok/all-social-media-posts-extractor-by-hashtag-and-username

⇱ All In One Social Media Posts Scraper Β· Apify


πŸ‘ All Social Media Posts Extractor (by Hashtag and Username) avatar

All Social Media Posts Extractor (by Hashtag and Username)

Pricing

$20.00 / 1,000 data requests

Go to Apify Store

All Social Media Posts Extractor (by Hashtag and Username)

Effortlessly extract posts from Instagram, TikTok, YouTube, LinkedIn, and Twitter. Search by specific keywords and locations to quickly get structured results, including usernames, captions, engagement stats, and direct post links. Ideal for marketers, creators, and researchers.

Pricing

$20.00 / 1,000 data requests

Rating

0.0

(0)

Developer

πŸ‘ Caprolok

Caprolok

Maintained by Community

Actor stats

9

Bookmarked

284

Total users

6

Monthly active users

6 months ago

Last modified

Share

πŸ‘ All Social Media Posts Extractor (by Hashtag and Username)

All Social Media Posts Extractor (by Hashtag and Username)

All Social Media Posts Extractor makes social data mining a breeze. Just drop in profile URLs, usernames, or hashtags from Instagram, TikTok, LinkedIn, or Twitter (X) and let the actor return neatly structured posts ready for analysis.

Whether you track brand sentiment, scout influencers, or need fresh content inspiration, this versatile actor puts cross‑platform insights at your fingertips no coding wizardry required.

πŸ“„ What Can You Extract?

  • Caption: Main text or description of the post
  • Content Type: Post type (tweet, reel, tiktok, article, etc.)
  • Name: Display name of the profile or page
  • Platform: Source platform (instagram, tiktok, linkedin, twitter)
  • Post Id: Unique identifier of the post on its platform
  • Post Link: Direct url to the post
  • Timestamp: Date the post was published (yyyy-mm-dd)
  • User Link: Direct url to the author's profile
  • Username: Handle or profile slug of the author
  • Replies: Number of replies / comments (where available)
  • Search Input: Original search term or url that produced this result

πŸ“˜ How to Use

Getting started is quick and painless even if you've never scraped data before:

  1. Create a free Apify account. All you need is an email address.
  2. Open the All Social Media Posts Extractor on the Apify platform.
  3. Add your input parameters (e.g., Profile Links, User Names or Hashtags. – customize as needed).
  4. Click "Start". The actor will rapidly fetch posts.
  5. Download your dataset in JSON, CSV, Excel, or HTML, or pipe it straight into your integrations via the API.

✨ Key Features

  • Multi-platform support: Instagram, TikTok, LinkedIn, Twitter (X)
  • Fetch by hashtag or username/profile link
  • Flexible limits (max_posts, location)
  • Location-based filtering to target specific geographic regions
  • Deduplication to avoid repeated records across runs
  • REST API & webhooks for seamless automation

⌨️ Input Parameters

FieldTypeDescriptionRequired
Search inputsarray <string>List of profile URLs, usernames, or hashtags to scrapeβœ”
PlatformstringOne of INSTAGRAM, TIKTOK, LINKEDIN, TWITTERβœ”
Max postsintegerMaximum number of posts to fetch per inputβœ– (default = 50)
LocationstringGeographic filter to target posts from specific regionsβœ– (optional)

Sample Input

{
"search_inputs":[
"https://www.instagram.com/google/",
"apple",
"#marketing"
],
"platform":"INSTAGRAM",
"location":"US",
"max_posts":10
}

πŸ“Š Output

The actor returns a structured dataset with the following fields for each record.

Sample Output (JSON)

[
{
"caption":"This one’s for the vibe coders ✨ Show us your creations below πŸ”½",
"contentType":"Tweet",
"name":"Google",
"platform":"TWITTER",
"post_id":"191**************",
"post_link":"https://x.com/Google/status/191**************",
"timestamp":"2025-05-06",
"user_link":"https://x.com/Google",
"username":"Google",
"replies":32574278,
"search_input":"Google"
}
]

🎯 Use Cases

  • Build targeted influencer lists for brand collaborations
  • Track competitor campaigns and engagement across platforms
  • Monitor hashtags to spot trending topics in real time
  • Target posts by geography with location-based filtering for localized marketing insights
  • Feed social proof and testimonials into landing pages automatically
  • Enrich CRM records with the latest customer posts and bios
  • Collect user-generated content for market research or sentiment analysis
  • Automate weekly social media performance reports for clients
  • Train AI/ML models with fresh, labeled social content

πŸ“Œ Usage Tips

  • Combine multiple hashtags and profile URLs in one run to save credits.
  • Set maxPosts to focus on fresh posts and speed up execution.
  • Turn on Apify residential proxies when dealing with strict regions or high volumes.

πŸ”Œ Integrations

All Social Media Posts Extractor fits seamlessly into your data pipeline. Thanks to built-in integrations on the Apify platform, you can connect this actor with virtually any cloud service or web app.

Popular integrations

  • Make (Integromat) – automate multi-step workflows.
  • Zapier – send data to 5,000+ apps.
  • Airbyte – sync datasets into your data warehouse.
  • Slack – push instant notifications.
  • Google Sheets & Drive – store results in spreadsheets or cloud.
  • GitHub – commit datasets directly to your repositories.
  • AWS S3 / Azure Blob Storage – archive large exports securely.

Webhooks

Set up webhooks to trigger actions when the actor completes or fails, e.g., send email or Slack alerts.

πŸ› οΈ API Access

Prefer to automate with code? The Apify REST API lets you manage, schedule, and run this actor programmatically.

  • Run & Schedule Actors
  • Access Datasets
  • Monitor Runs
  • Version Control

Client libraries

LanguagePackageInstall
Node.jsapify-clientnpm install apify-client
Pythonapify-clientpip install apify-client

For complete API examples and detailed usage, visit the API documentation.

from apify_client import ApifyClient
# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>'with your token.
client =ApifyClient("<YOUR_API_TOKEN>")
# Prepare the Actor input
run_input ={"search_inputs":[
"https://www.instagram.com/google/",
"apple",
"#marketing",
]}
# Run the Actor and wait for it to finish
run = client.actor("caprolok/all-social-media-posts-extractor-by-hashtag-and-username").call(run_input=run_input)
# Fetch and print Actor results from the run's dataset(if there are any)
print("πŸ’Ύ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

MCP Quickstart

You can use the Apify MCP Server in two ways:

 **1. Standard Input/Output (stdio):**
  • Set MCP client server command to npx @apify/actors-mcp-server and environment variable APIFY_TOKEN to your Apify API token.

2. HTTPS Endpoint mcp.apify.com:

  • Connect your MCP client by including Authorization: Bearer <APIFY_TOKEN> header in your requests.

For more details, see the MCP API documentation.

πŸ’¬ Support

If you encounter any issues, have suggestions, or need assistance, please use the Issues tab. Our team actively monitors this section and will respond promptly.

πŸ”— Related Scrapers

πŸ“§ All Social Media Emails Extractor

Quickly generate targeted email leads from Instagram, TikTok, YouTube, LinkedIn, and Twitter. Effortlessly search by keywords and locations, obtaining structured contact details and direct links. Perfect for marketers, recruiters, and sales professionals.

πŸ‘€ All Social Media Profile Details Extractor

Extract rich profile details from Instagram, TikTok, YouTube, LinkedIn, and Twitter using usernames, URLs, or keywords. Get name, bio, followers, location, verified status, contact info, and moreβ€”perfect for research, outreach, and social intelligence.

πŸ“± All Social Media Phone Numbers Extractor

Extract phone numbers from websites and social media profilesβ€”like TikTok and Twitter. Works with URLs, usernames, or keyword searches. Perfect for lead generation, data scraping, and enrichment workflows.

πŸ“± All Social Media Posts Extractor (by Hashtag and Username)

Effortlessly extract posts from Instagram, TikTok, YouTube, LinkedIn, and Twitter. Search by specific keywords and locations to quickly get structured results, including usernames, captions, engagement stats, and direct post links. Ideal for marketers, creators, and researchers.

πŸ‘€ All Social Media Influencer Finder

Find influencers by follower count, country, and platform. Perfect for campaigns, outreach, and research across Instagram, TikTok, YouTube, and more. Fast, customizable, and scalable.

🎡 TikTok Leads Generator

Extract TikTok user profiles and content for lead generation and influencer discovery. Perfect for finding trending creators and viral content.

πŸ’Ό LinkedIn Leads Generator

Extract LinkedIn profiles and company information for B2B lead generation. Ideal for sales prospecting, recruiting, and business development.

You might also like

Social Media Hashtag Research

apify/social-media-hashtag-research

Extract information about posts across social media with the same hashtag. Get details from Instagram, YouTube, TikTok, and Facebook about posts’ URLs, captions, timestamps, likes, dislikes, views and comments count, and basic profile info. You can download your data in JSON, CSV, Excel, and more.

Search & Scrape Social Media Posts by Keyword

mrscrap/search-scrape-social-media-posts-by-keyword

Search any keyword and instantly scrape social media posts from TikTok, YouTube, Reddit, Instagram, Facebook, Twitter/X, and LinkedIn. Extracts likes, comments, and shares β€” no API keys needed. Filter by country, language, and date range.

Multi Platform Social Scraper

adnantamboli777/multi-platform-social-scraper

Scrape Twitter/X, Instagram, LinkedIn, Reddit & Google Maps with one actor. Returns a unified, normalized dataset β€” same schema across all platforms. Perfect for social listening, lead gen, sentiment analysis, and market research.

8

Instagram Keyword Search Scraper

crawlerbros/instagram-keyword-search-scraper

Extract posts from Instagram keyword search results. Scrape post URLs, captions, usernames, media URLs, hashtags, engagement metrics, and more. Supports multiple keywords with anti-detection features.

1.2K

4.0

Youtube Search

danek/youtube-search

YouTube crawler and video scraper. More then using the YouTube API.

237

Advanced Youtube Scraper

stefanie-rink/youtube-scraper

Please follow all inquiries at: tnot2652@gmail.com. Search YouTube for keywords, channels or individual video data blazingly fast. Internal YouTube API. No key needed. Customizable sorting, including their views, comments, channel info, number of subscribers, publication date, and title data etc.

πŸ‘ User avatar

Steafanie Braid

959

All Social Media Emails Extractor (By Keyword)

caprolok/all-social-media-emails-extractor-by-keyword

Quickly generate targeted email leads from Instagram, TikTok, YouTube, LinkedIn, and Twitter. Effortlessly search by keywords and locations, obtaining structured contact details and direct links. Perfect for marketers, recruiters, and sales professionals.

103

5.0

Instagram Posts, Comments & Profiles Scraper

parseforge/instagram-scraper

Collect Instagram posts, comments, hashtag content, and profile data in minutes. Perfect for competitor tracking, creator research, engagement analysis, trend monitoring, and exporting structured Instagram data for reports, dashboards, and recurring social media workflows.

βœ… TikTok Follower Count & YouTube Subscriber Scraper Tracker

k1ra/social-media-followers-scraper

Social media profile scraper β€” follower counts, subscriber counts & post counts in bulk from Instagram, TikTok, YouTube, Twitter/X, LinkedIn, Facebook, Threads & Reddit. Use as a follower growth tracker, YouTube subscriber counter, Instagram API alternative. No login, no cookies. Monitor competitors

48

5.0

Brand Store Locator Scraper

piotrv1001/brand-store-locator-scraper

The Brand Store Locator Scraper extracts retail stockist and store location data from any brand's website, pulling records with store names, addresses, geo coordinates, phone numbers, and websites β€” ideal for retail intelligence, location data enrichment, and competitive distribution analysis.

55