Server SDKs
Build AI agents, control calls, send messages, and more
Retrieve a single transcription by SID.
format: "uuid"
>=0
1{2 "sid": "b3877c40-da60-4998-90ad-b792e98472tr",3 "account_sid": "b3877c40-da60-4998-90ad-b792e98472ac",4 "api_version": "2010-04-01",5 "recording_sid": "b3877c40-da60-4998-90ad-b792e98472re",6 "date_created": "Thu, 27 Sep 2018 02:00:00 +0000",7 "date_updated": "Fri, 28 Sep 2018 03:00:00 +0000",8 "duration": 60,9 "price": "-0.00025",10 "price_unit": "USD",11 "status": "completed",12 "transcription_text": "Hello, this is a test transcription.",13 "type": "",14 "uri": "/api/laml/2010-04-01/Accounts/b3877c40-da60-4998-90ad-b792e98472ac/Transcriptions/b3877c40-da60-4998-90ad-b792e98472tr.json"15}
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com"7});8const transcription = await client.compat.transcriptions.get("TR...");