Qwen ASR · Video Generation

File TranscriptionNEW

📌 What is thisTranscribe a recorded audio file into timestamped text. Submit returns a taskId; poll for the result. On succeeded, resultUrl is the transcription file URL (JSON with text and word-level timestamps, valid 24h).
💡 When to useUse for meeting recordings, podcasts or long audio. fun-asr-mtl supports multiple languages.

Endpoints

UsageMethodPath
Submit taskPOST/api/cqt/generator/qwen
Query ResultGET/api/cqt/info/qwen?id={taskId}
Recommended polling intervalAll 4 models return a taskId on submit; poll by taskId until status = succeeded / failed (every 5-10s). qwen3-asr-flash is fast and usually reaches succeeded quickly.

Request Parameters

ParamTypeRequiredDescription
modelstringRequiredfun-asr / fun-asr-mtl (multilingual) / qwen3-asr-flash-filetrans
audioUrlstringRequiredInput audio file URL (replaces prompt; ASR has no prompt).
durationintegerRequired⚠️ Input audio duration in seconds — drives billing. Default 5; always pass the real length or billing is badly underestimated.
webhookUrlstringCompletion webhook URL (optional).

Request Example

curl -X POST https://api.cqtai.com/api/cqt/generator/qwen \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{ "model": "fun-asr", "audioUrl": "https://cdn.example.com/a.wav", "duration": 60 }'
# -> { "code":200, "data":"<taskId>" }

Response Example

{
  "code": 200,
  "data": {
    "id": "<taskId>",
    "status": "succeeded",
    "resultUrl": "https://.../transcription.json",
    "createTime": "2026-06-24 10:00:00",
    "completeTime": "2026-06-24 10:00:20"
  }
}

Billing & Credits

0.022 credits/sec (pre-charged by duration) (x your user rate). Auto-refunded on failure.