{ "opencollection": "1.0.0", "info": { "name": "CometAPI Unified 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://api.cometapi.com/v1/audio/speech", "body": { "type": "json", "data": "{}" } }, "docs": "Synthesize speech audio from text (TTS)." }, { "info": { "name": "Transcribe audio", "type": "http" }, "http": { "method": "POST", "url": "https://api.cometapi.com/v1/audio/transcriptions", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "model", "type": "text", "value": "" }, { "name": "language", "type": "text", "value": "" } ] } }, "docs": "Transcribe an audio file to text using Whisper-class models." } ] } ], "bundled": true }