Announcing our $50M Series C to build superhuman Speech AI models

Turn voice data into

with our leading Speech AI models

Built by AI experts, AssemblyAI’s Speech AI models include accurate speech-to-text for voice data (such as calls, virtual meetings, and podcasts), speaker detection, sentiment analysis, chapter detection, PII redaction, and more.

Quickly build AI
products with voice data

Leverage our AI models that continuously push the state-of-the-art in Automatic Speech Recognition (ASR), Speaker Diarization, Speaker PII Redaction, Speech Summarization, and more. Transcribe speech to text and accurately analyze meetings, phone calls, podcasts, live audio streams, and other voice data.

Explore models
1
2
3
4
5
6
7
import assemblyai as aai
import json

transcriber = aai.Transcriber()
transcript = transcriber.transcribe(URL, config)

print(json.dumps(transcript, indent=2))
1
2
3
4
5
6
7
8
9
10
11
12
{
  "id": "6rlr37h8f4-e310-4e23-bbf3-ea5f347dc684",
  "language_code": "en_us",
  "status": "completed",
  "text": "Runner's knee is a condition characterized by pain behind or around the kneecap...",
  "confidence": 0.98122,
  "audio_duration": 3200,
  "words": [
    { "text": "Runner's", "start": 0, "end": 550, "speaker": "A", "confidence": 0.98113 },
    { "text": "knee", "start": 580, "end": 1130, "speaker": "A", "confidence": 0.95417 }
  ]
}
Our customers

Leading companies choose AssemblyAI to build innovative new AI products with voice data

“With AssemblyAI, we not only get quality call summaries and sentiment analysis, but also a trusted partner that supports us in enhancing the value we deliver to our customers.”

Ryan Johnson, Chief Product Officer, CallRail

Play video

Loop Media Partners With AssemblyAI To Launch Its AI-Powered Brand Safety Solution

Read more
See customer stories
Why AssemblyAI

Launch cutting-edge products with fully featured Speech AI models

Easy to integrate

Developers get immediate access to our API, and our documentation is crafted with detailed code examples and explanations, making it easy to quickly integrate Speech AI into their applications.

Learn more
Pricing that scales

Choose the AI models for your use case and only pay for what you use. We work with you to ensure pricing scales as you grow.

View pricing
Always up-to-date

Stay on top of the latest AI breakthroughs. Our Speech AI team of researchers and engineers is constantly improving and updating our AI models so you always have access to state-of-the-art AI technology.

View blog
24/7 customer support

Leverage our team of AI experts who can help build with you and accelerate your product roadmap.

Join our Discord
Start building with AssemblyAI

Get started in seconds

1
2
3
4
5
6
import assemblyai as aai

transcriber = aai.Transcriber()
transcript = transcriber.transcribe(URL, config)

print(transcript.text)