---
title: "Get user runs list"
method: GET
path: "/v2/actor-runs"
tags: ["Actor runs"]
---

# Get user runs list

`GET /v2/actor-runs`

Gets a list of all runs for a user. The response is a list of objects, where
each object contains basic information about a single Actor run.

The endpoint supports pagination using the `limit` and `offset` parameters
and it will not return more than 1000 array elements.

By default, the records are sorted by the `startedAt` field in ascending
order. Therefore, you can use pagination to incrementally fetch all records while
new ones are still being created. To sort the records in descending order, use
`desc=1` parameter. You can also filter runs by `startedAt`` and `status`` fields ([available
statuses](https://docs.apify.com/platform/actors/running/runs-and-builds#lifecycle)).

## Query parameters

- `offset` number, double
- `limit` number, double
- `desc` boolean
- `status` string[]
- `startedAfter` string, date-time
- `startedBefore` string, date-time

## Response `200`

- ListOfRunsResponse
  - `data` ListOfRuns, required — Common pagination fields for list responses.
    - `total` integer, required — The total number of items available across all pages.
    - `offset` integer, required — The starting position for this page of results.
    - `limit` integer, required — The maximum number of items returned per page.
    - `desc` boolean, required — Whether the results are sorted in descending order.
    - `count` integer, required — The number of items returned in this response.
    - `items` RunShort[], required
      - `id` string, required
      - `actId` string, required
      - `userId` string
      - `actorTaskId` string, nullable
      - `status` 'READY' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'TIMING-OUT' | 'TIMED-OUT' | 'ABORTING' | 'ABORTED', required — Status of an Actor job (run or build).
      - `startedAt` string, date-time, required
      - `finishedAt` string, date-time, nullable
      - `buildId` string, required
      - `buildNumber` string
      - `buildNumberInt` integer
      - `meta` RunMeta, required
        - `origin` 'DEVELOPMENT' | 'WEB' | 'API' | 'SCHEDULER' | 'TEST' | 'WEBHOOK' | 'ACTOR' | 'CLI' | 'CI' | 'STANDBY' | 'MCP', required
        - `clientIp` string, nullable — IP address of the client that started the run.
        - `userAgent` string, nullable — User agent of the client that started the run.
        - `scheduleId` string, nullable — ID of the schedule that triggered the run.
        - `scheduledAt` string, date-time, nullable — Time when the run was scheduled.
      - `usageTotalUsd` number, required
      - `defaultKeyValueStoreId` string, required
      - `defaultDatasetId` string, required
      - `defaultRequestQueueId` string, required

## Other responses

- `400` — Bad request - invalid input parameters or request body.
- `401` — Unauthorized - authentication required or invalid token.
- `403` — Forbidden - insufficient permissions to perform this action.
- `405` — Method not allowed.
- `429` — Too many requests - rate limit exceeded.

---

[API](https://skmtc.net/apify/apis/apify-api.md) · [All operations](https://skmtc.net/apify/apis/apify-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apify/apify-api/versions/01a71794279b/schema)
