The AssemblyAI Startup Program

The AssemblyAI Startup Program is designed for early-stage startups to innovate and build powerful products from voice data without financial constraints, using the industry-leading speech-to-text API.

Get up to $150,000 in free AssemblyAI credits

Access all of AssemblyAI’s latest features

Connect with a global community of innovators

Expore exclusive co-marketing opportunities

Review FAQs

Benchmarks
[@portabletext/react] Unknown block type "customersTestimonials", specify a component for it in the `components.types` prop

Frequently asked questions

The code to meaningful voice data

Partner with the leader in Speech AI to build powerful products with breakthrough industry impact.

1
2
3
4
5
6
import assemblyai as aai

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

print(transcript)
{
  "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 }
  ]
}