You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sources/platform/actors/publishing/monetize.mdx
+39-22Lines changed: 39 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ sidebar_position: 2
12
12
importTabsfrom'@theme/Tabs';
13
13
importTabItemfrom'@theme/TabItem';
14
14
15
-
Apify Store allows you to monetize your web scrapingand automation projects by publishing them as paid Actors. This guide explains the available pricing models and how to get started.
15
+
Apify Store allows you to monetize your web scraping, automation and AI Agent projects by publishing them as paid Actors. This guide explains the available pricing models and how to get started.
16
16
17
17
## Pricing models
18
18
@@ -23,6 +23,8 @@ Actors in Apify Store can be published under one of the following pricing models
23
23
3.**Pay per result (PPR)**: Users don't pay for the platform usage costs. Instead, they pay the developer based on the number of results produced by the Actor.
24
24
4.**Pay per event (PPE)**: Users don't pay for the platform usage cost the Actor generates. Instead, they pay based on specific events that are programmatically triggered from the Actor's source code. These events are defined by the developer and can include actions such as generating a single result or starting an Actor.
25
25
26
+
For a detailed comparison of pricing models from the perspective of your users, refer to our [user-facing documentation](/platform/actors/running/actors-in-store).
27
+
26
28
### Rental pricing model
27
29
28
30
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.
@@ -41,30 +43,14 @@ The first user pays their first rent 7 days after the free trial, i.e., on the 2
41
43
42
44
### Pay-per-result pricing model
43
45
44
-
In this model, you set a price per 1,000 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:
46
+
In this model, you set a price per 1,000 results. Users are charged based on the number of results your Actor produces and stores in the run's default dataset. Your profit is calculated as 80% of the revenue minus platform usage costs. The formula is:
45
47
46
48
`(0.8 * revenue) - costs = profit`
47
49
48
-
#### Pay-per-result unit pricing for cost computation
Only revenue and cost for Apify customers on paid plans are taken into consideration when computing your profit. Users on free plans are not reflected there.
66
52
67
-
Read more about Actors on Apify 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).
53
+
The details on how your cost is computed can be found in [Computing your costs for PPE and PPR Actors](#computing-your-costs-for-ppe-and-ppr-actors).
@@ -91,8 +77,6 @@ The pay-per-event pricing model offers a flexible monetization option for Actors
91
77
92
78
Unlike PPR, which charges based on the number of results produced, PPE lets you define pricing for individual events. You can charge for specific events directly from your Actor by calling the PPE charging API. Common events include Actor start, dataset item creation, and external API calls.
93
79
94
-
For a detailed comparison of pricing models, refer to our [user-facing documentation](/platform/actors/running/actors-in-store).
95
-
96
80
#### How is profit computed
97
81
98
82
Your profit is calculated as follows:
@@ -102,7 +86,7 @@ Your profit is calculated as follows:
102
86
where:
103
87
104
88
-_Revenue_: The amount charged for events via the PPE [API](/api/v2/post-charge-run) or through [JS](/sdk/js/reference/class/Actor#charge)/[Python](/sdk/python/reference/class/Actor#charge) SDK. You receive 80% of this revenue.
105
-
-_Platform costs_: The underlying platform usage costs for running the Actor, are calculated using the same unit pricing as PPR.
89
+
-_Platform costs_: The underlying platform usage costs for running the Actor, calculated in the same way as for PPR. For more details, visit the [Computing your costs for PPE and PPR Actors](#computing-your-costs-for-ppe-and-ppr-actors) section.
106
90
107
91
Only paid user activity is included in profit calculations.
108
92
@@ -138,6 +122,39 @@ You can also choose not to use it, but then you must handle API integration and
138
122
139
123
:::
140
124
125
+
### How to attract larger customers of PPE and PPR Actors
126
+
Each user running your Actor belongs to a specific Apify Store Discount tier. The standard tiers are `FREE`, `BRONZE`, `SILVER`, and `GOLD`. Enterprise customers may have additional tiers such as `PLATINUM`. For any non-standard tier, treat it as equivalent to the `PLATINUM` tier.
127
+
Customers with higher spending potential are typically placed in higher discount tiers.
128
+
129
+
When setting pricing for a PPE/PPR Actor, you can define different prices for different customer tiers. While optional, we strongly recommend offering progressively lower prices for higher discount tiers to attract large enterprise customers who may spend thousands or tens of thousands of dollars on your Actor.
130
+
The platform usage costs for these customers will also be lower, helping you maintain healthy profit margins, as explained in the [Computing your costs for PPE and PPR Actors](#computing-your-costs-for-ppe-and-ppr-actors) section.
131
+
132
+
During an Actor run, you can access the user's discount tier through run environment variables or by querying user data via our API. This allows you to potentially provide premium services to users in higher discount tiers.
133
+
134
+
### Computing your costs for PPE and PPR Actors
135
+
For both PPE and PPR Actors, profit is computed using the formula `(0.8 * revenue) - costs`. In this section, we'll explain how the `costs` component is calculated.
136
+
137
+
When paying users run your Actor, it generates platform usage in the form of compute units, data traffic, API operations etc. This usage determines the `costs` in the profit formula above. Note that usage by free users is covered by Apify and doesn't affect your costs. To calculate costs in dollars, multiply the unit cost of each service by the quantity consumed. For example, if a run uses 10 compute units (CUs) at $0.5/CU, your cost would be $5.
138
+
139
+
As mentioned in the [How to attract larger customers of PPE and PPR Actors](#how-to-attract-larger-customers-of-ppe-and-ppr-actors) section, the user's discount tier determines the unit costs applied to their runs. Higher tiers have lower unit costs, allowing you to offer lower prices to high-tier customers while maintaining healthy profit margins.
140
+
141
+
The table below summarizes the unit prices for cost computation across different discount tiers.
142
+
143
+
| Service | Price is per |`FREE`|`BRONZE`|`SILVER`|`GOLD`|`PLATINUM`|
Navigate to your [Actor page](https://console.apify.com/actors?tab=my) in Apify Console, choose the Actor that you want to monetize, and select the Publication tab.
Each Apify subscription plan includes a discount tier (Bronze, Silver, Gold) that provides access to increasingly lower prices on selected Actors.
214
+
Please note that offering these discounts is at the discretion of the Actor owners. Since this is a relatively new feature, not all Actors currently participate in the discount program at the moment.
215
+
Additional discounts are available for Enterprise customers.
216
+
217
+
To check an Actor's pricing and available discounts, visit the Pricing section on the Actor's detail page in the Apify Store.
218
+
219
+

220
+
221
+
In the Apify Console, you can find information about pricing and available discounts in the Actor's header section.
222
+
223
+

224
+
225
+

0 commit comments