---
title: "Get Task Ready Check"
method: GET
path: "/v2/tasks/{task_id}/ready-check"
tags: ["tasks"]
---

# Get Task Ready Check

`GET /v2/tasks/{task_id}/ready-check`

Evaluate the taskset's ready requirements against the task's latest version.

Informational: the Ready click is not blocked server-side.

## Path parameters

- `task_id` string, uuid, required

## Response `200`

Successful Response

- union
  - ReadyRequirementsEvaluation — ``evaluated_trace_ids`` is the K traces actually scored. ``candidate_count`` is the total eligible pool. When ``candidate_count < k`` the count check fails and per-K checks score whatever candidates exist.
    - `passed` boolean, required
    - `k` integer, required
    - `candidate_count` integer, required
    - `evaluated_trace_ids` string[]
    - `requirements_version` integer
    - `checks` RequirementCheck[]
      - `key` string, required
      - `label` string, required
      - `passed` boolean, required
      - `severity` 'error' | 'warning'
      - `required` string, required
      - `current` string, required
      - `how_to_fix` string, required
      - `offending_trace_ids` string[]
    - `can_override` boolean
    - `has_requirements` true
    - `evaluated_at` string, date-time, required
  - ReadyRequirementsNotConfigured — Sentinel for "no config on the taskset". Discriminated by ``has_requirements`` so the UI can hide the REQUIREMENTS section entirely vs. render an empty card.
    - `passed` true
    - `has_requirements` false
    - `evaluated_at` string, date-time, required

## Other responses

- `400` — Invalid or malformed request
- `401` — Missing or invalid credentials
- `403` — Caller may not access this resource
- `404` — Referenced entity does not exist
- `409` — Resource already exists
- `422` — Validation Error

---

[API](https://skmtc.dev/hud/apis/hud-platform.md) · [All operations](https://skmtc.dev/hud/apis/hud-platform/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/hud/hud-platform/revisions/58558fc733d9/schema)
