Documentation of how to use our v1 worlds API.
TibiaData API v3 has been released and it’s not recommended to use v1 anymore.
Go to the documentation page to find a newer version.
Go to the documentation page to find a newer version.
All worlds of Tibia
This API helps you to get a list of all worlds and details like players online, location and PvP Type.
GET
No parameters can be set on this request.
Example URL:
https://api.tibiadata.com/v1/worlds.json
Example JSON data:
{
"worlds": {
"online": 14640,
"allworlds": [
{
"name": "Amera",
"online": "183",
"location": "North America",
"worldtype": "Open PvP"
},
{
"name": "Antica",
"online": "651",
"location": "Europe",
"worldtype": "Open PvP"
},
...
]
}
}
One specific world of Tibia
This API helps you to get information of the world and a list of all players online right now.
GET
This GET request requires the field name to be set in the URL.
Example URL:
https://api.tibiadata.com/v1/worlds/Antica.json https://api.tibiadata.com/v1/worlds/Premia.json https://api.tibiadata.com/v1/worlds/Zeluna.json
Example JSON data:
{
"worlds": {
"world_information": {
"players_online": "909",
"online_record": {
"players": "1050",
"date": {
"date": "2016-03-06 20:20:30.000000",
"timezone_type": 2,
"timezone": "CET"
}
},
"creation_date": "1997-01",
"location": "Europe",
"pvp_type": "Open PvP",
"world_quest_titles": [
"The Colours of Magic",
"The Lightbearer",
"Rise of Devovorga",
"A Piece of Cake",
"Bewitched"
],
"battleye_status": "Protected by BattlEye since August 29, 2017."
},
"players_online": [
{
"name": "Ab Duul",
"level": "49",
"vocation": "Elder Druid"
},
{
"name": "Abdullah fadi",
"level": "25",
"vocation": "Druid"
},
...
]
}
}
