Skip to main content
Retrieve the conversation transcription for a simulation.
curl -X GET "https://api.chanl.ai/api/v1/workspaces/ws_123/simulations/sim_123456/transcription" \
  -H "Authorization: Bearer <access_token>"
{
  "success": true,
  "data": {
    "transcription": {
      "segments": [
        {
          "speaker": "customer",
          "timestamp": "00:00:01",
          "text": "Hello, I'm calling about a charge on my account that I don't recognize."
        },
        {
          "speaker": "agent",
          "timestamp": "00:00:05",
          "text": "I'd be happy to help you with that. Can you please provide me with your account number?"
        }
      ],
      "summary": "Customer called about an unrecognized charge. Agent helped identify and resolve the billing issue.",
      "duration": "00:03:45",
      "wordCount": 412
    }
  }
}