---
title: "Get task by ID"
method: GET
path: "/api/tasks/{id}"
tags: ["Tasks"]
---

# Get task by ID

`GET /api/tasks/{id}`

## Path parameters

- `id` integer, required

## Response `200`

Task details

- object
  - `task` Task
    - `id` integer
    - `title` string
    - `description` string
    - `status` 'inbox' | 'assigned' | 'in_progress' | 'quality_review' | 'done'
    - `priority` 'critical' | 'high' | 'medium' | 'low'
    - `assigned_to` string
    - `created_by` string
    - `due_date` string
    - `estimated_hours` number
    - `tags` string[]
    - `metadata` object
    - `created_at` integer
    - `updated_at` integer

## Other responses

- `401` — Authentication required
- `404` — Resource not found

## Changes

- **2026-03-02** `39aff788d955` — 1 breaking, 15 info
  - the `task` response's property type/format changed from ``/`` to `object`/`` for status `200`
  - added the media type `application/json` for the response with the status `401`
  - added the media type `application/json` for the response with the status `404`
  - added the optional property `task/assigned_to` to the response with the `200` status
  - …12 more

[Change history](https://skmtc.dev/builderz-labs/apis/mission-control-api/changes/api/tasks/:id/get.md)

---

[API](https://skmtc.dev/builderz-labs/apis/mission-control-api.md) · [All operations](https://skmtc.dev/builderz-labs/apis/mission-control-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/builderz-labs/mission-control-api/revisions/b920835b2793/schema)
