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
| Name | Type | Required | Description |
|---|---|---|---|
artifactId | integer (int64) | yes | — |
Response 200
application/json · ApiResponseMeetingTranscriptDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | MeetingTranscriptDto | Meeting transcript details |
Status codes
200— Transcript returned successfully401— Organization context not set403— Insufficient permissions for Knowledge pillar404— Artifact or transcript 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.