API Reference / Strategy - Themes

Get all themes

get https://api.intelig.ai/api/v1/intelig/strategy/themes

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

Returns all strategic themes for the organization, used for grouping related initiatives

Example request

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

Response 200

application/json · ApiResponseListThemeDto

FieldTypeDescription
success boolean
message string
data ThemeDto[]

Status codes

  • 200 — List of themes returned successfully
  • 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.