-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,30 @@ | ||
# tfleaderboard | ||
|
||
A free API for The Finals ranking data. You can find data such as rank, name, total player cashouts, etc... . Feel free to use the api for your projects. You can also quote the depot when you use it. Thanks | ||
|
||
# API Endpoints | ||
|
||
> [https://soraclee.github.io/tfleaderboard/leaderboard.json](https://soraclee.github.io/tfleaderboard/leaderboard.json) | ||
Returns the latest leaderboard data | ||
|
||
## Example Response | ||
|
||
```json | ||
[ | ||
{ | ||
"name": "TwitchTvPookOut#5437", | ||
"rank": 1, | ||
"fame": 414045, | ||
"old_fame": 404880, | ||
"old_rank": 1, | ||
"cashouts": 94420202, | ||
"networks": { | ||
"steam": "PookOut", | ||
"psn": "", | ||
"xbox": "" | ||
} | ||
}, | ||
{...} | ||
] | ||
``` |