-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.http
More file actions
122 lines (97 loc) · 2.74 KB
/
test.http
File metadata and controls
122 lines (97 loc) · 2.74 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
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
105
106
107
108
109
110
111
112
###
POST http://127.0.0.1:3000/anime/create-one-anime HTTP/1.1
Content-Type: application/json
{
"uid": 281339680,
"title": "Adventure Quest",
"synopsis": "Join our heroes on an epic quest through magical lands and treacherous dungeons.",
"genre": "Adventure, Fantasy",
"aired": "Fall 2023",
"episodes": 24,
"members": 8000,
"popularity": 1500,
"ranked": 30,
"score": 9.0,
"img_url": "https://example.com/adventure-quest-image.jpg",
"link": "https://example.com/adventure-quest"
}
###
POST http://127.0.0.1:3000/anime/create-many-anime HTTP/1.1
Content-Type: application/json
[
{
"uid": 281049683,
"title": "Adventure Quest",
"synopsis": "Join our heroes on an epic quest through magical lands and treacherous dungeons.",
"genre": "Adventure, Fantasy",
"aired": "Fall 2023",
"episodes": 24,
"members": 8000,
"popularity": 1500,
"ranked": 30,
"score": 9.0,
"img_url": "https://example.com/adventure-quest-image.jpg",
"link": "https://example.com/adventure-quest"
},
{
"uid": 281049681,
"title": "Sci-Fi Galaxy",
"synopsis": "Explore the wonders of the universe as humanity ventures into the far reaches of space.",
"genre": "Science Fiction, Space",
"aired": "Summer 2024",
"episodes": 20,
"members": 6000,
"popularity": 1200,
"ranked": 40,
"score": 8.7,
"img_url": "https://example.com/sci-fi-galaxy-image.jpg",
"link": "https://example.com/sci-fi-galaxy"
},
{
"uid": 281049682,
"title": "Slice of Life Chronicles",
"synopsis": "Follow the daily lives and heartfelt stories of a group of friends in a charming small town.",
"genre": "Slice of Life, Drama",
"aired": "Winter 2025",
"episodes": 16,
"members": 7000,
"popularity": 1400,
"ranked": 35,
"score": 8.9,
"img_url": "https://example.com/slice-of-life-chronicles-image.jpg",
"link": "https://example.com/slice-of-life-chronicles"
}
]
###
POST http://127.0.0.1:3000/anime/delete-one-anime-by-uid HTTP/1.1
Content-Type: application/json
{
"uid": 281049682
}
###
POST http://127.0.0.1:3000/anime/delete-many-anime-by-uid HTTP/1.1
Content-Type: application/json
{
"uid": [281339681,123456789]
}
###
POST http://127.0.0.1:3000/anime/update-one-anime HTTP/1.1
Content-Type: application/json
{
"uid": 281049683,
"title": "Sabeh Anime"
}
###
GET http://127.0.0.1:3000/anime/read-one-anime HTTP/1.1
Content-Type: application/json
{
"uid": 281339680
}
###
GET http://127.0.0.1:3000/anime/read-many-anime HTTP/1.1
Content-Type: application/json
{
"uid": [281049682,281049681]
}
###
curl -X POST http://127.0.0.1:3000/anime/upload-from-csv