Skip to content

Commit 0873b7c

Browse files
committed
docs: merge monetization content in platform docs
merge of monetization content from Academy to Platform docs move images adjustments to formatting
1 parent 8f4fd56 commit 0873b7c

File tree

8 files changed

+123
-5
lines changed

8 files changed

+123
-5
lines changed
67.2 KB
Loading
43.4 KB
Loading
107 KB
Loading
45.1 KB
Loading
73 KB
Loading
56.3 KB
Loading
34.4 KB
Loading

sources/platform/actors/publishing/monetize.mdx

Lines changed: 123 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,133 @@ sidebar_position: 2
1111

1212
Apify Store allows you to monetize your web scraping and automation projects by publishing them as Paid Actors. This guide explains the available pricing models and how to get started.
1313

14-
## Pricing models
14+
## Pricing Models
1515

1616
Actors in the Apify Store can be published under one of the following pricing models:
1717

18-
1. **Free**: Users can run the Actor without any additional charges beyond the platform usage costs generated by the Actor
19-
2. **Rental**: Users pay for the platform usage costs. However, after a trial period, they need to pay a flat monthly fee to the develop to continue using the Actor
18+
1. **Free**: Users can run the Actor without any additional charges beyond the platform usage costs generated by the Actor.
19+
2. **Rental**: Users pay for the platform usage costs. However, after a trial period, they need to pay a flat monthly fee to the developer to continue using the Actor.
2020
3. **Pay per Result**: Users don't pay for the platform usage costs. Instead, they pay the developer based on the number of results produced by the Actor.
2121
4. **Pay per Event**: Users don't pay for the platform usage cost the Actor generates. Instead, they pay based on specific events defined by the developer, such as generating a single result or initiating the Actor.
2222

