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/running/usage_and_resources.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,10 @@ When you run an Actor it generates platform usage that's charged towards the use
88
88
-**Proxy costs**: Residential or SERP proxy usage.
89
89
-**Storage operations**: Read, write, and other operations towards key-value store, dataset, and request queue.
90
90
91
+
The platform usage can be represented either in raw units (e.g. gigabytes for data transfer, or number of writes for dataset operations), or in the dollar equivalents.
92
+
Note that for technical reasons, every time you see the usage in dollars on a specific historical Actor run or build in the API or Apify Console, your current service pricing is used to compute the dollar amount,
93
+
and hence it should be used only for informative purposes.
94
+
91
95
> For detailed information, FAQ, and, pricing see the [platform pricing page](https://apify.com/pricing/actors).
Copy file name to clipboardExpand all lines: sources/platform/api_v2/api_v2_reference.apib
+22-2Lines changed: 22 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -391,6 +391,10 @@ Note that for all the API endpoints that accept the `actorId` parameter to speci
391
391
you can pass either the actor ID (e.g. `HG7ML7M8z78YcAPEB`) or a tilde-separated
392
392
username of the actor owner and the actor name (e.g. `janedoe~my-actor`).
393
393
394
+
Some of the API endpoints return runs objects. Note that if any such run object contains usage in dollars, your effective unit pricing at the time of query
395
+
has been used for computation of this dollar equivalent, and hence it should be used only for informative purposes. You can learn more
396
+
about platform usage in the <a href="https://docs.apify.com/platform/actors/running/usage-and-resources#usage">documentation</a>.
397
+
394
398
## Actor collection [/v2/acts{?token,offset,limit,desc,my}]
395
399
396
400
+ Parameters
@@ -863,6 +867,8 @@ Gets an object that contains all the details about a specific build of an actor.
863
867
By passing the optional `waitForFinish` parameter the API endpoint will synchronously wait for the build to finish.
864
868
This is useful to avoid periodic polling when waiting for an actor build to finish.
865
869
870
+
This endpoint does not require the authentication token. The calls are authenticated using a hard-to-guess ID of the build.
871
+
866
872
+ Parameters
867
873
868
874
+ buildId: `soSkq9ekdmfOslopH` (string, required) - ID of the build you want to get, found in the build's `Info` tab.
@@ -1293,7 +1299,7 @@ Gets an object that contains all the details about a specific run of an actor.
1293
1299
By passing the optional `waitForFinish` parameter the API endpoint will synchronously wait for the run to finish.
1294
1300
This is useful to avoid periodic polling when waiting for actor run to complete.
1295
1301
1296
-
This endpoint does not require the authentication token, the calls are authenticated using a hard-to-guess ID of the run.
1302
+
This endpoint does not require the authentication token. The calls are authenticated using a hard-to-guess ID of the run.
1297
1303
1298
1304
+ Parameters
1299
1305
@@ -1463,6 +1469,10 @@ Note that for all the API endpoints that accept the `actorTaskId` parameter to s
1463
1469
you can pass either the task ID (e.g. `HG7ML7M8z78YcAPEB`) or a tilde-separated
1464
1470
username of the task's owner and the task's name (e.g. `janedoe~my-task`).
1465
1471
1472
+
Some of the API endpoints return runs objects. Note that if any such run object contains usage in dollars, your effective unit pricing at the time of query
1473
+
has been used for computation of this dollar equivalent, and hence it should be used only for informative purposes. You can learn more
1474
+
about platform usage in the <a href="https://docs.apify.com/platform/actors/running/usage-and-resources#usage">documentation</a>.
0 commit comments