You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[getTop1000.php](http://boomlings.com/database/getTop1000.php) is one of the very few endpoints found on the servers that can be accessed via a [GET request](https://www.w3schools.com/tags/ref_httpmethods.asp). The purpose of this endpoint is to gather the top 1000 star grinders to be used on the star leaderboards.
The structure for this endpoint is fairly simple - Using only a single key with 3 pieces of data assigned to the key with a `,` to seperate them. Each player is seperated by a newline `(<br>)` making it easy to parse.
22
+
23
+
Below is a small snippet of the response
24
+
25
+
1: Smiffy777, 167677, 1413859
26
+
2: Gormuck, 161467, 1775477
27
+
3: Steekmen, 158704, 4310927
28
+
4: Superchat, 157872, 1098021
29
+
5: Cool, 157561, 4825
30
+
31
+
The Values for each segment are:
32
+
33
+
||
34
+
|:|
35
+
|`<Leaderboard Position>: <Player UserName>, <Player Star Count>, <Player AccountID>`|
0 commit comments