Skip to main content
GET
/
api
/
public
/
v1
/
projects
/
{id}
Get Project
curl --request GET \
  --url https://api.example.com/api/public/v1/projects/{id}
{
  "data": {
    "id": "proj_123...",
    "name": "Website Redesign",
    "code": "WEB-26",
    "description": "Complete overhaul of the marketing site",
    "status": "ACTIVE",
    "startDate": "2026-01-01T00:00:00.000Z",
    "endDate": "2026-06-30T00:00:00.000Z",
    "createdAt": "2026-01-01T00:00:00.000Z",
    "updatedAt": "2026-05-18T00:00:00.000Z",
    "assignments": [
      {
        "userId": "usr_789...",
        "role": "Lead Developer"
      }
    ]
  }
}
This includes all active employee assignments and their roles on the project.

Path Parameters

id
string
required
The unique identifier of the project.

Response

{
  "data": {
    "id": "proj_123...",
    "name": "Website Redesign",
    "code": "WEB-26",
    "description": "Complete overhaul of the marketing site",
    "status": "ACTIVE",
    "startDate": "2026-01-01T00:00:00.000Z",
    "endDate": "2026-06-30T00:00:00.000Z",
    "createdAt": "2026-01-01T00:00:00.000Z",
    "updatedAt": "2026-05-18T00:00:00.000Z",
    "assignments": [
      {
        "userId": "usr_789...",
        "role": "Lead Developer"
      }
    ]
  }
}