I am in the process of creating a RESTful API. I read
http://microformats.org/wiki/rest/urls
but this site doesn't give me enough "good" practice on designing my API. Specifically I will write an API (only GET methods that far) which will provide functions to convert geo-coordinates.
Example: A geohash is a single value representation of a coordinate, thus /convert/geohash/u09tvkx0.json?outputformat=latlong
makes sense. On the other hand /convert/latlong.xml?lat=65&long=13&outputformat=UTC requires two input values.
See my "question"? What makes a good API which requires more than one input parameter?
(Tried to "identify" good practice by "analysing" twitter & FF but failed)