API Reference / Knowledge - Artifacts

Search transcripts

get https://api.intelig.ai/api/v1/intelig/knowledge/transcripts/search

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

Full-text search across meeting transcript content for the current organization. Returns paginated results matching the query.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/knowledge/transcripts/search?q=string&pageable=string" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Query parameters

NameTypeRequiredDescription
q string yes
pageable Pageable yes

Response 200

application/json · ApiResponsePageMeetingTranscriptDto

FieldTypeDescription
success boolean
message string
data PageMeetingTranscriptDto

Status codes

  • 200 — Search results returned successfully
  • 401 — Organization context not set
  • 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.