Getting started

Integrating our API is simple and easy. With a valid API key, you can quickly generate your first audio file by running the following curl command in your shell/terminal

curl --location --request POST 'https://api.wellsaidlabs.com/v1/tts/stream' \
--header 'X-Api-Key: YOUR_API_KEY' \
--header 'Accept: audio/mpeg' \
--header 'Content-Type: application/json' \
--data-raw '{
  "text": "Hello world!",
  "speaker_id": "3"
}' > hello_world.mp3

Watch as we demonstrate how to build an application with WellSaid API