Install
openclaw skills install whisper-tailnet-apiConsume the shared Whisper speech-to-text API over Tailnet at http://100.92.116.99:8765 using OpenAI-compatible audio transcription endpoint (/v1/audio/transcriptions). Use when an agent needs remote transcription checks, request examples, language hints, timing tests, or troubleshooting response/output.
openclaw skills install whisper-tailnet-apiUse this guide to call the shared Whisper server.
http://100.92.116.99:8765GET /healthPOST /v1/audio/transcriptions (raw binary body)curl -sS http://100.92.116.99:8765/health
curl -sS -X POST \
--data-binary @/path/to/audio.wav \
"http://100.92.116.99:8765/v1/audio/transcriptions?ext=.wav"
time curl -sS -X POST \
--data-binary @/path/to/audio.wav \
"http://100.92.116.99:8765/v1/audio/transcriptions?ext=.wav"
/transcribe on this host.ext query (example: .wav, .mp3, .m4a).language query when known to improve accuracy.{
"text": "transcribed text...",
"model": "turbo"
}