---
title: "Get task"
method: GET
path: "/v2/actor-tasks/{actorTaskId}"
tags: ["Actor tasks"]
---

# Get task

`GET /v2/actor-tasks/{actorTaskId}`

Get an object that contains all the details about a task.

## Path parameters

- `actorTaskId` string, required

## Response `200`

- object
  - `data` Task, required
    - `id` string, required
    - `userId` string, required
    - `actId` string, required
    - `name` string, required
    - `username` string, nullable
    - `createdAt` string, date-time, required
    - `modifiedAt` string, date-time, required
    - `removedAt` string, date-time, nullable
    - `stats` TaskStats
      - `totalRuns` integer
    - `options` TaskOptions
      - `build` string, nullable
      - `timeoutSecs` integer, nullable
      - `memoryMbytes` integer, nullable
      - `maxItems` integer, nullable
      - `maxTotalChargeUsd` number, nullable
      - `restartOnError` boolean, nullable
    - `input` TaskInput — The input configuration for the Actor task. This is a user-defined JSON object that will be passed to the Actor when the task is run.
    - `title` string, nullable
    - `actorStandby` ActorStandby
      - `isEnabled` boolean, nullable — Whether standby mode is enabled for the Actor.
      - `desiredRequestsPerActorRun` integer, nullable — Target number of concurrent HTTP requests a single run is configured to handle.
      - `maxRequestsPerActorRun` integer, nullable — Maximum number of concurrent HTTP requests that can be routed to a single run.
      - `idleTimeoutSecs` integer, nullable — In seconds, how long a run can stay idle without incoming requests before it's terminated.
      - `build` string, nullable — Which build to run in standby mode. Either a build tag or a version number.
      - `memoryMbytes` integer, nullable — In MB, the amount of memory allocated to the run.
      - `disableStandbyFieldsOverride` boolean, nullable — If `true`, prevents the standby mode configuration from being overridden elsewhere.
      - `shouldPassActorInput` boolean, nullable — Whether to pass the Actor's input to the standby run. If `false`, the standby runs start with no input.
    - `standbyUrl` string, uri, nullable

## 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.
- `404` — Not found - the requested resource does not exist.
- `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)
