Get Single Project
GET
/api/data/projects/{project_id}
const url = 'https://example.com/api/data/projects/example';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/data/projects/exampleReturn a single project summary mirroring list semantics but scoped to one project.
Authorization:
- User must have UserProjectLink OR UserTargetLink for this project
Target filtering rules:
- PM/Admin via UserProjectLink: include all targets
- Others: include only targets where a UserTargetLink exists for current user
Supports both internal ID and UUID formats for backward compatibility.
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”project_id
required
Project Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
UserProjectSummary
object
project_id
required
Project Id
Primary external time-ordered UUIDv7 identifier
string
name
required
Name
Display name of the project
string
continuous
required
Continuous
Whether this is a continuous project
boolean
status
Any of:
ProjectState
string
null
state
Any of:
ProjectState
string
null
files
required
Files
Files associated with this project
Array<object>
ProjectFileInfoobject
file_name
required
File Name
Original filename
string
targets
required
Targets
Targets configured for this file
Array<object>
ProjectTargetInfoExample
{ "continuous": false, "deadline": 1736208000, "edit_time": 1735689600, "edit_user": "pm@example.com", "files": [ { "file_name": "brochure.docx", "file_uuid": "0195f5c8-5c2a-7b58-b3f5-9d5c8e4f1a24", "source_lang": "eng", "targets": [ { "deadline": 1736110000, "last_edit_time": 1735800000, "row_count": 120, "target_lang": "fra", "target_uuid": "0195f5c8-5c2a-7b58-b3f5-9d5c8e4f1a25", "user_role": "project_manager" } ] } ], "name": "Marketing Brochure", "project_id": "0195f5c8-5c2a-7b58-b3f5-9d5c8e4f1a23", "state": "active", "status": "active", "user_role": "project_manager"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}