RESTful Design: Paging Collections - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:20:05Z http://stackoverflow.com/feeds/question/501013 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/501013/restful-design-paging-collections 3 RESTful Design: Paging Collections Koen Bok 2009-02-01T15:41:08Z 2009-03-03T21:42:27Z <p>I am designing a REST api that needs paging (per x) enforces from the server side.</p> <p>What would be the right way to page through any collection of resources:</p> <p>Option 1:</p> <pre><code>GET /resource/page/&lt;pagenr&gt; GET /resource/tags/&lt;tag1&gt;,&lt;tag2&gt;/page/&lt;pagenr&gt; GET /resource/search/&lt;query&gt;/page/&lt;pagenr&gt; </code></pre> <p>Option 2:</p> <pre><code>GET /resource/?page=&lt;pagenr&gt; GET /resource/tags/&lt;tag1&gt;,&lt;tag2&gt;?page=&lt;pagenr&gt; GET /resource/search/&lt;query&gt;?page=&lt;pagenr&gt; </code></pre> <p>If 1, what should I do with GET /resource? Redirect to /resource/page/0, reply with some error or reply with the exact same as /resource/page/0 without redirecting?</p> http://stackoverflow.com/questions/501013/restful-design-paging-collections/501025#501025 1 Answer by Allain Lalonde for RESTful Design: Paging Collections Allain Lalonde 2009-02-01T15:47:38Z 2009-02-01T15:47:38Z <p>With my limited understanding of what REST is about, then the following might be the "most" restful. </p> <pre><code>GET /resource/?page=&lt;pageenr&gt;&amp;asof=&lt;datetime&gt; </code></pre> <p>Since the content of the representation would never change unexpectedly, and caching could be used.</p> <p>But to actually answer your question, I think the parameter page is the preferred method.</p> http://stackoverflow.com/questions/501013/restful-design-paging-collections/523561#523561 0 Answer by LiorH for RESTful Design: Paging Collections LiorH 2009-02-07T10:09:53Z 2009-02-07T10:09:53Z <p>I'd go with option (2). Why?</p> <ol> <li>You can later add page-size parameter to the query so the client can specify the page size.</li> <li>In case no page parameter was specified you can just return the first page (the default). In many cases you client might need only the first page, so it simplifies the protocol between client and server.</li> </ol> http://stackoverflow.com/questions/501013/restful-design-paging-collections/608345#608345 0 Answer by Bjorn for RESTful Design: Paging Collections Bjorn 2009-03-03T21:42:27Z 2009-03-03T21:42:27Z <p>What the URI looks like is not the most important part. What you should be thinking about instead is how it is presented to the user. A page should for example have a link to the "next" page and another link to the "previous" page (if there is one). Take a look at <a href="http://tools.ietf.org/html/rfc5005" rel="nofollow">RFC 5005 Feed Paging and Archiving</a></p>