Sure,
i use the 2captcha API for all my captchas, so i explain it on this API. The HTTP POST request for SolveMedia Audio is nearly like the one from normal TextCaptcha:
[YOURCAPMONSTER_IP_AND_PORT]in.php?key=[ANY_KEY_YOU_USE]&method=base64&body=[BASE64_ENCRYPTED_MP3_BYTES]&CapMonsterModule=ZennoLab.AudioSolveMedia
=> RESPONDS: OK|[ID] or ERROR
=> with ID make HTTP GET REQUEST to [YOURCAPMONSTER_IP_AND_PORT]res.php?key=[ANY_KEY_YOU_USE]&action=get&id=[ID]
=> RESPONDS: OK|[CAPTCHA_SOLUTION]
- Of course you can make this request to the original url 2.captcha.com instead of the CM ip:port, i just prefer the call over ip-address
- Maybe its possible to make it with multipart in HTTP request, for me it only works with base64 mp3-data, because multipart throws error 'empty audio' or like that, so i recommend base64 method
So, i hope this helps you to get it work.If you need more help just tell me, i will do my best. I can give example in C# and PHP/HTML, too.