showing results for - "examples of json apis"
Luigi
25 Sep 2019
1{
2  "userId": 1,
3  "id": 1,
4  "title": "delectus aut autem",
5  "completed": false
6}
Josefina
26 Jan 2018
1HTTP/1.1 200 OK
2Content-Type: application/vnd.api+json
3
4{
5  "meta": {
6    "totalPages": 13
7  },
8  "data": [
9    {
10      "type": "articles",
11      "id": "3",
12      "attributes": {
13        "title": "JSON:API paints my bikeshed!",
14        "body": "The shortest article. Ever.",
15        "created": "2015-05-22T14:56:29.000Z",
16        "updated": "2015-05-22T14:56:28.000Z"
17      }
18    }
19  ],
20  "links": {
21    "self": "http://example.com/articles?page[number]=3&page[size]=1",
22    "first": "http://example.com/articles?page[number]=1&page[size]=1",
23    "prev": "http://example.com/articles?page[number]=2&page[size]=1",
24    "next": "http://example.com/articles?page[number]=4&page[size]=1",
25    "last": "http://example.com/articles?page[number]=13&page[size]=1"
26  }
27}
28