api/go/telnyx-voice-media-go/SKILL.md
Play audio files, use text-to-speech, and record calls. Use when building IVR systems, playing announcements, or recording conversations. This skill provides Go SDK examples.
npx skillsauth add team-telnyx/telnyx-toolkit telnyx-voice-media-goInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
go get github.com/team-telnyx/telnyx-go
import (
"context"
"fmt"
"os"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
client := telnyx.NewClient(
option.WithAPIKey(os.Getenv("TELNYX_API_KEY")),
)
All examples below assume client is already initialized as shown above.
Play an audio file on the call.
POST /calls/{call_control_id}/actions/playback_start
response, err := client.Calls.Actions.StartPlayback(
context.TODO(),
"call_control_id",
telnyx.CallActionStartPlaybackParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Stop audio being played on the call.
POST /calls/{call_control_id}/actions/playback_stop
response, err := client.Calls.Actions.StopPlayback(
context.TODO(),
"call_control_id",
telnyx.CallActionStopPlaybackParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Pause recording the call.
POST /calls/{call_control_id}/actions/record_pause
response, err := client.Calls.Actions.PauseRecording(
context.TODO(),
"call_control_id",
telnyx.CallActionPauseRecordingParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Resume recording the call.
POST /calls/{call_control_id}/actions/record_resume
response, err := client.Calls.Actions.ResumeRecording(
context.TODO(),
"call_control_id",
telnyx.CallActionResumeRecordingParams{},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Start recording the call.
POST /calls/{call_control_id}/actions/record_start — Required: format, channels
response, err := client.Calls.Actions.StartRecording(
context.TODO(),
"call_control_id",
telnyx.CallActionStartRecordingParams{
Channels: telnyx.CallActionStartRecordingParamsChannelsSingle,
Format: telnyx.CallActionStartRecordingParamsFormatWav,
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Stop recording the call.
POST /calls/{call_control_id}/actions/record_stop
response, err := client.Calls.Actions.StopRecording(
context.TODO(),
"call_control_id",
telnyx.CallActionStopRecordingParams{
StopRecordingRequest: telnyx.StopRecordingRequestParam{},
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
Convert text to speech and play it back on the call.
POST /calls/{call_control_id}/actions/speak — Required: payload, voice
response, err := client.Calls.Actions.Speak(
context.TODO(),
"call_control_id",
telnyx.CallActionSpeakParams{
Payload: "Say this on the call",
Voice: "female",
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", response.Data)
The following webhook events are sent to your configured webhook URL.
All webhooks include telnyx-timestamp and telnyx-signature-ed25519 headers for verification (Standard Webhooks compatible).
| Event | Description |
|-------|-------------|
| callPlaybackStarted | Call Playback Started |
| callPlaybackEnded | Call Playback Ended |
| callSpeakEnded | Call Speak Ended |
| callRecordingSaved | Call Recording Saved |
| callRecordingError | Call Recording Error |
| callRecordingTranscriptionSaved | Call Recording Transcription Saved |
| callSpeakStarted | Call Speak Started |
tools
Build cross-platform VoIP calling apps with React Native using Telnyx Voice SDK. High-level reactive API with automatic lifecycle management, CallKit/ConnectionService integration, and push notifications. Use for mobile VoIP apps with minimal setup.
tools
Build browser-based VoIP calling apps using Telnyx WebRTC JavaScript SDK. Covers authentication, voice calls, events, debugging, call quality metrics, and AI Agent integration. Use for web-based real-time communication.
tools
Build VoIP calling apps on iOS using Telnyx WebRTC SDK. Covers authentication, making/receiving calls, CallKit integration, PushKit/APNS push notifications, call quality metrics, and AI Agent integration. Use when implementing real-time voice communication on iOS.
tools
Build cross-platform VoIP calling apps with Flutter using Telnyx WebRTC SDK. Covers authentication, making/receiving calls, push notifications (FCM + APNS), call quality metrics, and AI Agent integration. Works on Android, iOS, and Web.