API Reference / Strategy - Initiative Intent

Calculate all initiative intents

get https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getIntents

Computes intent alignment scores for all active initiatives in the organization. Uses signals (commits, meetings) from the specified time window. The response includes: - Overall mapping percentage (% of work aligned to initiatives) - Per-initiative confidence scores - Evidence breakdown by signal type and match type

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Query parameters

NameTypeRequiredDescription
windowDays integer (int32) no Time window in days (default: 14, max: 90)

Response 200

application/json · ApiResponseInitiativeIntentsResponseDto

FieldTypeDescription
success boolean
message string
data InitiativeIntentsResponseDto Response containing initiative intent calculations for an organization

Status codes

  • 200 — Intent scores calculated and returned
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 429 — —

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.