Skip to main content

Get last task run's dataset statistics

GET 

/v2/actor-tasks/:actorTaskId/runs/last/dataset/statistics

Returns statistics for the last Actor task run's default dataset.

This endpoint is a shortcut that resolves the last task run's defaultDatasetId and proxies to the Get dataset statistics endpoint.

Request

Path Parameters

    actorTaskId string required

    Task ID or a tilde-separated owner's username and task's name.


    Example: janedoe~my-task

Query Parameters

    status string

    Filter for the run status.


    Example: SUCCEEDED

Status 200

{
"data": {
"fieldStatistics": {
"name": {
"nullCount": 122
},
"price": {
"min": 59,
"max": 89
}
}
}
}