Reference
GET
/reference/voices

Every voice a brief can name in voiceId, with a preview clip. The provider is what voiceProvider expects: gemini voices are the premium expressive tier and cost more per minute than openai ones.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/reference/voices"
{  "data": [    {      "id": "Enceladus",      "name": "Ethan",      "description": "Warm, breathy and emotional",      "provider": "gemini",      "previewUrl": "https://cdn.shortfast.com/uploads/voice-previews/ethan.mp3"    },    {      "id": "nova",      "name": "Nova",      "description": "Friendly and upbeat",      "provider": "openai",      "previewUrl": "https://cdn.openai.com/API/docs/audio/nova.wav"    }  ]}