---
title: "Get list of Actors"
method: GET
path: "/v2/actors"
tags: ["Actors"]
---

# Get list of Actors

`GET /v2/actors`

Gets the list of all Actors that the user created or used. The response is a
list of objects, where each object contains a basic information about a single Actor.

To only get Actors created by the user, add the `my=1` query parameter.

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

By default, the records are sorted by the `createdAt` field in ascending
order, therefore you can use pagination to incrementally fetch all Actors while new
ones are still being created. To sort the records in descending order, use the `desc=1` parameter.

You can also sort by your last run by using the `sortBy=stats.lastRunStartedAt` query parameter.
In this case, descending order means the most recently run Actor appears first.

## Query parameters

- `my` boolean
- `offset` number, double
- `limit` number, double
- `desc` boolean
- `sortBy` 'createdAt' | 'stats.lastRunStartedAt'

## Response `200`

- ListOfActorsResponse
  - `data` ListOfActors, 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` ActorShort[], required
      - `id` string, required
      - `createdAt` string, date-time, required
      - `modifiedAt` string, date-time, required
      - `name` string, required
      - `username` string, required
      - `title` string
      - `stats` ActorStats — Usage statistics and Apify Store metrics for the Actor.
        - `totalBuilds` integer — The total number of builds of the Actor.
        - `totalRuns` integer — The total number of runs of the Actor.
        - `totalUsers` integer — The total number of Actor users, including its owner.
        - `totalUsers7Days` integer — The number of active users of the Actor in the last 7 days.
        - `totalUsers30Days` integer — The number of active users of the Actor in the last 30 days.
        - `totalUsers90Days` integer — The number of active users of the Actor in the last 90 days.
        - `totalMetamorphs` integer — The total number of times a run of another Actor was [metamorphed](https://docs.apify.com/platform/actors/development/programming-interface/metamorph) into this Actor.
        - `lastRunStartedAt` string, date-time — The date and time the most recent run of the Actor started.
        - `actorReviewCount` integer — The number of reviews the Actor has received in Apify Store.
        - `actorReviewRating` number — The average rating of the Actor in Apify Store.
        - `bookmarkCount` integer — The number of users who bookmarked the Actor in Apify Store.
        - `publicActorRunStats30Days` object — Run status counts from the last 30 days. Only for public Actors. Excludes runs started by the Actor's owner.
          - `ABORTED` integer — The number of runs that were aborted.
          - `FAILED` integer — The number of runs that failed.
          - `SUCCEEDED` integer — The number of runs that succeeded.
          - `TIMED-OUT` integer — The number of runs that timed out.
          - `TOTAL` integer — The total number of runs.

## 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)
