vote up 4 vote down star
4

Can you suggest some good example of some real-world and really well-done REST web api?

flag

62% accept rate

7 Answers

vote up 5 vote down check

Atom Publishing Protocol

link|flag
vote up 5 vote down

I suggest that one should read, at least, the following blog posts by Roy T. Fielding before concluding about REST APIs

link|flag
vote up 2 vote down

Amazon's REST API and Google's Search REST API are both good examples. eBay and PayPal also offer RESTful APIs, but I can't say that I've used them.

link|flag
vote up 2 vote down

I've been impressed with Netflix: http://developer.netflix.com/

link|flag
vote up 2 vote down

Sun Cloud API. One of the few hypertext-driven (and therefore RESTful) APIs I know of.

link|flag
vote up 1 vote down

After Maglob's pointer to the AtomPub and some further research, I find Google Data APIs to be quite an inspiring source of information about how to structure RESTful web APIs in a proper way (with exploiting all the benefits of the technologies that underlie it).

link|flag
vote up 0 vote down

Twitter offers RESTful APIs. As per Twitter documentation the Twitter API conforms vaguely to the design principles of Representational State Transfer (REST).

link|flag
3  
Twitter's API is not RESTful because they use application/xml and a custom vocabulary. That fails the self-descriptive constraint. Also there is very little use of hypermedia within their representations. Prior knowledge of multiple endpoints is required to access all the features of the API. – Darrel Miller May 29 at 0:01

Your Answer

Get an OpenID
or

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