Convo
API ReferenceConversations

Get transcript

GET
/api/v1/conversations/{id}/transcript

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token. Generate keys in your Convo dashboard settings.

In: header

Path Parameters

idRequiredstring

Conversation session ID

curl -X GET "https://www.itsconvo.com/api/v1/conversations/sess_a1b2c3/transcript" \
  -H "Authorization: Bearer <token>"

Conversation transcript

{
  "data": {
    "id": "sess_a1b2c3",
    "segments": [
      {
        "text": "Let's review the Q1 targets.",
        "speaker": "Alice",
        "timestamp": "2026-03-18T14:01:12.000Z"
      },
      {
        "text": "Revenue is up 15% from last quarter.",
        "speaker": "Bob",
        "timestamp": "2026-03-18T14:01:18.000Z"
      },
      {
        "text": "That's great progress. What about retention?",
        "speaker": "Alice",
        "timestamp": "2026-03-18T14:01:25.000Z"
      }
    ]
  }
}