GET
/api/public/v1/projects/{projectId}Get a project
Retrieve a single project with ticket + sprint counts.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
projectId | string | Required | Project ID. |
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/projects/{projectId}" \
-H "X-Organization-Id: your_org_id" \
-H "X-API-Key: your_api_key"200Example response
json
{
"message": "Project retrieved successfully!",
"content": {
"project": {
"id": "proj_1",
"key": "API",
"name": "Public API"
}
}
}