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

# Get user builds list

`GET /v2/actor-builds`

Gets a list of all builds for a user. The response is a JSON array of
objects, where each object contains basic information about a single build.

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 `startedAt` field in ascending
order. Therefore, you can use pagination to incrementally fetch all builds while
new ones are still being started. To sort the records in descending order, use
the `desc=1` parameter.

## Query parameters

- `offset` number, double
- `limit` number, double
- `desc` boolean

## Response `200`

- ListOfBuildsResponse
  - `data` ListOfBuilds, 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` BuildShort[], required
      - `id` string, required
      - `actId` string
      - `userId` string
      - `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
      - `usageTotalUsd` number, required
      - `buildNumber` string, required
      - `buildNumberInt` integer
      - `meta` BuildsMeta
        - `origin` 'DEVELOPMENT' | 'WEB' | 'API' | 'SCHEDULER' | 'TEST' | 'WEBHOOK' | 'ACTOR' | 'CLI' | 'CI' | 'STANDBY' | 'MCP', required
        - `clientIp` string — IP address of the client that started the build.
        - `userAgent` string — User agent of the client that started the build.

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