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
Explore exclusive co-marketing opportunities
Up to $150,000 in Free AssemblyAI Credits
Get started quickly building unique new products and services on the industry-leading Speech AI technology.
Redefine what’s possible with voice data—all on one seamless API that evolves ahead of the industry and handles the heavy lifting.
Access to exclusive co-marketing opportunities
Expand the reach of your product with exclusive co-marketing opportunities.
- Get featured on our website, blogs, and social media platforms like the AssemblyAI YouTube channel with over 150k+ subscribers and our weekly newsletter with over 200k+ subscribers.
- Invites to exclusive events like Founders dinners, Startup Week, hackathons, and meetups.
Connect with a global community of innovators
Connect with fellow AI leaders and disruptors through our exclusive events and partner network.
- Connect with fellow Founders
- Hear from AI leaders and disruptors
- Round-the-clock technical support via slack
- Access to 1:1 technical sessions with Solutions Architects
- Pitch to investors and VCs
- Funding and pitch workshops
Industry-leading Speech AI, on a developer-first API
Get access to the full suite of industry-leading SpeechAI technology to build and scale your products.
The AI is the limit. Make sure you build on the best.
Frequently asked questions
What are the eligibility requirements?
What happens after I apply?
Can existing AssemblyAI customers apply?
Will my credits expire?
What can I use AssemblyAI credits for?
Are there concurrency (feature) limits on the program?
Does AssemblyAI have a startup or developer community I can be a part of?
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 }
]
}