-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.json
104 lines (104 loc) · 3.25 KB
/
api.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"videos": [
{
"id": 1,
"title": "Video 1",
"description": "This is video 1",
"thumbnail": "http://localhost:9000/thumbnail-01.png",
"slug": "video-1",
"published_at": "2019-01-01T00:00:00Z",
"num_likes": 100,
"num_views": 1000
},
{
"id": 2,
"title": "Video 2",
"description": "This is video 2",
"thumbnail": "http://localhost:9000/thumbnail-02.png",
"slug": "video-2",
"published_at": "2019-01-02T00:00:00Z",
"num_likes": 200,
"num_views": 2000
},
{
"id": 3,
"title": "Video 3",
"description": "This is video 3",
"thumbnail": "http://localhost:9000/thumbnail-03.png",
"slug": "video-3",
"published_at": "2019-01-03T00:00:00Z",
"num_likes": 300,
"num_views": 3000
},
{
"id": 4,
"title": "Video 4",
"description": "This is video 4",
"thumbnail": "http://localhost:9000/thumbnail-04.png",
"slug": "video-4",
"published_at": "2019-01-04T00:00:00Z",
"num_likes": 400,
"num_views": 4000
},
{
"id": 5,
"title": "Video 5",
"description": "This is video 5",
"thumbnail": "http://localhost:9000/thumbnail-05.png",
"slug": "video-5",
"published_at": "2019-01-05T00:00:00Z",
"num_likes": 500,
"num_views": 5000
},
{
"id": 6,
"title": "Video 6",
"description": "This is video 6",
"thumbnail": "http://localhost:9000/thumbnail-06.png",
"slug": "video-6",
"published_at": "2019-01-06T00:00:00Z",
"num_likes": 600,
"num_views": 6000
},
{
"id": 7,
"title": "Video 7",
"description": "This is video 7",
"thumbnail": "http://localhost:9000/thumbnail-07.png",
"slug": "video-7",
"published_at": "2019-01-07T00:00:00Z",
"num_likes": 700,
"num_views": 7000
},
{
"id": 8,
"title": "Video 8",
"description": "This is video 8",
"thumbnail": "http://localhost:9000/thumbnail-08.png",
"slug": "video-8",
"published_at": "2019-01-08T00:00:00Z",
"num_likes": 800,
"num_views": 8000
},
{
"id": 9,
"title": "Video 9",
"description": "This is video 9",
"thumbnail": "http://localhost:9000/thumbnail-09.png",
"slug": "video-9",
"published_at": "2019-01-09T00:00:00Z",
"num_likes": 900,
"num_views": 9000
},
{
"id": 10,
"title": "Video 10",
"description": "This is video 10",
"thumbnail": "http://localhost:9000/thumbnail-10.png",
"slug": "video-10",
"published_at": "2019-01-10T00:00:00Z",
"num_likes": 1000,
"num_views": 10000
}
]
}