-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
282 lines (282 loc) · 8.68 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<html>
<head>
<title>
Geometry Dash RESTful API - GDNewbie
</title>
</head>
<body>
<h1>
<u>/level</u>
</h1>
<h3>
/level/{NAME}
</h3>
<p>
Gets info about a level with the name "{NAME}"
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/level/featured
</h3>
<p>
Gets the levels on a specified featured page
<br>
<i> • <b>GET</b><br>Params:</i><br> • page = <i>The page in which you want the levels of - int</i><br><br>
</p>
<h3>
/level/halloffame
</h3>
<p>
Gets the levels on a specified Hall of Fame page
<br>
<i> • <b>GET</b><br>Params:</i><br> • page = <i>The page in which you want the levels of - int</i><br><br>
</p>
<h3>
/level/mappacks
</h3>
<p>
Gets the levels in the Map Packs
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h1>
<u>/user</u>
</h1>
<h3>
/user/{NAME}
</h3>
<p>
Gets info about a user with the name "{NAME}"
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/user/{NAME}/friends
</h3>
<p>
Gets a user's friends
<br>
<i> • <b>GET</b><br>Params:</i><br> • password = <i>The password of the account - str</i><br><br>
</p>
<h3>
/user/{NAME}/accountcomments
</h3>
<p>
Gets a user's account comments
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/user/{NAME}/levelcomments
</h3>
<p>
Gets a user's level comments
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/user/{NAME}/friends/request
</h3>
<p>
Send a friend request to a user
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account you will send the friend request to - str</i>
<br> • comment = <i>The comment for the request - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/friends/accept
</h3>
<p>
Accept a user's friend request
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account who sent the friend request - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/friends/deny
</h3>
<p>
Deny a user's friend request
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account who sent the friend request - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/block
</h3>
<p>
Block a user
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account to block - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/unblock
</h3>
<p>
Unblock a user
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account to unblock - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/accountcomments/post
</h3>
<p>
Accept a user's friend request
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The name of the account who sent the friend request - str</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/level
</h3>
<p>
Get a user's level
<br>
<i> • <b>GET</b>
<br>Params:
</i>
<br> <i>None</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/updatesettings
</h3>
<p>
Updates a user's settings
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • amf = <i>Who you want to allow messages from - str | options: all, friends, none</i>
<br> • afrf = <i>Who you want to allow friend requests from - str | options: all, none</i>
<br> • scht = <i>Who you want to show your level comment history to - str | options: all, friends, none</i>
<br> • yt = <i>Your youtube tag - str | example: UCZoN2WLAooS6uhREa9Cgpwg</i>
<br> • twitter = <i>Your twitter name - str | example: DePianoman2004</i>
<br> • twitch = <i>Your twitch name - str | example: depianoman</i>
<br>
<br>
</p>
<h3>
/user/{NAME}/sendmessage
</h3>
<p>
Send a message to someone
<br>
<i> • <b>POST</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br> • name = <i>The user to send the message to - str</i>
<br> • subject = <i>The subject of the message - str</i>
<br> • body = <i>The body of the message - str</i>
<br>
<br>
</p>
<h1>
<u>/leaderboard</u>
</h1>
<h3>
/leaderboard/{NAME}/friends
</h3>
<p>
Get the "Friends" tab of someone's leaderboard
<br>
<i> • <b>GET</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br>
<br>
</p>
<h3>
/leaderboard/{NAME}/local
</h3>
<p>
Get the "Local" tab of someone's leaderboard
<br>
<i> • <b>GET</b>
<br>Params:
</i>
<br> • password = <i>The password of {NAME}'s account - str</i>
<br>
<br>
</p>
<h3>
/leaderboard
</h3>
<p>
Get the "Top" tab of the leaderboard
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/leaderboard/creators
</h3>
<p>
Get the "Creators" tab of the leaderboard
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h1><u>Misc.</u></h1>
<h3>
/daily
</h3>
<p>
Gets info on the daily level
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/weekly
</h3>
<p>
Gets info on the weekly level
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
<h3>
/gauntlets
</h3>
<p>
Gets info on the gauntlets' levels
<br>
<i> • <b>GET</b><br>Params:</i><br><i> None</i><br>
</p>
</body>
</html>