siegerts/kokoro-tts-82m

Kokoro-82M open-weight TTS. Returns audio + word-level timestamps.

Public
1.3K runs

Run siegerts/kokoro-tts-82m with an API

Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.

Input schema

The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.

Field Type Default value Description
text
string
Text to synthesize
voice
None
af_heart
Voice name
speed
number
1

Min: 0.1

Max: 5

Speed multiplier

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{
  "type": "object",
  "title": "Output",
  "required": [
    "audio",
    "words"
  ],
  "properties": {
    "audio": {
      "type": "string",
      "title": "Audio",
      "format": "uri"
    },
    "words": {
      "type": "array",
      "items": {
        "type": "object",
        "title": "WordTimestamp",
        "required": [
          "text",
          "start",
          "end"
        ],
        "properties": {
          "end": {
            "type": "number",
            "title": "End"
          },
          "text": {
            "type": "string",
            "title": "Text"
          },
          "start": {
            "type": "number",
            "title": "Start"
          }
        }
      },
      "title": "Words"
    }
  }
}