Skip to main content

Official Python SDK for the Vocametrix voice analysis API

Project description

vocametrix-python

PyPI version Python versions CI License: MIT API docs

Official Python SDK for the Vocametrix API — voice analysis, speech therapy, and acoustic measurement for speech-language pathologists, voice researchers, and developers.

Get an API key

Vocametrix is a commercial API. You need an account to use this SDK.

  • Sign up — create an account and get your API key. New accounts include a free trial (5 minutes of analysis or 5 API credits, whichever comes first) so you can run the quickstart below without entering payment details.
  • Pricing — see plans and rates once your trial is used up.

Once you have a key, every call is one VOCAMETRIX_API_KEY env var away.

Install

pip install vocametrix

Requires Python ≥ 3.9.

30-second quickstart

export VOCAMETRIX_API_KEY="your-api-key-here"
from vocametrix import VocametrixClient

client = VocametrixClient()  # reads VOCAMETRIX_API_KEY from environment

# AVQI — clinically validated dysphonia score (Maryn & Weenink 2015)
result = client.avqi.calculate(sustained_vowel="vowel.wav")
print(result["AVQI"])    # e.g. 1.8 → normal (threshold: 2.97)
print(result["CPP"], result["HNR25"])

Authentication

Set the VOCAMETRIX_API_KEY environment variable, or pass it explicitly:

from vocametrix import VocametrixClient

# From env var (recommended — never hardcode keys)
client = VocametrixClient()

# Explicit key (e.g. loaded from a secrets manager)
client = VocametrixClient(api_key="va_...")

Never hardcode API keys in source code. Use environment variables or a secrets manager.

What's included

Namespace What it does
client.avqi AVQI dysphonia index (Maryn/Barsties)
client.dsi Dysphonia Severity Index
client.cpp Cepstral Peak Prominence
client.hnr Multi-band Harmonics-to-Noise Ratio
client.jitter_shimmer Jitter & shimmer (Teixeira & Gonçalves 2014)
client.vrp Voice Range Profile (ambitus / glissando)
client.pronunciation Pronunciation assessment (30+ locales)
client.transcription Async speech-to-text with SSE
client.tts Text-to-speech with per-character timing
client.phoneme Phoneme detection (French, Estonian)
client.stuttering Stuttering classification (async polling)
client.prosody Prosody similarity (model vs learner)
client.egemaps eGeMAPS 88-feature extraction
client.sound_level Sound level measurement (dB SPL)

Workflows

Pronunciation assessment

result = client.pronunciation.assess(
    audio="recording.wav",
    reference_text="Hello, my name is Alex.",
    locale="en-US",
)
print(result["accuracyScore"], result["fluencyScore"])
for word in result.get("words", []):
    print(word["word"], word["accuracyScore"])

Batch AVQI over a folder

import pathlib

for wav in pathlib.Path("./recordings").glob("*.wav"):
    result = client.avqi.calculate(sustained_vowel=str(wav))
    avqi = result["AVQI"]
    label = "Normal" if avqi < 2.97 else "Dysphonic"
    print(f"{wav.name}: AVQI={avqi:.2f}  ({label})")

Async transcription with SSE

for event in client.transcription.stream("recording.wav", locale="en-US"):
    print(event.status, event.progress)
    if event.is_terminal_success:
        print("Transcript:", event.display_text)

Async client

import asyncio
from vocametrix import AsyncVocametrixClient

async def main():
    async with AsyncVocametrixClient() as client:
        result = await client._aget(
            "https://platform.vocametrix.com/api/calculate-avqi",
            params={"svFileId": "..."},
        )
        print(result)

asyncio.run(main())

Error handling

from vocametrix.exceptions import (
    VocametrixAuthError,       # 401 — bad or missing API key
    VocametrixRateLimitError,  # 429 — SDK retries automatically (up to 3×)
    VocametrixValidationError, # 422 — invalid parameter values
    VocametrixServerError,     # 5xx — SDK retries automatically
)

try:
    result = client.avqi.calculate(sustained_vowel="vowel.wav")
except VocametrixRateLimitError as e:
    print(f"Rate limited. Retry after {e.retry_after}s")
except VocametrixAuthError:
    print("Check your API key at https://www.vocametrix.com/registration")

The SDK retries 429, 500, 502, 503, 504 with exponential backoff (up to 3 retries). Non-retriable errors (4xx except 429) raise immediately.

Longer examples

See vocametrix-examples for:

  • End-to-end workflow scripts (batch pronunciation, full voice assessment, prosody loops)
  • Jupyter notebooks with cohort visualizations

API reference

Related projects

The Vocametrix ecosystem:

  • 📘 Vocametrix API documentation — full reference for all 48 endpoints (clinical voice quality, pronunciation assessment, speech-to-text, phoneme detection, prosody similarity, eGeMAPS feature extraction, and more).
  • 📐 OpenAPI 3.1 specification — machine-readable API schema. Generate clients in any language.
  • 🟦 vocametrix-js — official TypeScript / JavaScript SDK (npm install vocametrix).
  • 🤖 vocametrix-mcp — official MCP server for Claude, Cursor, Zed, Windsurf, and any MCP-compatible agent.

Contributing

git clone https://github.com/pmarmaroli/vocametrix-python
cd vocametrix-python
pip install -e ".[dev]"

# Regenerate the low-level client from the live OpenAPI spec
python tasks.py regenerate

# Run unit tests (no API key needed — all mocked)
pytest tests/unit/

# Run integration tests (real API calls — requires VOCAMETRIX_TEST_API_KEY)
pytest tests/integration/

The src/vocametrix/_generated/ directory is auto-generated. Do not edit it manually. All hand-written logic lives in src/vocametrix/client.py, _namespaces.py, _http.py, and exceptions.py.

License

The vocametrix SDK is released under the MIT License. You're free to use, modify, and redistribute the SDK source code.

Calling the Vocametrix API with this SDK requires an API key, which is issued with a paid Vocametrix account. The SDK code is free; the service is not. See pricing.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vocametrix-0.2.6.tar.gz (96.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vocametrix-0.2.6-py3-none-any.whl (233.2 kB view details)

Uploaded Python 3

File details

Details for the file vocametrix-0.2.6.tar.gz.

File metadata

  • Download URL: vocametrix-0.2.6.tar.gz
  • Upload date:
  • Size: 96.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vocametrix-0.2.6.tar.gz
Algorithm Hash digest
SHA256 897ac4821d04f893b2743dfee443afbf6d6e61c64b439e4b07eb698319b1b982
MD5 dc11e4ac9ca4e354b74714e9c963604d
BLAKE2b-256 46fe527a45d49742183402f433f8ddcd343694bebfb0935acf5bafc16f5a4ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for vocametrix-0.2.6.tar.gz:

Publisher: auto-release.yml on pmarmaroli/vocametrix-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vocametrix-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: vocametrix-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 233.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for vocametrix-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 af892d0ac97803d6d3f3b61b1d47bc062b9031f47f4d06cd5b9a364fe6ddb373
MD5 ec89bf21e53218c6d150bf805825778d
BLAKE2b-256 7b39cc3b0c6c9102768c98c1aeaf8528f7c24cbcdf87d45626c0e8190bb58720

See more details on using hashes here.

Provenance

The following attestation bundles were made for vocametrix-0.2.6-py3-none-any.whl:

Publisher: auto-release.yml on pmarmaroli/vocametrix-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page