API Reference / Strategy - Initiative Intent
Calculate single initiative intent
get
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/{initiativeId}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getInitiativeIntent
Computes intent alignment score for a single initiative. Returns detailed evidence showing why signals matched.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
initiativeId | integer (int64) | yes | Initiative ID |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
windowDays | integer (int32) | no | Time window in days (default: 14, max: 90) |
Response 200
application/json · ApiResponseInitiativeIntentDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | InitiativeIntentDto | Initiative intent calculation result showing confidence and evidence |
Status codes
200— Intent score calculated and returned401— Not authenticated403— Insufficient permissions to access strategy pillar404— Initiative not found429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.