Audio API
Unified Routes
text
GET /v1/models
POST /v1/audio/transcriptions
POST /v1/audio/translations
POST /v1/audio/speechQuery Available Models
Query available models with the token under its current group:
bash
curl https://logox.top/v1/models \
-H "Authorization: Bearer sk-logox-your-key"Text-to-Speech Example
bash
curl https://logox.top/v1/audio/speech \
-H "Authorization: Bearer sk-logox-your-key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-mini-tts",
"voice": "alloy",
"input": "Welcome to the Logox documentation site"
}'