-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdata.json
More file actions
58 lines (58 loc) · 1.77 KB
/
data.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
{
"cats": [
{
"code": 200,
"name": "OK",
"message": "Everything is fine, here\u2019s a happy cat!",
"image_url": "https://httpcats.com/200.jpg"
},
{
"code": 201,
"name": "Created",
"message": "A new resource was created successfully.",
"image_url": "https://httpcats.com/201.jpg"
},
{
"code": 202,
"name": "Accepted",
"message": "Your request is being processed.",
"image_url": "https://httpcats.com/202.jpg"
},
{
"code": 204,
"name": "No Content",
"message": "Request succeeded but no content returned.",
"image_url": "https://httpcats.com/204.jpg"
},
{
"code": 400,
"name": "Bad Request",
"message": "You sent something we cannot process.",
"image_url": "https://httpcats.com/400.jpg"
},
{
"code": 401,
"name": "Unauthorized",
"message": "You must be authenticated to access this resource.",
"image_url": "https://httpcats.com/401.jpg"
},
{
"code": 404,
"name": "Not Found",
"message": "Sorry, we could not find the resource.",
"image_url": "https://httpcats.com/404.jpg"
},
{
"code": 500,
"name": "Internal Server Error",
"message": "Something went very wrong on the server.",
"image_url": "https://httpcats.com/500.jpg"
},
{
"code": 303,
"name": "test",
"message": "wrong",
"image_url": "https://httpcats.com/101.jpg"
}
]
}