Deepgram · Schema

AudioUrlRequest

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
url string URL of the audio file to transcribe.
View JSON Schema on GitHub

JSON Schema

deepgram-audiourlrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AudioUrlRequest",
  "title": "AudioUrlRequest",
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the audio file to transcribe."
    }
  }
}