---
title: "Create Transcript Highlight"
method: POST
path: "/transcripts/{transcript_id}/highlights"
tags: ["transcripts"]
---

# Create Transcript Highlight

`POST /transcripts/{transcript_id}/highlights`

Create a highlight for this transcript for the current user.

## Path parameters

- `transcript_id` string, required

## Request body

- TranscriptHighlightCreateRequest
  - `start_message_index` integer, required
  - `start_index` integer, required
  - `end_message_index` integer, required
  - `end_index` integer, required

## Response `200`

Successful Response

- TranscriptHighlight
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `transcript_highlight_id` string, uuid
  - `transcript_id` string, required
  - `user_id` string, required
  - `start_message_index` integer, required
  - `start_index` integer, required
  - `end_message_index` integer, required
  - `end_index` integer, required
  - `highlighted_text` string, nullable

## Other responses

- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.dev/trytrata/apis/fastapi.md) · [All operations](https://skmtc.dev/trytrata/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/trytrata/fastapi/revisions/a8ae8846c411/schema)
