flow-router-sttlisted
Install: claude install-skill flowork-os/Flowork-OS
# flow_router — Speech-to-text
```bash
curl -X POST $FLOW_ROUTER_URL/v1/audio/transcriptions \
-H "Authorization: Bearer $FLOW_ROUTER_KEY" \
-F file=@audio.mp3 \
-F model=whisper-1
```
Response: `{ "text": "..." }`.
## Discover STT models
```bash
curl $FLOW_ROUTER_URL/v1/models/stt | jq '.data[].id'
```