cURL
curl --request GET \ --url https://api.thehaystack.ai/v2/haystack/items/{itemId}/transcript \ --header 'Authorization: Bearer <token>'
{ "itemId": 123, "title": "<string>", "transcript": "<string>", "chunks": [ { "text": "<string>", "startMs": 123, "endMs": 123 } ] }
Retrieve the full transcript for an item including semantic chunks. Requires the item to be processed.
Enter your API token from the Haystack dashboard
Item transcript with per-chunk timings
Full transcript as a single string
Show child attributes