UNPKG

json-mock-kuitos

Version:

Mock a REST API just using JSON. An advanced fork of typicode/json-server

39 lines 617 B
{ "users": [ { "id": 1, "name": "therebelrobot", "location": "USA" }, { "id": 2, "name": "visiting-user", "location": "UK" } ], "posts": [ { "id": 3, "title": "Kuitos", "body": "The internet is cool!", "author": "therebelrobot", "userId": 4 } ], "comments": [ { "id": 1, "body": "some comment from author", "votes": 10, "postId": 1, "userId": 4 }, { "id": 2, "body": "some comment from visitor", "votes": 15, "postId": 1, "userId": 2 } ] }