GET /external/v1/insightsReturns a bounded page of insights in your workspace. Insights are the core of discovery, representing feedback and data points collected from various sources.
Requirements
Request
Parameters
| Name | Type | Description |
|---|---|---|
| limit | number | Maximum number of items to return (default: 20, maximum: 100) |
| offset | number | Number of items to skip (default: 0) |
| include | string | Comma-separated optional details. Supported values: classifications, provenance. Provenance can increase response size. |
| sourceKey | string | Exact stable source namespace to match |
| externalId | string | Exact source-record identifier to match |
| integrationId | uuid | Exact connected integration identifier to match |
Responses
A list of insights was successfully retrieved. Pagination metadata is returned in X-Total-Count, X-Limit, X-Offset, and X-Has-More headers.
Example Request
/external/v1/insightscurl -X GET https://zentrik.ai/api/external/v1/insights?limit=10 \
-H 'Authorization: Bearer YOUR_API_KEY'Example Response
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Users find navigation confusing",
"description": "Initial feedback from customer interviews...",
"status": "Validated",
"type": "Usability friction",
"productId": "8a1b2c3d-...",
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z",
"opportunityIds": [
"uuid-1"
],
"ideaIds": [
"uuid-2"
],
"tagIds": [
"tag-1"
]
}
]