Real-time or pre-recorded –
get speed and scale without sacrifice.

Scale up your business without scaling up costs or losing accuracy.
Give it a try.

Real-time
Pre-recorded

Real-time transcription

Got live audio? Get real-time transcription that’s actually in “real time” with <300 millisecond latency. Click the mic and give it a try.

Get a Free API Key

Pre-recorded transcription

Accurately transcribe the toughest audio blazingly fast: just 30 seconds to transcribe an hour. Select a file to try it.

Try Free With Your Own Audio
en
English

Click the mic to transcribe live in English or select another language.

Get Free API Key

Choose one:
NASA: First All Female Space Walk
00:00
00:00

[Speaker 0:] And, Jessica, Christina, we are so proud of you. I’m gonna do great today. We’ll be waiting for you here in a couple hours when you get home. I’m gonna hand you over to Stephanie now.

[Speaker 1:] Have a great great EVA. Drew, thank you so much. It’s been our pleasure working with you this morning, and working on getting my EV hat open. and I can report. It’s opened and stowed. Thank you, Drew. Thank you so much.

[Speaker 2:] Tika. On your GCMs, Take your power switches to bat, stagger switch throws, and expect a warning tone.

[Speaker 3:] Final steps before they begin the space launch. Copy. Check display switch functional. Tracy, how important is this this regarding it? There is Sounds like seems like a lot to remember on your own. Absolutely.

[Speaker 2:] Take power eighty one eighty two, two switches to off, o f f. And Christina and just could have enough work with their hands and feet and their brain outside that it really helps to have someone like Stephanie. New powerboat off. DCMs. This connect your SCUs from your DCMs and stow the SCUs in the pouch. So not only does Stephanie

[Speaker 3:] Thirty eight AM central time. A little ahead of schedule about twelve minutes, but That gets us started on today’s historic spacewalk. Andrew Morgan there. He’s been wishing the crew luck. He’s being made in pouch and DCM cover clothes.

[Speaker 2:] Copy. You need to.

Podcast: Deep Learning’s Effect on Science
00:00
00:00

[Speaker 0:] Yeah. I mean Welcome to the AI Show. I’m Scott Stephenson, cofounder of Deepgram. With me is Jeff Ward, a k a Susan. He’s a navy pilot, acclaimed dad joke We’ve never had you. Give a dad joke. We need to do that. Acclaimed dad joke writer. Yeah. Well, okay.

[Speaker 1:] Knock knock

[Speaker 0:] Who’s there?

[Speaker 1:] Spell

[Speaker 0:] Spell who?

[Speaker 1:] W H O

[Speaker 0:] Oh, good one. Tensor. That’s a real good one. He’s also an AI scientist at Deepgram on the AI show, we talk about all things AI. What is it? What can you do with it? How does it affect you? Where is it going? We’re live and ready to answer your questions. Comment on YouTube and Twitch or Tweet at Deepgram AI to join in. Today, we’re asking the question. Our big question How is machine learning or deep learning affecting science?

[Speaker 1:] Actually, I’m asking the question of you.

[Speaker 0:] Good. I’m ready to answer. What’s the question?

[Speaker 1:] For those that do not know, Scott here has a little bit of a science background

[Speaker 0:] a little bit

[Speaker 1:] and a little bit of machine learning and science background

[Speaker 0:] That’s true. Yeah.

[Speaker 1:] So so, Scott, can you at least give us a just give us the the the ten thousand foot overview of of a little bit of what you’ve done?

[Speaker 0:] Ten ten thousand foot overview is I’d have a PhD in particle physics, and I was

[Speaker 1:]Yes, sir. Yes.

[Speaker 0:] So doctor Scott But I was searching for dark matter, deep underground, in a government controlled region of China, basically a James Bond lair.

[Speaker 1:] I like it.

[Speaker 0:] Yep. We had to design the experiment and build the experiment, operate the experiment, take data, analyze the data, write a paper, you know. So this is what you do in experimental particle physics. And we did that searching for dark matter. Mhmm. And we did it with lots of computers, servers, CPUs, things like that, lots of copper, plastic, liquid Xenon cryogenic stuff, and the CPUs were used to do data analysis, and we were using, like, boosted decision trees and neural networks and other standard, like, statistics based cuts in order to figure out Was it a dark matter particle or not? So tons of signal signal noise search space. Yeah. Yeah

