{ "opencollection": "1.0.0", "info": { "name": "TrueFoundry AI Gateway Audio API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Audio", "type": "folder" }, "items": [ { "info": { "name": "Create Speech", "type": "http" }, "http": { "method": "POST", "url": "https://app.truefoundry.com/api/llm/audio/speech", "body": { "type": "json", "data": "{}" } }, "docs": "Generate audio speech from text input (text-to-speech)." }, { "info": { "name": "Create Transcription", "type": "http" }, "http": { "method": "POST", "url": "https://app.truefoundry.com/api/llm/audio/transcriptions", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "model", "type": "text", "value": "" }, { "name": "language", "type": "text", "value": "" }, { "name": "prompt", "type": "text", "value": "" }, { "name": "response_format", "type": "text", "value": "" } ] } }, "docs": "Transcribe audio to text (speech-to-text)." } ] } ], "bundled": true }