Is there an API (officially or unofficially) for Google Voice? I would like to have an API to work with voicemails, send/receive SMS messages, initiate calls, etc. What is the Android client using? Something internal? Has anyone documented it?

link|improve this question

1  
A question to ask Google. Voice is still rather in private testing and most of SO would not have an account on Google Voice. – mauris Nov 3 '09 at 16:51
You may also want to look into VoiceXML en.wikipedia.org/wiki/VoiceXML – Pool Nov 3 '09 at 16:52
VoiceXML is not quite right, since Google Voice does almost no voice processing, just signaling and routing. – Adam Goode Nov 3 '09 at 16:53
An official API is not out yet. But, if you want to experiment with other services similar to Google Voice, check out twilio.com or aws.amazon.com/sns (SMS). – Artem Kalinchuk Dec 6 '11 at 15:26
feedback

closed as not constructive by casperOne 10 hours ago

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

8 Answers

up vote 12 down vote accepted

"pygooglevoice" can perform most of the voice functions from Python. It can send SMS. I've developed code to receive SMS messages, but the overhead is excessive given the current Google Voice interface. Each poll returns over 100K of content, so you'd use a quarter-gigabyte a day just polling every 30 seconds. There's a discussion on Google Code about this.

I've heard a rumor that a Google Voice API will appear in about two weeks, so it's worth waiting.

link|improve this answer
7  
~1 year later... still waiting for an official google voice api... – ina Jul 30 '10 at 5:25
6  
+1 year later...still not here. – nick Oct 4 '10 at 16:46
2  
it's almost 2010, come on google..... – Andre Dec 6 '10 at 10:31
23  
annnd it's 2011. Still no API. – Jordan Feldstein Feb 4 '11 at 20:54
22  
It is 2012. No API. – Xander Lamkins Jan 2 at 20:41
show 8 more comments
feedback

There isn't an official API, but this page might be useful: http://posttopic.com/topic/google-voice-add-on-development

link|improve this answer
2  
Sadly, this link is dead. – Robert P. Goldman Feb 16 at 21:58
feedback

There is a C# Google Voice API... there is limited documentation, however the download has an application that 'works' using the API that is included:

https://sourceforge.net/projects/gvoicedotnet/

link|improve this answer
Doesn't work :( – jitbit Jan 20 at 15:06
feedback

I looked for a C/C++ API for Google Voice for quite a while and never found anything close (the closest was a C# API). Since I really needed it, I decided to just write one myself:

http://github.com/mastermind202/GoogleVoice

I hope others find it useful. Feedback and suggestions welcome.

link|improve this answer
feedback

I needed a C# API and after spending hours looking for it (all I found was outdated and non-working) and unsuccessfully trying to port the PHP/Python/Java versions listed here (none worked either) I decided to create my own. It's SMS-only for now...

https://bitbucket.org/jitbit/sharpgooglevoice/wiki/Home

link|improve this answer
feedback

Be nice if there was a Javascript API version. That way can integrate w/ other AJAX apps or browser extensions/gadgets/widgets.

Right now, current APIs restrict to web app technologies that support Java, .NET, or Python, more for server side, unless may use Google Web Toolkit to translate Java code to Javascript.

link|improve this answer
So port it to javascript? – Dustin Fineout Dec 18 '11 at 13:48
Duh, great idea, now for someone to do so. I may try when I have time, not anytime soon. But a JS port may be restricted by XmlHttpRequest limitations within browser. So it will still work best in other unrestricted JS environments like node.js, Windows Scripting Host, Rhino engine, and browser extensions/add-ons/widgets. – David Feb 1 at 8:25
2  
Done. I am the author of github.com/amper5and/node-google-voice. – ampersand Apr 8 at 7:01
feedback

Well... These are PHP. There is an sms one from google here.

And github has one here.

Another sms one is here. However, this one has a lot more code, so it may take up more space.

link|improve this answer
feedback

You can implement a client in C: https://github.com/H2CO3/libsprec

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.