{"endpoints":{"GET /api":{"description":"serves up a json representation of all the available endpoints of the api"},"GET /api/topics":{"description":"serves an array of all topics","queries":[],"exampleResponse":{"topics":[{"slug":"football","description":"Footie!"}]}},"GET /api/articles":{"description":"serves an array of all articles","queries":["sort_by","order","limit","p"],"exampleResponse":{"articles":[{"title":"Seafood substitutions are increasing","topic":"cooking","author":"weegembump","created_at":"2018-05-30T15:59:13.341Z","votes":0,"comment_count":6}]}},"GET /api/articles/:article_id":{"description":"serves article object according to given id","exampleResponse":{"article":{"title":"Seafood substitutions are increasing","topic":"cooking","author":"weegembump","created_at":"2018-05-30T15:59:13.341Z","votes":0,"comment_count":6}}},"GET /api/articles/:article_id/comments":{"description":"serves array of comment objects according to given article id","queries":["limit","p"],"exampleResponse":{"comments":[{"comment_id":10,"article_id":3,"body":"git push origin master","votes":0,"author":"icellusedkars","created_at":"2020-06-20T07:24:00.000Z"}]}},"POST /api/articles/:article_id/comments":{"description":"adds a comment to an article according to given article id","exampleResponse":{"comments":{"comment_id":35,"article_id":3,"body":"git push origin master","votes":0,"author":"icellusedkars","created_at":"2020-06-20T07:24:00.000Z"}}},"PATCH /api/articles/:article_id/":{"description":"updates an article's votes according to given article id","exampleResponse":{"article":{"article_id":1,"title":"Living in the shadow of a great man","author":"butter_bridge","topic":"mitch","body":"I find this existence challenging","created_at":"2020-07-09T20:11:00.000Z","votes":103,"article_img_url":"https://images.pexels.com/photos/158651/news-newsletter-newspaper-information-158651.jpeg?w=700&h=700"}}},"DELETE /api/comments/:comment_id":{"description":"deletes a comment according to given comment id","exampleResponse":{}},"GET /api/users":{"description":"serves an array of all users","exampleResponse":{"users":[{"username":"butter_bridge","name":"jonny","avatar_url":"https://www.healthytherapies.com/wp-content/uploads/2016/06/Lime3.jpg"}]}},"GET /api/users/:username":{"description":"serves a user object of given username","exampleResponse":{"user":{"username":"butter_bridge","name":"jonny","avatar_url":"https://www.healthytherapies.com/wp-content/uploads/2016/06/Lime3.jpg"}}},"PATCH /api/comments/:comment_id":{"description":"updates a comment's votes according to given comment id","exampleResponse":{"comment":{"comment_id":35,"article_id":3,"body":"git push origin master","votes":10,"author":"icellusedkars","created_at":"2020-06-20T07:24:00.000Z"}}},"POST /api/topics":{"description":"adds a new topic according to given data","exampleResponse":{"topic":{"slug":"dog","description":"not quite as cool as cats","img_url":"https://www.healthytherapies.com/wp-content/uploads/2016/06/Lime3.jpg"}}},"DELETE /api/articles/:article_id":{"description":"deletes an article according to given article id","exampleResponse":{}}}}