---
title: "Get a specific project"
method: GET
path: "/projects/{id}"
tags: ["Projects"]
---

# Get a specific project

`GET /projects/{id}`

Returns detailed information about a specific project

## Path parameters

- `id` integer, required

## Response `200`

Successful response

- Project — Project resource
  - `id` integer
  - `team_id` integer
  - `client_id` integer, nullable
  - `name` string
  - `type` 'hourly' | 'fixed' | 'non-billable'
  - `status` 'active' | 'proposed' | 'completed' | 'on hold' | 'archived' | 'canceled' | 'inactive'
  - `start` string, nullable
  - `end` string, nullable
  - `start_date` string, date, nullable
  - `end_date` string, date, nullable
  - `budget` number, nullable
  - `budget_used` number
  - `budget_remaining` number
  - `budget_reset` 'weekly' | 'monthly' | 'quarterly' | 'yearly', nullable
  - `track_unbilled_hours_expected_revenue` boolean
  - `track_unbilled_fixed_expected_revenue` boolean
  - `total_hours_recorded` number
  - `hours` number
  - `hours_budget` string
  - `hours_recorded` string
  - `hours_budget_percentage` number
  - `collected` number
  - `cost` number
  - `profit` number
  - `actual_rate` number
  - `client` object
    - `id` integer, nullable
    - `name` string
  - `users` object[]
    - `id` integer
    - `name` string
    - `avatar` string, nullable

## Other responses

- `401` — Unauthenticated
- `403` — Forbidden
- `404` — Project not found

---

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