1GET http://path.to.my.api/posts?sort=["title","ASC"]&range=[0, 4]&filter={"author_id":12}
2
3HTTP/1.1 200 OK
4Content-Type: application/json
5Content-Range: posts 0-4/27
6[
7 { "id": 126, "title": "allo?", "author_id": 12 },
8 { "id": 127, "title": "bien le bonjour", "author_id": 12 },
9 { "id": 124, "title": "good day sunshine", "author_id": 12 },
10 { "id": 123, "title": "hello, world", "author_id": 12 },
11 { "id": 125, "title": "howdy partner", "author_id": 12 }
12]
13