@@ -311,27 +311,27 @@ If you're not using the Apify SDKs (JS/Python), you need to handle idempotency (
311
311
312
312
You make your Actor PPE and set the following pricing:
313
313
314
- - _ ` actor-start ` event_ : $0.10 per start
315
- - _ ` scraped-product ` event_ : $0.01 per product
316
- - _ ` scraped-product-detail ` event_ : $0.05 per detail
314
+ - _ ` apify- actor-start` event_ : $0.00001 per start
315
+ - _ ` scraped-product ` event_ : $0.001 per product
316
+ - _ ` scraped-product-review ` event_ : $0.005 per review
317
317
- _ ` ai-analysis ` event_ : $0.15 per analysis
318
318
319
319
During the first month, three users use your Actor:
320
320
321
- - _ User 1 (paid plan)_ : Starts Actor 5 times, scrapes 1 ,000 products, makes 50 product details, runs 30 AI analyses
322
- - Charges: 5 × $0.10 + 1 ,000 × $0.01 + 50 × $0.05 + 30 × $0.15 = $0.50 + $10.00 + $2.50 + $4.50 = $17.50
323
- - _ User 2 (paid plan)_ : Starts Actor 2 times, scrapes 500 products, makes 20 product details, runs 10 AI analyses
324
- - Charges: 2 × $0.10 + 500 × $0.01 + 20 × $0.05 + 10 × $0.15 = $0.20 + $5.00 + $1.00 + $1.50 = $7.70
325
- - _ User 3 (free plan)_ : Starts Actor 1 time, scrapes 100 products, makes 5 product details, runs 3 AI analyses
326
- - Charges: 1 × $0.10 + 100 × $0.01 + 5 × $0.05 + 3 × $0.15 = $0.10 + $1.00 + $0.25 + $0.45 = $1.80
321
+ - _ User 1 (paid plan)_ : Starts Actor 5 times, scrapes 10 ,000 products, 500 product reviews, and runs 30 AI analyses
322
+ - Charges: 5 × $0.00001 + 10 ,000 × $0.001 + 500 × $0.005 + 30 × $0.15 = $0.00005 + $10.00 + $2.50 + $4.50 = ~ $17
323
+ - _ User 2 (paid plan)_ : Starts Actor 2 times, scrapes 500 products, 200 product reviews, and runs 10 AI analyses
324
+ - Charges: 2 × $0.00001 + 500 × $0.001 + 200 × $0.005 + 10 × $0.15 = $0.00002 + $0.50 + $1.00 + $1.50 = ~ $3
325
+ - _ User 3 (free plan)_ : Starts Actor 1 time, scrapes 100 products, 5 product reviews, and runs 3 AI analyses
326
+ - Charges: 1 × $0.00001 + 100 × $0.001 + 5 × $0.005 + 3 × $0.15 = $0.00001 + $0.10 + $0.025 + $0.45 = ~ $0.575
327
327
328
328
Let's say the underlying platform usage for the first user is $3.20, for the second $1.50, and for the third $0.40.
329
329
330
330
Your profit is computed only from the first two users, since they are on Apify paid plans. The revenue breakdown is:
331
331
332
- - _ Total revenue_ : $17.50 + $7.70 = $25. 20
332
+ - _ Total revenue_ : $17 + $3 = $20
333
333
- _ Total underlying cost_ : $3.20 + $1.50 = $4.70
334
- - _ Your profit_ : 80% of revenue minus costs = 0.8 × $25. 20 - $4.70 = $15.46
334
+ - _ Your profit_ : 80% of revenue minus costs = 0.8 × $20 - $4.70 = $11.3
335
335
336
336
## Event names
337
337
0 commit comments