Skip to main content

Get last run's dataset statistics

GET 

/v2/acts/:actorId/runs/last/dataset/statistics

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

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

Request

Path Parameters

    actorId string required

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


    Example: janedoe~my-actor

Query Parameters

    status string

    Filter for the run status.


    Example: SUCCEEDED

Status 200

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