RESTful URL design for search - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T20:39:36Z http://stackoverflow.com/feeds/question/207477 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/207477/restful-url-design-for-search 9 RESTful URL design for search Parand 2008-10-16T04:51:20Z 2009-07-20T18:52:20Z <p>I'm looking for a reasonable way to represent searches as a RESTful URLs.</p> <p>The setup: I have two models, Cars and Garages, where Cars can be in Garages. So my urls look like:</p> <pre><code>/car/xxxx xxx == car id returns car with given id /garage/yyy yyy = garage id returns garage with given id </code></pre> <p>A Car can exist on its own (hence the /car), or it can exist in a garage. What's the right way to represent, say, all the cars in a given garage? Something like:</p> <pre><code>/garage/yyy/cars ? </code></pre> <p>How about the union of cars in garage yyy and zzz?</p> <p>What's the right way to represent a search for cars with certain attributes? Say: show me all blue sedans with 4 doors :</p> <pre><code>/car/search?color=blue&amp;type=sedan&amp;doors=4 </code></pre> <p>or should it be /cars instead?</p> <p>The use of "search" seems inappropriate there - what's a better way / term? Should it just be:</p> <pre><code>/cars/?color=blue&amp;type=sedan&amp;doors=4 </code></pre> <p>Should the search parameters be part of the PATHINFO or QUERYSTRING?</p> <p>In short, I'm looking for a good guide/tutorial for cross-model REST url design, and for search.</p> <p>[Update] I like Justin's answer, but he doesn't cover the multi-field search case:</p> <pre><code>/cars/color:blue/type:sedan/doors:4 </code></pre> <p>or something like that. How do we go from</p> <pre><code>/cars/color/blue </code></pre> <p>to the multiple field case?</p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/207493#207493 13 Answer by Justin Bozonier for RESTful URL design for search Justin Bozonier 2008-10-16T05:03:22Z 2008-10-16T18:32:43Z <p>My advice would be this:</p> <pre><code>/garages Returns list of garages (think JSON array here) /garages/yyy Returns specific garage /garage/yyy/cars Returns list of cars in garage /garages/cars Returns list of all cars in all garages (may not be practical of course) /cars Returns list of all cars /cars/xxx Returns specific car /cars/colors Returns lists of all posible colors for cars /cars/colors/red,blue,green Returns list of cars of the specific colors (yes commas are allowed :) ) </code></pre> <p>Edit:</p> <pre><code>/cars/colors/red,blue,green/doors/2 Returns list of all red,blue, and green cars with 2 doors. /cars/type/hatchback,coupe/colors/red,blue,green/ Same idea as the above but a lil more intuitive. /cars/colors/red,blue,green/doors/two-door,four-door All cars that are red, blue, green and have either two or four doors. </code></pre> <p>Hopefully that gives you the idea. Essentially your Rest API should be easily discoverable and should enable you to browse through your data. Another advantage with using URLs and not query strings is that you are able to take advantage of the native caching mechanisms that exist on the web server for HTTP traffic.</p> <p>Here's a link to a page describing the evils of query strings in REST: <a href="http://209.85.173.104/search?q=cache:SQSlLYecB0gJ:rest.blueoxen.net/cgi-bin/wiki.pl%3FQueryStringsConsideredHarmful+rest+with+query+strings&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;gl=us&amp;client=safari" rel="nofollow">http://209.85.173.104/search?q=cache:SQSlLYecB0gJ:rest.blueoxen.net/cgi-bin/wiki.pl%3FQueryStringsConsideredHarmful+rest+with+query+strings&amp;hl=en&amp;ct=clnk&amp;cd=1&amp;gl=us&amp;client=safari</a></p> <p>I used Google's cache because the normal page wasn't working for me here's that link as well: <a href="http://rest.blueoxen.net/cgi-bin/wiki.pl?QueryStringsConsideredHarmful" rel="nofollow">http://rest.blueoxen.net/cgi-bin/wiki.pl?QueryStringsConsideredHarmful</a></p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/208090#208090 3 Answer by Peter Hilton for RESTful URL design for search Peter Hilton 2008-10-16T10:52:48Z 2008-10-16T10:52:48Z <p>Justin's answer is probably the way to go, although in some applications it might make sense to consider a particular search as a resource in its own right, such as if you want to support named saved searches:</p> <pre><code>/search/{searchQuery} </code></pre> <p>or </p> <pre><code>/search/{savedSearchName} </code></pre> http://stackoverflow.com/questions/207477/restful-url-design-for-search/610952#610952 0 Answer by Nate for RESTful URL design for search Nate 2009-03-04T15:02:54Z 2009-03-04T15:02:54Z <p>Though I like Justin's response, I feel it more accurately represents a filter rather than a search. What if I want to know about cars with names that start with cam? <br /> <br /> The way I see it, you could build it into the way you handle specific resources: <br /> /cars/cam* <br /> <br /> Or, you could simply add it into the filter: <br /> /cars/doors/4/name/cam*/colors/red,blue,green <br /> <br /> Personally, I prefer the latter, however I am by no means an expert on REST (having first heard of it only 2 or so weeks ago...)</p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/926706#926706 5 Answer by Doug D for RESTful URL design for search Doug D 2009-05-29T15:48:13Z 2009-05-29T15:48:13Z <p>Although have the parameters in the path has some advantages, there are, IMO, some outweighing factors.</p> <ul> <li><p>Not all characters needed for a search query are permitted in a URL. Most punctuation and Unicode characters would need to be URL encoded as a query string parameter. I'm wrestling with the same problem. I would like to use XPath in the URL, but not all XPath syntax is compatible with a URI path. So for simple paths, /cars/doors/driver/lock/combination would be appropriate to locate the 'combination' element in the driver's door XML document. But /car/doors[id='driver' and lock/combination='1234'] is not so friendly.</p></li> <li><p>I think there is a difference between filtering a resource based on one of its attributes and specifying a resource. </p> <p>For example, since</p> <p>/cars/colors returns a list of all colors for all cars (the resource returned is a collection of color objects)</p> <p>/cars/colors/red,blue,green would return a list of color objects that are red, blue or green, not a collection of cars.</p> <p>To return cars, the path would be</p> <p>/cars?color=red,blue,green or /cars/search?color=red,blue,green</p></li> <li><p>It is more difficult to read because name/value pairs are not isolated from the rest of the path, which is not name/value pairs. </p></li> </ul> <p>One last comment. I prefer '/garages/yyy/cars' (always plural) to '/garage/yyy/cars' (perhaps it was a typo in the original answer) because it avoid changing the path between singular and plural. For words with an added 's', it's not so bad, but changing /person/yyy/friends to /people/yyy seems cumbersome.</p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/926793#926793 0 Answer by Rich Apodaca for RESTful URL design for search Rich Apodaca 2009-05-29T16:03:41Z 2009-05-29T16:03:41Z <p>To expand on Peter's answer - you could make Search a first-class resource:</p> <pre><code>POST /searches # create a new search GET /searches # list all searches (admin) GET /searches/{id} # show the results of a previously-run search DELETE /searches/{id} # delete a search (admin) </code></pre> <p>The Search resource would have fields for color, make model, garaged status, etc and could be specified in XML, JSON, or any other format. Like the Car and Garage resource, you could restrict access to Searches based on authentication. Users who frequently run the same Searches can store them in their profiles so that they don't need to be re-created. The URLs will be short enough that in many cases they can be easily traded via email. These stored Searches can be the basis of custom RSS feeds, and so on.</p> <p>There are many possibilities for using Searches when you think of them as resources.</p> <p>The idea is explained in more detail in this <a href="http://railscasts.com/episodes/111-advanced-search-form" rel="nofollow">Railscast</a>.</p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/1081720#1081720 1 Answer by pbreitenbach for RESTful URL design for search pbreitenbach 2009-07-04T07:13:55Z 2009-07-04T07:13:55Z <p>For the searching, go ahead and use a regular old search:</p> <pre><code>/car-search?color=blue&amp;type=sedan&amp;doors=4 </code></pre> <p>An advantage to regular querystrings is that they are standard and widely understood and that they can be generated from form-get.</p> http://stackoverflow.com/questions/207477/restful-url-design-for-search/1155254#1155254 0 Answer by Wahnfrieden for RESTful URL design for search Wahnfrieden 2009-07-20T18:52:20Z 2009-07-20T18:52:20Z <p>This is not REST. You cannot define URIs for resources inside your API. Resource navigation must be hypertext-driven. It's fine if you want pretty URIs and heavy amounts of coupling, but just do not call it REST, because it directly violates the constraints of RESTful architecture.</p> <p>See this <a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">article</a> by the inventor of REST.</p>