Skip to content

Commit b628d86

Browse files
committed
remove ppr from some creator facing docs
1 parent bcaef40 commit b628d86

File tree

5 files changed

+26
-330
lines changed

5 files changed

+26
-330
lines changed

sources/platform/actors/publishing/monetize/index.mdx

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ Apify Store allows you to monetize your web scraping, automation and AI Agent pr
1515
Actors in Apify Store can be published under one of the following pricing models:
1616

1717
1. _Free_: Users can run the Actor without any additional charges beyond the platform usage costs generated by the Actor.
18-
1. _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.
19-
1. _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.
18+
1. _Pay per event (PPE)_: Users pay for 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.
2019
1. _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.
2120

2221
For a detailed comparison of pricing models from the perspective of your users, refer to [Actors in Store](/platform/actors/running/actors-in-store) page.
@@ -25,16 +24,16 @@ For a detailed comparison of pricing models from the perspective of your users,
2524

2625
The following table compares the two main pricing models available for monetizing your Actors:
2726

28-
| Feature/Category | Rental | Pay-per-result (PPR) | Pay-per-event (PPE) |
29-
|--------------------------|--------------------------------|-------------------------------|------------------------------------------------------------------|
30-
| Revenue scalability | Capped at monthly fee | Unlimited, scales with usage | Unlimited, scales with usage |
31-
| AI/MCP compatibility | ❌ Not compatible | ✅ Fully compatible | ✅ Fully compatible |
32-
| User cost predictability | Unpredictable (rental + usage) | Predictable | Predictable |
33-
| Store discounts | ❌ Single price only | ✅ Store discounts available | ✅ Store discounts available |
34-
| Marketing boost | Standard visibility | Standard visibility | Priority store placement |
35-
| Commission opportunities | Standard 20% | Standard 20% | Standard 20% |
36-
| Custom event billing | Not available | Not available | ✅ Charge for any event |
37-
| Per-result billing | Not available | ✅ Charge per dataset item | Optional (via event; automatic via `apify-default-dataset-item`) |
27+
| Feature/Category | Rental | Pay-per-event (PPE) |
28+
|--------------------------|--------------------------------|------------------------------------------------------------------|
29+
| Revenue scalability | Capped at monthly fee | Unlimited, scales with usage |
30+
| AI/MCP compatibility | ❌ Not compatible | ✅ Fully compatible |
31+
| User cost predictability | Unpredictable (rental + usage) | Predictable |
32+
| Store discounts | ❌ Single price only | ✅ Store discounts available |
33+
| Marketing boost | Standard visibility | Priority store placement |
34+
| Commission opportunities | Standard 20% | Standard 20% |
35+
| Custom event billing | Not available | ✅ Charge for any event |
36+
| Per-result billing | Not available | Optional (via event; automatic via `apify-default-dataset-item`) |
3837

3938
## Set up monetization
4039

@@ -46,15 +45,12 @@ Choose the pricing model for your Actor.
4645
![Monetization wizard](../images/monetization_wizard.png)
4746
Follow the monetization wizard to configure your pricing model.
4847
<Tabs>
49-
<TabItem value="Rental" label="Rental">
50-
![rental monetization wizard](../images/rental-wizard.png)
51-
</TabItem>
52-
<TabItem value="Pay-per-result" label="Pay-per-result">
53-
![ppr monetization wizard](../images/ppr-wizard.png)
54-
</TabItem>
5548
<TabItem value="Pay-per-event" label="Pay-per-event">
5649
![ppe monetization wizard](../images/ppe-wizard.png)
5750
</TabItem>
51+
<TabItem value="Rental" label="Rental">
52+
![rental monetization wizard](../images/rental-wizard.png)
53+
</TabItem>
5854
</Tabs>
5955

6056
### Change monetization
@@ -65,11 +61,11 @@ Most changes take effect **immediately**. However, **major changes** require a 1
6561

6662
**Major changes** that require 14-day notice include:
6763

68-
- Changing the pricing model (e.g., from rental to pay-per-result)
64+
- Changing the pricing model (e.g., from rental to pay-per-event)
6965
- Increasing prices
70-
- Adding new pay-per-event charges
66+
- Adding new events
7167

72-
All other changes (such as decreasing prices, adjusting descriptions, or removing pay-per-event charges) take effect immediately.
68+
All other changes (such as decreasing prices, adjusting descriptions, or removing events) take effect immediately.
7369

7470
:::important Frequency of major monetization adjustments
7571

@@ -84,7 +80,7 @@ In accordance with our [Terms & Conditions](/legal/store-publishing-terms-and-co
8480

8581
:::note How negative profits are handled
8682

87-
If your PPR or PPE Actor's price doesn't cover its monthly platform usage costs, it will have a negative profit. When this occurs, we automatically set that Actor's profit to $0 for the month. This ensures a single Actor's loss never reduces your total payout.
83+
If your PPE Actor's price doesn't cover its monthly platform usage costs, it will have a negative profit. When this occurs, we automatically set that Actor's profit to $0 for the month. This ensures a single Actor's loss never reduces your total payout.
8884

8985
:::
9086

sources/platform/actors/publishing/monetize/pay_per_event.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 1
88
import Tabs from '@theme/Tabs';
99
import TabItem from '@theme/TabItem';
1010

11-
The PPE pricing model offers a flexible monetization option for Actors on Apify Store. Unlike [pay per result](/platform/actors/publishing/monetize/pay-per-result), PPE allows you to charge users based on specific events triggered programmatically by your Actor's code.
11+
The PPE pricing model offers a flexible monetization option for Actors on Apify Store as it allows you to charge users based on specific events triggered programmatically by your Actor's code.
1212

1313
PPE lets you define pricing for individual events. You can charge for specific events directly from your Actor using the [JS](/sdk/js/reference/class/Actor#charge)/[Python](/sdk/python/reference/class/Actor#charge) SDK, or by calling the [PPE charging API](/api/v2/post-charge-run) directly. Common events include Actor start, dataset item creation, and external API calls.
1414

sources/platform/actors/publishing/monetize/pay_per_result.mdx

Lines changed: 0 additions & 302 deletions
This file was deleted.

0 commit comments

Comments
 (0)