GET
/articles/{slug}/comments
curl \
--request GET '/api/articles/{slug}/comments'
Response examples (200)
{
"comments": [
{
"id": 1,
"body": "It takes a Jacobian",
"author": {
"bio": "I work at State Farm.",
"image": "https://i.stack.imgur.com/xHWG8.jpg",
"username": "jake",
"following": false
},
"createdAt": "2021-02-18T03:22:56.637Z",
"updatedAt": "2021-02-18T03:22:56.637Z"
}
]
}
Response examples (422)
{
"errors": {
"body": [
"string"
]
}
}