23-
## Where to start
23+
### Rental Pricing Model
24+
25+
With the rental model, you can specify a free trial period and a monthly rental price. After the trial, users with an [Apify paid plan](https://apify.com/pricing) can continue using your Actor by paying the monthly fee. You can receive 80% of the total rental fees collected each month.
26+
27+
<details>
28+
<summary>Example - rental pricing model</summary>
29+
30+
You make your Actor rental with 7 days free trial and then $30/month. During the first calendar month, three users start to use your Actor:
31+
32+
1. First user, on Apify paid plan, starts the free trial on 15th
33+
1. Second user, on Apify paid plan, starts the free trial on 25th
34+
1. Third user, on Apify free plan, start the free trial on 20th
35+
36+
The first user pays their first rent 7 days after the free trial, i.e., on 22nd. The second user only starts paying the rent next month. The third user is on Apify free plan, so after the free trial ends on 27th, they are not charged and cannot use the Actor further until they get a paid plan. Your profit is computed only from the first user. They were charged $30, so 80% of this goes to you, i.e., _0.8 * 30 = $24_.
37+
</details>
38+
39+
### Pay-per-Result Pricing Model
40+
41+
In this model, you set a price per 1000 results. Users are charged based on the number of results your Actor produces. Your profit is calculated as 80% of the revenue minus platform usage costs. The formula is:
42+
43+
`(0.8 * revenue) - costs = profit`
44+
45+
#### Pay-per-result unit pricing for cost computation
46+
47+
| Service | Unit price |
48+
|:--------------------------------|:---------------------------|
49+
| Compute unit | **$0.4** / CU |
50+
| Residential proxies | **$13** / GB |
51+
| SERPs proxy | **$3** / 1,000 SERPs |
52+
| Data transfer - external | **$0.20** / GB |
53+
| Data transfer - internal | **$0.05** / GB |
54+
| Dataset - timed storage | **$1.00** / 1,000 GB-hours |
55+
| Dataset - reads | **$0.0004** / 1,000 reads |
56+
| Dataset - writes | **$0.005** / 1,000 writes |
57+
| Key-value store - timed storage | **$1.00** / 1,000 GB-hours |
58+
| Key-value store - reads | **$0.005** / 1,000 reads |
59+
| Key-value store - writes | **$0.05** / 1,000 writes |
60+
| Key-value store - lists | **$0.05** / 1,000 lists |
61+
| Request queue - timed storage | **$4.00** / 1,000 GB-hours |
62+
| Request queue - reads | **$0.004** / 1,000 reads |
63+
| Request queue - writes | **$0.02** / 1,000 writes |
64+
65+
Only revenue & cost for Apify customers on paid plans are taken into consideration when computing your profit. Users on free plans are not reflected there, although you can see statistics about the potential revenue of users that are currently on free plans in Actor Insights in the Apify Console.
66+
67+
:::note What are Gigabyte-hours?
68+
69+
Gigabyte-hours (GB-hours) are a unit of measurement used to quantify data storage and processing capacity over time. To calculate GB-hours, multiply the amount of data in gigabytes by the number of hours it's stored or processed.
70+
71+
For example, if you host 50GB of data for 30 days:
72+
73+
- Convert days to hours: _30 * 24 = 720_
74+
- Multiply data size by hours: _50 * 720 = 36,000_
75+
76+
This means that storing 50 GB of data for 30 days results in 36,000 GB-hours.
77+
:::
78+
79+
Read more about Actors in the Store and different pricing models from the perspective of your users in the [Store documentation](https://docs.apify.com/platform/actors/running/actors-in-store).
80+
81+
<details>
82+
<summary>Example - pay-per-result pricing model</summary>
83+
84+
You make your Actor pay-per-result and set price to be $1/1,000 results. During the first month, two users on Apify paid plans use your Actor to get 50,000 and 20,000 results, costing them $50 and $20 respectively. Let's say the underlying platform usage for the first user is $5 and for the second $2. Third user, this time on Apify free plan, uses the Actor to get 5,000 results, with underlying platform usage $0.5.
85+
86+
Your profit is computed only from the first two users, since they are on Apify paid plans. The revenue for the first user is $50 and for the second $20, i.e., total revenue is $70. The total underlying cost is _$5 + $2 = $7_. Since your profit is 80% of the revenue minus the cost, it would be _0.8 * 70 - 7 = $49_.
87+
</details>
88+
89+
#### Best practices for Pay-per-results Actors
90+
91+
To ensure profitable operation:
92+
93+
- Set memory limits in your [`actor.json`](https://docs.apify.com/platform/actors/development/actor-definition/actor-json) file to control platform usage costs
94+
- Implement the `ACTOR_MAX_PAID_DATASET_ITEMS` check to prevent excess result generation
95+
- Test your Actor with various result volumes to determine optimal pricing
96+
97+
## Setting up monetization
98+
99+
Navigate to your [Actor page](https://console.apify.com/actors?tab=my) in the Apify Console choose Actor that you want to monetize, and select the Publication tab.
100+
![Monetization section](./images/monetization-section.png)
101+
Open the Monetization section and complete your billing and payment details.
102+
![Set up monetization](./images/monetize_actor_set_up_monetization.png)
103+
Follow the monetization wizard to configure. Follow the monetization wizard to configure your pricing model.
104+
![Monetization wizard](./images/monetization_wizard.png)
105+
106+
## Changing monetization
107+
108+
You can change the monetization setting of your Actor by using the same wizard as for the setup in the **Monetization** section of your Actor's **Publication** tab. Any changes made to an already published Actor will take _14 days_ to come in effect, so that the users of your Actor have time to prepare.
109+
110+
:::important Frequency of monetization adjustments
111+
112+
Be aware that you can change monetization setting of each Actor only once per month. For further information & guidelines please refer to our [Terms & Conditions](https://apify.com/store-terms-and-conditions)
113+
114+
:::
115+
116+
## Payouts & analytics
117+
118+
Payout invoices are generated automatically on the 14th of each month. Review your invoice in the **Settings > Payout** section within one week. If not approved by the 20th, the system will auto-approve on the 21st.
119+
120+
Track your Actor's performance through:
121+
122+
- The payout section for financial records
123+
- Actor Analytics for usage statistics
124+
125+
![Actor analytics](./images/actor_analytics.png)
126+
127+
- Individual Actor Insights for detailed performance metrics
128+
129+
![Actor insights](./images/actor-insights.png)
130+
131+
## Promoting your Actor
132+
133+
Create SEO-optimized descriptions and README files to improve search engine visibility. Share your Actor on multiple channels:
134+
135+
- Post on Reddit, Quora, and social media platforms
136+
- Create tutorial videos demonstrating key features
137+
- Publish articles about your Actor on relevant websites
138+
- Consider creating a product showcase on platforms like Product Hunt
139+
140+
Remember to tag Apify in your social media posts for additional exposure. Effective promotion can significantly impact your Actor's success, differentiating between those with many paid users and those with few to none.
141+
142+
Learn more about promoting your Actor from [Apify's Marketing Playbook](/academy/actor-marketing-playbook).
24143

25-
To monetize your Actor, follow the step-by-step guide in the [Apify Academy: Monetizing Your Actor](https://docs.apify.com/academy/get-most-of-actors/monetizing-your-actor). This guide covers the process of setting up pricing, configuring billing, and publishing your Paid Actor to the Apify Store.

0 commit comments

Comments
 (0)