vote up 9 vote down star
6

I'm going to build an API for a web app and I'm interested in what people can suggest as good practices.

I'm already planning to make it versioned (version 1 can only control certain aspects of the system, version 2 could control more, but this may need a change in the way authentication is performed that would be incompatible with version 1), and the authentication will be distinct from the standard username/password people use to log in (if someone does use a malicious tool it won't open them up to full impersonation, just whatever the api allows).

Does anyone have further ideas, or examples of sites with particularly good APIs you have used?

flag

75% accept rate

4 Answers

vote up 4 vote down check

Read the RESTful Web Services book, which give you a good overview of how to use REST in practice, and get to up to speed quickly enough to get started now, with some confidence. This is more useful than just looking at an existing API, because it also discusses design choices and trade-offs.

link|flag
vote up 4 vote down

Use REST.

RESTful web services architecture is easy to implement and uses the strengths and semantics of HTTP for what they were intended. It's resource-oriented, just like the web itself.

Amazon Web Services, Google and many others offer REST APIs to interact with their products.

link|flag
vote up 4 vote down

I would take a look at proven APIs:

  1. Digg API
  2. YouTube API
  3. Twitter API

There's a lot of argument about whether these APIs are "good" but I think their success is demonstrated, and they're all easy to use.

link|flag
vote up 2 vote down

Use REST.

Read up on standards for APIs, or copy the ideas from one of the popular ones.

Be careful when authenticating users.

Start very very simple.

Build a site that uses your API (even if it's not useful) to check things work. Perhaps you could build a mobile version of the site or something that forces you to use the API in a lot of depth.

link|flag

Your Answer

Get an OpenID
or

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