Returns a list of releases associated with a project.
Use this endpoint when you need to:
curl -X GET https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId}/releases \
-H "Authorization: Bearer YOUR_API_TOKEN"| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to get the releases for |
projectId | ✅ Yes | The ID of the project to get the releases for |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer token in the format Bearer <API_TOKEN> |
{
"data": [
{
"id": "rel_2001",
"project_id": "proj_101",
"name": "Release 2.1",
"version": "2.1.0",
"status": "FAILED",
"created_at": "2026-02-01T00:00:00Z",
"closed_at": "2026-02-11T15:00:00Z"
}
],
"meta": {
"next_cursor": null
}
}