API Reference / Knowledge - Artifacts

Get transcript for artifact

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

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

Retrieves the full meeting transcript associated with a knowledge artifact, including speaker segments and timestamps.

Example request

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

Path parameters

NameTypeRequiredDescription
artifactId integer (int64) yes

Response 200

application/json · ApiResponseMeetingTranscriptDto

FieldTypeDescription
success boolean
message string
data MeetingTranscriptDto Meeting transcript details

Status codes

  • 200 — Transcript returned successfully
  • 401 — Organization context not set
  • 403 — Insufficient permissions for Knowledge pillar
  • 404 — Artifact or transcript not found
  • 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.