API Reference / Knowledge - Intelligence

Get cached intelligence

get https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/{artifactId}/intelligence

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

Returns previously generated AI intelligence for a meeting transcript artifact. Returns 200 with null data if no cached intelligence exists. Does not trigger AI generation.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/artifacts/1/intelligence" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
artifactId integer (int64) yes

Response 200

application/json · ApiResponseKnowledgeIntelligenceResponseDto

FieldTypeDescription
success boolean
message string
data KnowledgeIntelligenceResponseDto AI-generated intelligence for a knowledge artifact

Status codes

  • 200 — Cached intelligence returned (may be null if not yet generated)
  • 401 — Not authenticated
  • 403 — Insufficient permissions for Knowledge 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.