API practice

Contains nested models User < Post < Comment

Vote model which adds votes to comments

  • /api/users to view all users
  • /api/users/1 shows user at ID
  • /api/users/1/posts shows posts that belong to user at ID
  • /api/users/1/posts/3 shows post at id if it belongs to user
  • /api/users/1/posts/3/comments shows comments for post at ID

https://api-practice.herokuapp.com/api/users Link to Heroku