-
Notifications
You must be signed in to change notification settings - Fork 0
/
endpoints.json
58 lines (58 loc) · 1.55 KB
/
endpoints.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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": ["author", "topic", "sort_by", "order"],
"exampleResponse": {
"articles": [
{
"title": "Seafood substitutions are increasing",
"topic": "cooking",
"author": "weegembump",
"body": "Text from the article..",
"created_at": "2018-05-30T15:59:13.341Z",
"votes": 0,
"comment_count": 6
}
]
}
},
"GET /api/comments": {
"description": "serves an array of all articles",
"queries": ["author", "article_id", "sort_by", "order"],
"exampleResponse": {
"comments": [
{
"body": "Oh, I've got compassion running out of my nose, pal! I'm the Sultan of Sentiment!",
"votes": 16,
"author": "butter_bridge",
"article_id": 9,
"created_at": 1586179020000
}
]
}
},
"GET /api/users": {
"description": "serves an array of all articles",
"queries": ["username", "sort_by", "order"],
"exampleResponse": {
"comments": [
{
"username": "butter_bridge",
"name": "jonny",
"avatar_url":
"https://www.healthytherapies.com/wp-content/uploads/2016/06/Lime3.jpg"
}
]
}
}
}