GET /external/v1/okrsList OKRs in the current workspace. Results include product ids and key-result project ids.
Requirements
Request
Parameters
| Name | Type | Description |
|---|---|---|
| limit | number | Maximum number of OKRs to return. |
| offset | number | Number of OKRs to skip. |
Responses
OKRs were successfully retrieved.
Example Request
/external/v1/okrscurl -X GET 'https://zentrik.ai/api/external/v1/okrs?limit=20' \
-H 'Authorization: Bearer YOUR_API_KEY'Example Response
[
{
"id": "okr-uuid",
"objective": "Increase activation for self-serve teams",
"priority": 1,
"workspaceId": "workspace-uuid",
"productIds": [
"product-uuid"
],
"keyResults": [
{
"id": "key-result-uuid",
"name": "Lift week-one activation from 42% to 55%",
"projectIds": [
"project-uuid"
],
"createdAt": "2026-05-14T10:00:00Z",
"updatedAt": "2026-05-14T10:00:00Z"
}
],
"createdAt": "2026-05-14T10:00:00Z",
"updatedAt": "2026-05-14T10:00:00Z"
}
]