Just a few general comments.
Think about your audience.
- REST APIs are pretty hip but require basic understanding of HTTP.
- XMLRPC APIs are not as hip but there are clients in every language (even AppleScript :)).
In general I second REST as a choice because HTTP (beyond the learning curve) is easy to understand once you get it. It sometimes takes a while for people to realize that beside GET and POST there are more verbs (PUT, DELETE, HEAD). The O'Reilly book other people mentioned is a really great resource, or even the wikipedia entry on REST is a good start.
[BTW people, you may laugh ("REST is so easy!") but I am dealing with a client right now who put some .net developer ("I have seen HTTP in vb.net before!") on their integration project and despite us providing docs and explaining it step by step he does not get REST at all. I have to google for code snippets because he is unable to create a httpclient in his language of choice. And even then he sends data in GET, while we require PUT, and stuff like that. So I am just adding this to backup my concerns here.]
Just make sure that you do not shortcut and call your API REST while it is not RESTful - just like Flickr. Despite their claim to REST, their API is not.
Also, in the progress, (especially when you settle on REST) have a look at JSON for a transport format. It's very lightweight and most languages have tools to serialize data to JSON and to bring it back.