Call Center: Upgrade Service
00:00
00:00

[Speaker 0:] Thank you for calling premier phone service. This call may be recorded for quality and training purposes. My name is Beth, and I’ll be assisting you. How are you today?

[Speaker 1:] I’m pretty good. Thanks. How are you?

[Speaker 0:] I’m doing well. Thank you. May I have your name?

[Speaker 1:] Yeah. Sure. My name’s Tom Idol.

[Speaker 0:] Can you spell that last name for me?

[Speaker 1:] Yeah. Yeah. i d l e.

[Speaker 0:] Okay. l e at the end. I was picturing it idle, like American Idol, i b o l.

[Speaker 1:] Yeah. That that happens a lot. It’s not really a common name.

[Speaker 0:] Okay, mister Idol. How can I help you today?

[Speaker 1:] Yeah. I need some information on upgrading my service plan.

[Speaker 0:] Sure. I can absolutely help you with that today. Can you tell me what plan you have currently?

[Speaker 1:] I think it’s a silver plan. Let me get my classes so I can read this. Yeah. Yeah. It’s the silver plan.

[Speaker 0:] Okay. Alright. Silver plan. And how many people do you have on your plan right now?

[Speaker 1:] Three. I’ve got my brother, Billy, my mom cat, and I guess I count too. So yeah. That’s three.

[Speaker 0:] Great. And how can I help you with your plan today, sir? Oh, you can call me, Tom. There’s no date for this, sir.

[Speaker 0:] I’m sorry, Tom. It’s just an old habit. How can I help you with your plan?

[Speaker 1:] Well, on my plan right now, I can only have three people on it, and I’m wanting to add more. So I’m wondering if I can switch my plan up or upgrade it somehow.

[Speaker 0:] And how many more people are you wanting to add to your plan?

[Speaker 1:] Well, here’s the thing. I need to add three more people so far. I wanted to add my friend Margaret, my daughter, Anna, and my son Todd.

[Speaker 0:] Alright? We do have a few options that support six users. One is our gold, the other is our platinum plan.

[Speaker 1:] Okay. So how much are those gonna cost me?

[Speaker 0:] Well, the gold plan is

Python
JavaScript
.Net
PHP
Ruby
cURL
from deepgram import Deepgram
import asyncio
import json

DEEPGRAM_API_KEY = "YOUR_DEEPGRAM_API_KEY"


async def main():

    # Initialize the Deepgram SDK
    deepgram = Deepgram(DEEPGRAM_API_KEY)

    FILE = "URL_TO_YOUR_FILE"

    source = {
        'url': FILE
    }

    response = await asyncio.create_task(
        deepgram.transcription.prerecorded(
            source
        )
    )

    print(json.dumps(response, indent=4))

asyncio.run(main())
const { Deepgram } = require('@deepgram/sdk')

const deepgram = new Deepgram(DEEPGRAM_API_KEY)
const audioSource = { url: "URL_TO_YOUR_FILE" }

const response = await deepgram.transcription.preRecorded(audioSource)

console.dir(response, {depth: null})
using Deepgram;

