Ai Instagram Influencer

Ai Instagram Influencer

by mohamedgb00714

Automate Instagram tasks—monitor posts, publish images, fetch profile data, follow users, or drive custom agent workflows—directly from the Apify plat...

391 runs
6 users
Try This Actor

Opens on Apify.com

About Ai Instagram Influencer

Automate Instagram tasks—monitor posts, publish images, fetch profile data, follow users, or drive custom agent workflows—directly from the Apify platform.

What does this actor do?

Ai Instagram Influencer is a web scraping and automation tool available on the Apify platform. It's designed to help you extract data and automate tasks efficiently in the cloud.

Key Features

  • Cloud-based execution - no local setup required
  • Scalable infrastructure for large-scale operations
  • API access for integration with your applications
  • Built-in proxy rotation and anti-blocking measures
  • Scheduled runs and webhooks for automation

How to Use

  1. Click "Try This Actor" to open it on Apify
  2. Create a free Apify account if you don't have one
  3. Configure the input parameters as needed
  4. Run the actor and download your results

Documentation

AI Instagram Influencer Actor Automate Instagram tasks—monitor posts, publish images, fetch profile data, follow users, or drive custom agent workflows—directly from the Apify platform. --- ## 🚀 Features * Monitor Activity Continuously monitor your Instagram account to respond to direct messages (DMs) and interact with notifications in real-time. * Post Images Upload local or remote images (via URL or Base64) with captions. * Fetch Profile Info Retrieve public profile fields (bio, followers count, following count, etc.). * Follow Users Automate following a list of usernames. * Custom Agent Workflows Run arbitrary “agent” tasks (e.g., content analysis, auto‑reply bots) via your chosen AI model. --- ## 📝 Input Schema All actor inputs are defined in INPUT_SCHEMA.json. Required and optional fields: | Name | Type | Required? | Description | | ---------------------- | --------------- | ----------- | ------------------------------------------------------------------------------------------------- | | action | string (enum) | yes | Which task to run. One of: | | | | | • monitor_instagram | | | | | • run_agent | | | | | • post_instagram_post | | | | | • get_instagram_profile | | | | | • follow_instagram_users | | instagram_session_id | string | yes | Your logged‑in Instagram session cookie value. | | usernames | string[] | no | List of usernames (for follow_instagram_users). Default: ['qudsn','gravity_advisors']. | | caption | string | no | Caption text (for post_instagram_post). | | image_data | string | no | Local file Base64 or remote URL of image (for post_instagram_post). | | task | string | no | Custom instruction or filename list (for run_agent). | | model_name | string (enum) | no | Which AI model to use (gpt-4o, gemini-2.0-flash-exp, etc.). | | OPENAI_API_KEY | string | conditional | Your OpenAI or OpenRouter key (required only if model_name starts with gpt- or openrouter). | | ANTHROPIC_API_KEY | string | conditional | Your Anthropic Claude key (required only if model_name starts with claude-). | | GEMINI_API_KEY | string | conditional | Your Google Gemini key (required only if model_name contains gemini). | | DEEPSEEK_API_KEY | string | conditional | Your DeepSeek AI key (required only if model_name starts with deepseek-). | --- ## 🔧 Configuration 1. Install Actor On the Apify Console, click AddActorImport from template and select AI Instagram Influencer 2. Add Secrets In actor settings, under Environment variables & secrets, add only the key for the model you selected: * If using gpt-* or openrouter, add OPENAI_API_KEY * If using claude-*, add ANTHROPIC_API_KEY * If using gemini-*, add GEMINI_API_KEY * If using deepseek-*, add DEEPSEEK_API_KEY * Always add INSTAGRAM_SESSION_ID 3. Adjust Defaults In the default input, set your typical usernames, caption, or model_name if you run the same action repeatedly. --- ## 🎯 Examples ### 1. Monitor Instagram json { "action": "monitor_instagram", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE", "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } Outcome: Captures new activity (posts, comments) for 5 minutes and pushes results to the default dataset. --- ### 2. Post an Image json { "action": "post_instagram_post", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE", "caption": "Hello from Apify Actor!", "image_data": "https://example.com/path/to/photo.jpg", "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } Or Base64: json { "action": "post_instagram_post", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE", "caption": "Base64 upload!", "image_data": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD…", "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } --- ### 3. Fetch Profile Info json { "action": "get_instagram_profile", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE" } Returns a JSON object: json { "username": "your_username", "full_name": "Your Name", "followers": 1234, "following": 567, "bio": "Just another bot.", "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } --- ### 4. Follow Users json { "action": "follow_instagram_users", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE", "usernames": ["friend1", "friend2", "brand_xyz"], "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } --- ### 5. Run Custom Agent json { "action": "run_agent", "instagram_session_id": "YOUR_SESSION_COOKIE_HERE", "task": "analyze_recent_comments", "model_name": "gpt-4o-mini", "OPENAI_API_KEY": "sk-…" } Pushes the agent’s result to the dataset. --- ## ⚠️ Important: Avoiding Instagram Account Bans To ensure the safety and longevity of your Instagram account while using this actor, please adhere to the following best practices: ### 1. Limit Automation Activities Instagram imposes strict limits on various activities to prevent spam and maintain platform integrity. Exceeding these limits can lead to temporary blocks or permanent bans. * Follows/Unfollows: Limit to 100–150 per day, with no more than 10 per hour for new accounts. * Likes: Keep under 30 likes per hour and 300–500 likes per day. * Comments: Restrict to 12–14 comments per hour, ensuring a 350–400 second interval between each. * Direct Messages (DMs): Send no more than 50–70 DMs per day, especially to non-followers. ### 2. Gradual Engagement If your account is new, gradually increase activity to mimic natural behavior. Sudden spikes in actions can appear suspicious and may lead to restrictions. ### 3. Avoid Repetitive Comments Do not post identical comments or messages repeatedly. Personalize your interactions to mimic genuine engagement. ### 4. Monitor Account Health Regularly check for any warnings or restrictions on your account. If you notice any unusual activity, pause automation and review your actions. ### 5. Stay Updated Instagram's policies can change. Regularly review their guidelines to ensure your automation practices remain compliant. --- ## 🛡️ Support We’d love to hear from you! If you encounter any issues, have questions, or want to suggest new features, please don’t hesitate to open an issue on the . Your feedback helps improve the Actor for everyone. --- ## 🎁 Bonus: n8n Workflow Integration As a special bonus for users of this Actor, you can easily integrate it with your automation workflows using n8n. Check out these ready-to-use workflow suites: - Instagram Automation Suite - Automated YouTube Leads These resources help you connect Instagram automation with other platforms and tools, streamlining your social media and lead generation tasks. --- Made with ❤️ by Mohamed el hadi

Common Use Cases

Market Research

Gather competitive intelligence and market data

Lead Generation

Extract contact information for sales outreach

Price Monitoring

Track competitor pricing and product changes

Content Aggregation

Collect and organize content from multiple sources

Ready to Get Started?

Try Ai Instagram Influencer now on Apify. Free tier available with no credit card required.

Start Free Trial

Actor Information

Developer
mohamedgb00714
Pricing
Paid
Total Runs
391
Active Users
6
Apify Platform

Apify provides a cloud platform for web scraping, data extraction, and automation. Build and run web scrapers in the cloud.

Learn more about Apify

Need Professional Help?

Couldn't solve your problem? Hire a verified specialist on Fiverr to get it done quickly and professionally.

Find a Specialist

Trusted by millions | Money-back guarantee | 24/7 Support