Developer Quickstart

Learn the basics and make your first request with the Fish Audio API.

Get started
curl --request POST \
  --url https://api.fish.audio/v1/tts \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --header 'model: s1' \
  --data '{
  "text": "(happy) It brings me such joy to connect with you",
  "temperature": 0.9,
  "top_p": 0.9,
  "reference_id": "8ef4a238714b45718ce04243307c57a7",
  "normalize": true,
  "format": "mp3",
  "latency": "normal"
}' --output output.mp3