var deepgram = new DeepgramClient(new Credentials("YOUR_DEEPGRAM_API_KEY"));
var response = await deepgram.Transcription.Prerecorded.GetTranscriptionAsync(
    new UrlSource("URL_TO_YOUR_FILE"));
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.deepgram.com/v1/listen",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "{\"url\":\"string\"}",
  CURLOPT_HTTPHEADER => [
    "Authorization: Token ",
    "content-type: application/json"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.deepgram.com/v1/listen")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Post.new(url)
request["content-type"] = 'application/json'
request["Authorization"] = 'Token '
request.body = "{\"url\":\"string\"}"

response = http.request(request)
puts response.read_body
curl --request POST \
  --url 'https://api.deepgram.com/v1/listen' \
  --header 'Authorization: Token ' \
  --header 'content-type: application/json' \
  --data '{"url":"string"}'
Download response

Get Free API Key

AI speech features for every use case

Transcription and Understanding features that work out-of-the-box. No data collection, labeling, or infrastructure setup required. Just append your API call with {feature}=true. Leverage Speech AI models to transcribe, detect, remove and format phone calls, meetings and other unstructured audio data.

Explore All Features

Audio in. Accurate text out.

Transcription

From high fidelity, single-speaker dictation to staticky, acronym-heavy ground-to-space communications, Deepgram delivers accurate transcriptions you can actually read.

Explore AI Transcription

Context you can count on.

Understanding

Natural Language Understanding built on accurate, reliable speech-to-text. Detect languages, summarize text, differentiate speakers, identify sentiment, and more.

Explore Understanding

Transcribe in +30 languages and dialects.

We speak your customer’s language with coverage for over 30 language varieties and use-case modules—with more added regularly

Learn More

Call the most accurate use-case model for your domain.

Specialized models for phone calls, meetings, conversational AI, and more. Don’t see a model that works for you? Try our general model, or train a tailored model for your needs.

Learn More

 

Deepgram gives me so much trust, confidence, and relief…so I can focus on building my product.”

 
View Case Study

It just works out of the box, with the tools that developers need.

Deepgram just works and integrates with applications and protocols you’re used to using. Stop wasting time with spaghetti code and just get to building.

Try it Free

Deploy on-prem, cloud, or VPC.

Our standard deployment is within our cloud, but for more sensitive voice and transcription data, we also offer an on-premises installation or a private cloud installation, where you can control the entire environment. Deepgram is Kubernetes-ready with Docker images, and has pre-built VM images to enable rapid deployment to most cloud providers. Train models and deploy anywhere – on premises or in the cloud.

View Security

See what developers are saying about Deepgram.

Join the Community

The Deepgram API covers the languages we need (and then some), integrates easily with our audio source, is accurate enough, and delivers results quickly. The documentation made it easy to design our code, and the very helpful support engineers were quick to respond to questions and to help us debug our initial efforts.

The speed and accuracy of Deepgram API is the best I have seen.

We provide Fraud Detection services to the insurance industry using intelligent and compliant AI-driven Digital Speech DNA solutions over Blockchain. Using Deepgram allowed us to process a large volume of data quickly and accurately. In addition, Deepgram has the ability to detect different accents which improved the overall accuracy of our scoring module.

The low latency of the response with high accuracy from the websocket connection is the most distinguishing feature from other providers. If this feature was not there then it’s yet another Speech to Text service. I really love the community around it and the team which is driving it, kudos to the DevRel team.

Great speech-to-text results in seconds.

As a software developer, there is plenty to like about Deepgram – complete and easy to follow documentation; easy to use API that allows for quick language-independent implementation; great follow-up support; multiple models including one specifically for telephone-based dictation; not only one of the best but also one of the least expensive speech rec services available; a generous free number of credits are provided at sign-up – plenty enough for experimentation and testing of your application.

We have tested a number of transcription APIs, and Deepgram has consistently come out as the most accurate for our use case. whilst offering a nice Python interface for batch operations. The API schemas are also excellent.

The Best Audio Transcription Service in the Wild!

I have been using Deepgram’s API for a couple of months now, and I am beyond impressed with the accuracy. It is so much better than other voice recognition services that I have tried in the past. I love that it supports so many languages, which is perfect for me because I work with clients worldwide. The best part is that its API is pretty intuitive, which means it doesn’t require any training, which saves me tons of time. I would recommend this to anyone who needs a speech-to-text service!

The ease of use! The simple but powerful APIs make it so quick and easy to start creating something. Not only were the tools very easy to use but they were also incredibly fast and accurate. I came across no translation issues when using the product despite testing it in noisy and non-optimal conditions. And the results were almost instantaneous. Other tools I had looked at were either very restrictive or not very accurate so it was refreshing to find an SDK that gave the flexibility to do whatever I want without compromising on speech and accuracy.

An Automated Speech API with Intuitive Documentation

My favorite part about using Deepgram was the ease of learning. The API documentation is complete and intuitive, and the tutorials in the console left me feeling confident that I could use the API and SDK in either Node or Python projects.