Initiates a call by first calling your registered phone number, then connecting you to the destination. The call is automatically recorded and transcribed.
Request Body
The destination phone number to call. Can be formatted with or without country code.
Request
curl -X POST "https://app.transcord.app/api/v1/calls" \
-H "Authorization: Bearer tr_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"toNumber": "+14155551234"}'
Response
Unique identifier for the call (Twilio Call SID)
Call status, will be initiated
Human-readable status message
The formatted destination number
{
"callSid": "CA1234567890abcdef",
"status": "initiated",
"message": "Call initiated. You will receive a call shortly.",
"toNumber": "+14155551234"
}
How It Works
- Transcord calls your registered phone number
- When you answer, you’re connected to the destination number
- The call is recorded in dual-channel format
- After hangup, the recording is transcribed
- You receive an email with the transcript
Requirements
- You must have a phone number registered in your account
- You must have available minutes (subscription or free tier)
- The destination number must not be blocked
Errors
| Status | Description |
|---|
400 | Missing toNumber or invalid/blocked number |
401 | Invalid or missing API key |
403 | No minutes remaining |
404 | User not found |