Michal
10/26/2025, 3:27 PMVapi Support Bot
10/26/2025, 3:28 PMYOUR_API_KEY and CALL_ID):
js
import { VapiClient } from "@vapi-ai/server-sdk";
const client = new VapiClient({ token: "YOUR_API_KEY" });
const call = await client.calls.get("CALL_ID");
console.log("Recording URL:", call.recordingUrl);
console.log("Transcript:", call.transcript);
This will help you confirm if the data is being generated or if there is a configuration/storage issue. If the fields are empty, review your assistant's recording configuration as described in the [Call Recording documentation](https://docs.vapi.ai/assistants/call-recording).
Source:
- [Call recording](https://docs.vapi.ai/assistants/call-recording)Chiranjeet Mishra
10/26/2025, 3:28 PMLucas van Staden
10/26/2025, 6:07 PMLucas van Staden
10/26/2025, 6:10 PM{
"transcriber": {
"model": "gpt-4o-transcribe",
"language": "en",
"provider": "openai",
"fallbackPlan": {
"transcribers": [
{
"provider": "11labs",
"language": "en",
"model": "scribe_v1"
}
]
}
}
}Michal
10/27/2025, 12:50 PMChiranjeet Mishra
10/28/2025, 6:47 PM