---
title: "Retrieve a tracker project"
method: GET
path: "/tracker-projects/{id}"
tags: ["Tracker Projects"]
---

# Retrieve a tracker project

`GET /tracker-projects/{id}`

Retrieve a tracker project for the authenticated team.

## Path parameters

- `id` string, uuid, required — Unique identifier of the project to retrieve

## Response `200`

Tracker project by ID for the authenticated team.

- TrackerProjectResponse
  - `id` string, uuid, required — Unique identifier of the project
  - `name` string, required — Name of the project
  - `description` string, nullable, required — Detailed description of the project
  - `status` 'in_progress' | 'completed', required — Current status of the project
  - `estimate` number, nullable, required — Estimated total hours required to complete the project
  - `currency` string, nullable, required — Currency code for the project rate in ISO 4217 format
  - `createdAt` string, required — Date and time when the project was created in ISO 8601 format
  - `totalDuration` number, nullable, required — Total tracked time for the project in seconds
  - `totalAmount` number, required — Total monetary amount earned from the project
  - `customer` object, nullable, required — Customer information associated with the project
    - `id` string, uuid, required — Unique identifier of the customer
    - `name` string, required — Name of the customer or organization
    - `website` string, required — Website URL of the customer
  - `tags` object[], required — Array of tags associated with the project
    - `id` string, uuid, required — Unique identifier of the tag
    - `name` string, required — Display name of the tag
  - `users` object[], nullable, required — Array of users assigned to work on the project
    - `id` string, uuid, required — Unique identifier of the user
    - `fullName` string, required — Full name of the user
    - `avatarUrl` string, uri, required — URL to the user's avatar image

## Other responses

- `default` — An error occurred

---

[API](https://skmtc.net/midday-ai/apis/midday-api.md) · [All operations](https://skmtc.net/midday-ai/apis/midday-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/midday-ai/midday-api/versions/c0df9243c1b0/schema)
