Skip to main content
GET
/
items
/
{itemId}
/
transcript
Get item transcript
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
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developer.thehaystack.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API token from the Haystack dashboard

Path Parameters

itemId
integer
required

Response

200 - application/json

Item transcript with per-chunk timings

itemId
integer
title
string
transcript
string

Full transcript as a single string

chunks
object[]