|
1 | 1 | --- |
2 | | -title: Find ideas for your Actor |
3 | | -description: Discover what types of software you can build as Actors and use Apify's Ideas page to find trending projects for scrapers, integrations, and automation tools. |
| 2 | +title: Find ideas for new Actors |
| 3 | +description: Learn what kind of software tools are suitable to be packaged and published as Apify Actors and where you can find ideas and inspiration what to build. |
4 | 4 | sidebar_position: 1 |
5 | 5 | category: build-and-publish |
6 | 6 | slug: /build-and-publish/actor-ideas/find-actor-ideas |
7 | 7 | --- |
8 | 8 |
|
9 | | -You want to build an Actor and publish it on Apify Store. Where should you start? See what types of software work as Actors and how to use the Apify Ideas page to find projects that users need. |
| 9 | +Learn what kind of software tools are suitable to be packaged and published as Actors on Apify, and where you can find inspiration what to build. |
10 | 10 |
|
11 | 11 | --- |
12 | 12 |
|
13 | 13 | ## What can you build as an Actor |
14 | 14 |
|
15 | | -Actors are serverless cloud applications that run on the Apify platform. While most Actors are web scrapers, you can build various types of software as Actors can be anything that accepts input, performs a job, and runs in Docker. |
| 15 | +[Actors](https://docs.apify.com/platform/actors) are a new concept for building serverless micro-apps, which are easy to develop, share, integrate, and build upon. |
| 16 | + |
| 17 | +They are useful for backend automation jobs, which users set up, integrate into their workflow, and let run in the background, rather than consumer-facing applications that users need to interact with. |
| 18 | + |
| 19 | +Actors can run in two modes: |
| 20 | + |
| 21 | +- In _batch mode_, they take a well-defined input, perform a job, and produce a well-defined output. This is useful for longer-running operations, |
| 22 | + such as web crawling or data processing. |
| 23 | +- In _standby mode_, they run as a web server at a specific public URL. This is useful for request-response style applications, such as APIs or MCP servers. |
16 | 24 |
|
17 | 25 | ### Web scrapers and crawlers |
18 | 26 |
|
19 | | -The most common type of Actor extracts data from websites. These Actors navigate web pages, collect information, and store structured data in datasets. |
| 27 | +This is the most common type of Actors on [Apify Store](https://apify.com/store). These Actors navigate websites, collect information from web pages, and store structured data in datasets for further processing. |
20 | 28 |
|
21 | 29 | Examples: |
22 | 30 |
|
23 | | -- Site-specific scrapers ([Amazon Product Scraper](https://apify.com/junglee/amazon-crawler), [LinkedIn Profile Scraper](https://apify.com/curious_coder/linkedin-profile-scraper)) |
24 | | -- Search engine scrapers ([Google Search Results](https://apify.com/apify/google-search-scraper), [Bing Search](https://apify.com/curious_coder/bing-search-scraper)) |
25 | | -- Social media scrapers ([X/Twitter Scraper](https://apify.com/apidojo/twitter-scraper-lite), [Instagram Scraper](https://apify.com/apify/instagram-scraper)) |
26 | | -- E-commerce data extractors ([Shopify Store Scraper](https://apify.com/autofacts/shopify), [eBay Price Monitor](https://apify.com/dtrungtin/ebay-items-scraper)) |
| 31 | +- **Website-specific scrapers** ([Amazon Product Scraper](https://apify.com/junglee/amazon-crawler), [LinkedIn Profile Scraper](https://apify.com/curious_coder/linkedin-profile-scraper)) |
| 32 | +- **Search engines** ([Google Search Results](https://apify.com/apify/google-search-scraper), [Bing Search](https://apify.com/curious_coder/bing-search-scraper)) |
| 33 | +- **Social media** ([X/Twitter Scraper](https://apify.com/apidojo/twitter-scraper-lite), [Instagram Scraper](https://apify.com/apify/instagram-scraper)) |
| 34 | +- **E-commerce data** ([Shopify Store Scraper](https://apify.com/autofacts/shopify), [eBay Price Monitor](https://apify.com/dtrungtin/ebay-items-scraper)) |
| 35 | +- **General-purpose crawlers** ([Web Scraper](https://apify.com/apify/web-scraper), [Website Content Crawler](https://apify.com/apify/website-content-crawler)) |
27 | 36 |
|
28 | 37 | ### SaaS API wrappers |
29 | 38 |
|
30 | | -Convert existing SaaS services into Actors to make them accessible through the Apify platform. This approach lets users integrate these services with Apify's automation ecosystem. |
| 39 | +These Actors wrap existing SaaS services as Actors to make them accessible through the Apify platform and its many integrations. |
31 | 40 |
|
32 | | -Example: |
| 41 | +Examples: |
33 | 42 |
|
34 | | -- [Parsera](https://apify.com/parsera-labs/parsera) wraps the Parsera.org service |
| 43 | +- [OpenRouter](https://apify.com/apify/openrouter) |
| 44 | +- [Parsera](https://apify.com/parsera-labs/parsera) |
| 45 | +- [Super Scraper API](https://apify.com/apify/super-scraper-api) |
35 | 46 |
|
36 | 47 | ### Open-source libraries |
37 | 48 |
|
38 | | -Package open-source tools as Actors to provide cloud-hosted versions that users can try without local installation. You handle no infrastructure while users cover compute costs. |
| 49 | +Many open-source automation or data processing tools do not have a presence in the cloud, and need to be installed locally in "just five easy steps". Wrap those tools as Actors and make it easy for users to try and integrate those tools. |
39 | 50 |
|
40 | 51 | Examples: |
41 | 52 |
|
42 | | -- [Monolith](https://apify.com/snshn/monolith) from the Y2Z/monolith GitHub project |
43 | | -- [Crawl4AI](https://apify.com/janbuchar/crawl4ai) from the unclecode/crawl4ai repository |
44 | | -- [Docling](https://apify.com/vancura/docling/source-code) from IBM's |
45 | | -docling-project |
| 53 | +- [Sherlock](https://apify.com/misceres/sherlock) |
| 54 | +- [Docling](https://apify.com/vancura/docling) |
| 55 | +- [Monolith](https://apify.com/snshn/monolith) |
| 56 | +- [Crawl4AI](https://apify.com/janbuchar/crawl4ai) |
| 57 | + |
| 58 | +For inspiration, check out the [Open-source category](https://apify.com/store/categories/open-source) in Apify Store. |
| 59 | + |
| 60 | +Here is a short list of open-source projects that might be suitable for turning into Actors: |
| 61 | + |
| 62 | +- https://github.com/bytedance/Dolphin |
| 63 | +- https://github.com/google/langextract |
| 64 | +- https://github.com/virattt/ai-hedge-fund |
| 65 | +- https://github.com/jamesturk/scrapeghost/ |
| 66 | +- https://github.com/idosal/git-mcp |
| 67 | +- https://github.com/browser-use/browser-use |
| 68 | +- https://github.com/browserbase/stagehand |
| 69 | +- https://github.com/BuilderIO/gpt-crawler |
| 70 | +- https://github.com/errata-ai/vale |
| 71 | +- https://github.com/scrapybara/scrapybara-demos |
| 72 | +- https://github.com/David-patrick-chuks/Riona-AI-Agent |
| 73 | +- https://github.com/projectdiscovery/katana |
| 74 | +- https://github.com/exa-labs/company-researcher |
| 75 | +- https://github.com/Janix-ai/mcp-validator |
| 76 | +- https://github.com/JoshuaC215/agent-service-toolkit |
| 77 | +- https://github.com/dequelabs/axe-core |
| 78 | +- https://github.com/janreges/siteone-crawler |
| 79 | +- https://github.com/eugeneyan/news-agents |
| 80 | +- https://github.com/askui/askui |
| 81 | +- https://github.com/Shubhamsaboo/awesome-llm-apps |
| 82 | +- https://github.com/TheAgenticAI/TheAgenticBrowser |
| 83 | +- https://github.com/zcaceres/markdownify-mcp |
| 84 | + |
46 | 85 |
|
47 | 86 | :::tip Open Source Fair Share |
48 | 87 |
|
49 | | -Open-source developers can earn income through [Apify's Open Source Fair Share program](https://apify.com/partners/open-source-fair-share). |
| 88 | +Developers of open-source Actors can earn passive affiliate income through Apify's [Open source fair share](https://apify.com/partners/open-source-fair-share) program |
| 89 | +to help them support their projects. |
50 | 90 |
|
51 | 91 | ::: |
52 | 92 |
|
53 | | -### MCP servers |
| 93 | +### MCP servers and tools for AI |
54 | 94 |
|
55 | | -Model Context Protocol (MCP) servers let AI agents interact with external tools and data sources. Converting MCP servers to Actors makes them accessible through Apify's platform. |
| 95 | +[Model Context Protocol (MCP)](https://modelcontextprotocol.io/docs/getting-started/intro) lets AI agents interact with external tools and data sources. |
| 96 | +Many MCP servers are still stand-alone packages that need to be installed locally, which is both inefficient and insecure, |
| 97 | +or require an external service account. |
| 98 | +Publishing these packages as Actors makes the MCP servers remote and accessible through the Apify platform and ecosystem, |
| 99 | +including the new agentic payments protocols. |
56 | 100 |
|
57 | 101 | Examples: |
58 | 102 |
|
59 | | -- [Playwright MCP](https://apify.com/jiri.spilka/playwright-mcp-server) from Microsoft's playwright-mcp |
60 | | -- [Browserbase MCP](https://apify.com/mcp-servers/browserbase-mcp-server) from Browserbase |
| 103 | +- [Playwright MCP Server](https://apify.com/jiri.spilka/playwright-mcp-server) |
| 104 | +- [Browserbase MCP Server](https://apify.com/mcp-servers/browserbase-mcp-server) |
| 105 | +- [Firecrawl MCP Server](https://apify.com/agentify/firecrawl-mcp-server) |
| 106 | +- [Brave Search MCP Server](https://apify.com/agentify/brave-search-mcp-server) |
| 107 | + |
| 108 | +For more inspiration, check out the [MCP server category](https://apify.com/store/categories/mcp-servers) in Apify Store. |
61 | 109 |
|
62 | 110 | ### AI agents |
63 | 111 |
|
64 | | -Build Actors that use LLMs to perform complex tasks autonomously. These Actors can navigate websites, make decisions, and complete multi-step workflows. |
| 112 | +Build Actors that use LLMs to perform complex tasks autonomously. These Actors can navigate websites, make decisions, and complete multistep workflows. |
65 | 113 |
|
66 | | -## Use the Ideas page |
| 114 | +:::note Secure execution |
67 | 115 |
|
68 | | -The [Apify Ideas page](https://apify.com/ideas) is where users submit and explore potential projects for Actors. It serves as a collaborative space for proposing new tools and finding inspiration for web scraping and automation solutions. |
| 116 | +Actors are cloud-based sandboxes that can securely run any AI-generated code. |
69 | 117 |
|
70 | | -### Browse and claim ideas |
| 118 | +::: |
71 | 119 |
|
72 | | -If you're unsure what to build next, the Ideas page shows projects the community wants. |
| 120 | +For inspiration, check out the [Agents category](https://apify.com/store/categories/agents) in Apify Store. |
73 | 121 |
|
74 | | -Steps to develop an idea: |
| 122 | +### Other |
75 | 123 |
|
76 | | -1. Browse the page: Visit [apify.com/ideas](https://apify.com/ideas) to find ideas that interest you. Look for ideas that align with your skills. |
| 124 | +Any repetitive job matching the following criteria might be suitable for turning into an Actor: |
77 | 125 |
|
78 | | -1. Select an idea: Review the details and requirements. Check the status—if it's marked **Open to develop**, you can start building. |
| 126 | +- The job is better to be run in the background in the cloud and forgotten. |
| 127 | +- The task is isolated and can be described and delegated to another person. |
| 128 | +- There are at least a few hundred people in the world dealing with this problem. |
79 | 129 |
|
80 | | -1. Build your Actor: Develop your Actor based on the idea. You don't need to notify Apify during development. |
| 130 | +If you look closely, you'll start seeing opportunities for new Actors everywhere. Be creative! |
81 | 131 |
|
82 | | -1. Prepare for launch: Ensure your Actor meets quality standards and has a comprehensive README with installation instructions, usage details, and examples. |
83 | 132 |
|
84 | | -1. Publish your Actor: Deploy your Actor on Apify Store and make it live. |
| 133 | +## Use the Actor ideas page |
85 | 134 |
|
86 | | -1. Claim your idea: After publishing, email [ideas@apify.com](mailto:ideas@apify.com) with your Actor URL and the original idea. Apify will tag the idea as _Completed_ and link it to your Actor. |
| 135 | +The [Actor ideas](https://apify.com/ideas) page is where you can find inspiration for new Actors sourced from the Apify community. |
87 | 136 |
|
88 | | -1. Monitor and optimize: Track your Actor's performance and user feedback. Make improvements to keep your Actor current. |
| 137 | +### Browse and claim ideas |
89 | 138 |
|
90 | | -### Criteria for claiming an idea |
| 139 | +1. _Visit_ [apify.com/ideas](https://apify.com/ideas) to find ideas that interest you. Look for ideas that align with your skills. |
91 | 140 |
|
92 | | -To claim an idea, ensure: |
| 141 | +1. _Select an Actor idea_: Review the details and requirements. Check the status—if it's marked **Open to develop**, you can start building. |
93 | 142 |
|
94 | | -- Your Actor is functional |
95 | | -- Your README contains relevant information |
96 | | -- Your Actor closely aligns with the original idea |
| 143 | +1. _Build your Actor_: Develop your Actor based on the idea. You don't need to notify Apify during development. |
97 | 144 |
|
98 | | -### Submit your own ideas |
| 145 | +1. _Prepare for launch_: Ensure your Actor meets quality standards and has a comprehensive README with installation instructions, usage details, and examples. |
99 | 146 |
|
100 | | -The Ideas page is also where you contribute concepts to drive innovation in the community. |
| 147 | +1. _Publish your Actor_: Deploy your Actor on Apify Store and make it live. |
101 | 148 |
|
102 | | -How to contribute: |
| 149 | +1. _Claim the idea_: After publishing, email [[email protected]](mailto:[email protected]) with your Actor URL and the original idea. Apify will tag the idea as **Completed** and link it to your Actor. |
103 | 150 |
|
104 | | -1. Submit ideas: Share Actor concepts through the [Ideas submission |
105 | | -form](https://apify.typeform.com/to/BNON8poB#source=ideas). Provide clear details about what the tool should do and how it should work. |
| 151 | + 1. To claim an idea, ensure your Actor is functional, README contains relevant information, and your Actor closely aligns with the original idea. |
106 | 152 |
|
107 | | -1. Engage with the community: Upvote ideas you find intriguing. More support |
108 | | -increases the likelihood a developer will build it. |
| 153 | +1. _Monitor and optimize_: Track your Actor's performance and user feedback. Make improvements to keep your Actor current. |
| 154 | + |
| 155 | +#### Multiple developers for one idea |
| 156 | + |
| 157 | +Apify Store can host multiple Actors with similar functions. However, the "first come, first served" rule applies—the first developer to claim an idea receives the **Completed** tag and a link from the Actor ideas page. |
| 158 | + |
| 159 | +Competition motivates developers to improve the code. You can still build the Actor, but differentiate with a unique set of features. |
109 | 160 |
|
110 | | -1. Claim completed ideas: Once your Actor is running, claim your idea by emailing [[email protected]](mailto:[email protected]). Apify will mark it |
111 | | -_Completed_ and link it to your Actor—signaling to other developers that this tool exists. |
112 | 161 |
|
113 | | -### Multiple developers for one idea |
| 162 | +### Submit your own ideas |
| 163 | + |
| 164 | +The Ideas page is also where you contribute concepts to drive innovation in the community. |
114 | 165 |
|
115 | | -Apify Store can host multiple Actors with similar functions. However, the "first come, first served" rule applies—the first developer to claim an idea receives the _Completed_ tag and a link from the Ideas page. |
| 166 | +Here's how you can contribute too: |
116 | 167 |
|
117 | | -Competition helps developers improve their code. You can still build the Actor, but differentiate with a unique set of features. |
| 168 | +- _Submit ideas_: Share Actor concepts through the [Ideas submission form](https://apify.typeform.com/to/BNON8poB#source=ideas). |
| 169 | +Provide clear details about what the tool should do and how it should work. |
| 170 | + |
| 171 | +- _Engage with the community_: Upvote ideas you find intriguing. More support |
| 172 | +increases the likelihood a developer will build it. |
118 | 173 |
|
119 | | -## Generate ideas from other sources |
| 174 | +## Find ideas from other sources |
120 | 175 |
|
121 | | -Beyond the Ideas page, you can find Actor ideas through: |
| 176 | +Beyond the [Actor ideas](https://apify.com/ideas) page, you can find new Actor ideas through: |
122 | 177 |
|
123 | 178 | - SEO tools: Discover relevant search terms people use to find solutions |
124 | 179 | - Your experience: Draw from problems you've encountered in your work |
125 | | -- Community discussions: Browse Reddit, Stack Overflow, and forums for pain |
126 | | -points |
| 180 | +- Community discussions: Browse Reddit, Twitter, Stack Overflow, and forums for user pain points |
127 | 181 | - Competitor analysis: Research existing tools and identify gaps |
128 | 182 |
|
129 | | -For a complete validation framework, see [Validate your Actor idea](/academy/build-and-publish/actor-ideas/actor-validation). |
| 183 | +Once you get one, learn how to [validate your Actor idea](/academy/build-and-publish/actor-ideas/actor-validation). |
0 commit comments