Deepgram · Schema

SpeakRequest

Artificial IntelligenceSpeech-To-TextText-To-SpeechTranscriptionVoice AI

Properties

Name Type Description
text string Text content to convert to speech.
View JSON Schema on GitHub

JSON Schema

deepgram-speakrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpeakRequest",
  "title": "SpeakRequest",
  "type": "object",
  "required": [
    "text"
  ],
  "properties": {
    "text": {
      "type": "string",
      "description": "Text content to convert to speech.",
      "minLength": 1
    }
  }
}