Documentation of how to use our v2 highscores API.
Get various highscores of worlds
This API helps you to get a list of highscores on a certain world and on which type.
GET
GET
GET
This GET request requires the field world to be set in the URL.
This GET request has optional fields type and vocation to be set in the URL.
Default value of type is experience.
You can use following fields instead: experience, magic, shielding, distance, sword, club, axe, fist, fishing, achievements and loyalty.
Default value of vocation is all.
You can use following fields instead: all, no, druid, knight, paladin and sorcerer.
Example URL:
https://api.tibiadata.com/v2/highscores/Antica.json https://api.tibiadata.com/v2/highscores/Zeluna/sword.json https://api.tibiadata.com/v2/highscores/Candia/achievements/all.json
Example JSON data:
{ "highscores": { "world": "Antica", "type": "experience", "data": [ { "name": "Skoru", "rank": 1, "voc": "Royal Paladin", "points": 6566551268, "level": 735 }, { "name": "Lavish Life", "rank": 2, "voc": "Elder Druid", "points": 5941095674, "level": 711 }, ... ] }, "information": { "api_version": 2, "execution_time": 0.0014, "last_updated": "2017-12-15 08:00:00", "timestamp": "2017-12-15 08:00:02" } }