vonage-voice
Vonage voice package
What it is and what it does
vonage-voice is a Python client library for Vonage's Voice API, enabling programmatic control of phone calls. It wraps Vonage's REST endpoints and provides a Pydantic-based request/response model layer, so you construct call parameters as typed objects rather than raw dictionaries. The package includes an NCCO builder—a set of classes representing call control actions (Talk, Play, Transfer, etc.)—that you chain together to define call flow logic.
You use it by instantiating a Vonage client (typically through the main vonage package) and calling methods like create_call, transfer_call_ncco, play_audio_into_call, or hangup on the voice submodule. The package handles serialization to Vonage's API format and parsing responses back into Python objects. It depends on vonage-http-client for HTTP transport, vonage-utils for shared utilities, and pydantic for data validation.
Use it for:
- Build an IVR (interactive voice response) system that plays prompts and routes calls based on DTMF input.
- Programmatically initiate outbound calls with custom audio or text-to-speech messages for notifications or surveys.
- Transfer an active call to a new NCCO or URL without dropping the connection.
- Play audio streams or TTS into an ongoing call for real-time announcements or hold messages.
- Query call history and status across your Vonage account with filtering by date, status, or conversation ID.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides Python bindings to Vonage's Voice API for making and managing phone calls, including call creation, transfer, audio/TTS playback, and NCCO (Call Control Object) building.
Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and is the official Vonage Voice API client for Python. Install it if you need to integrate Vonage voice capabilities into a Python application; the Pydantic-based API and NCCO builder reduce boilerplate compared to raw HTTP calls.
Install
vonage-voice on PyPI
pip
pip install vonage-voiceuv
uv add vonage-voicepoetry
poetry add vonage-voiceInstalling vonage-voice
Before you install
Low install friction with a pure-Python wheel and three lightweight runtime dependencies. Active maintenance with a recent release (25 days old) and ongoing repository activity.
License in practice
Permissive Apache license allows commercial and private use with minimal restrictions.
Quickstart
pip install vonage-voice
from vonage import Vonage, Auth
from vonage_voice import CreateCallRequest, Talk
vonage_client = Vonage(Auth('MY_AUTH_INFO'))
ncco = [Talk(text='Hello world', loop=3, language='en-GB')]
call = CreateCallRequest(
to=[{'type': 'phone', 'number': '1234567890'}],
ncco=ncco,
random_from_number=True,
)
response = vonage_client.voice.create_call(call)
Requires Vonage authentication credentials and an active Vonage account.
Verify before relying
- Whether vonage-http-client and vonage-utils are maintained and have their own security track record.
- Specific latency or throughput characteristics for high-volume call operations.
- Whether the package supports webhook handling for inbound calls or only outbound call control.
Package facts
| License | not declared (permissive) |
| Python support | supports the current Python release (>=3.9) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — vonage-http-client, vonage-utils, pydantic |
| Maintenance | actively maintained — 25 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 348,154/month — #7,344 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: vonage_voice-1.5.1-py3-none-any.whl
Tags
More Internet packages
Botocore provides low-level, data-driven access…
permissive · top 100 on PyPI
aiobotocoreProvides an async client for AWS services using…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
filelockProvides a platform-independent file locking…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
googleapis-common-protosProvides common Protocol Buffer message…
permissive · top 100 on PyPI
vonageVonage provides a unified Python interface to…
permissive · top 15,000 on PyPI
vonage-applicationManages Vonage applications through a Python…
permissive · top 15,000 on PyPI
vonage-subaccountsProvides Python bindings to Vonage's Subaccount…
permissive · top 15,000 on PyPI
vonage-smsSends SMS messages via Vonage's API and handles…
permissive · top 15,000 on PyPI
vonage-usersManages users in Vonage's communications…
permissive · top 15,000 on PyPI
vonage-numbersProvides Python bindings to Vonage's Numbers…
permissive · top 15,000 on PyPI
vonage-utilsProvides utility functions and error types for…
permissive · top 15,000 on PyPI
voip-utilsProvides Voice over IP utilities for Home…
permissive · top 15,000 on PyPI
vonage-network-sim-swapVonage Network Sim Swap API client that checks…
permissive · top 15,000 on PyPI
vonage-messagesProvides Python message models and client…
permissive · top 15,000 on PyPI