Characters

Documentation of how to use our v1 characters 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.


One character of Tibia

This API helps you to get all the information you want to have from one character including deaths and more.

GET

This GET request requires the field name to be set in the URL.

Example URL:

https://api.tibiadata.com/v1/characters/Trollefar.json
https://api.tibiadata.com/v1/characters/Captain+Seasick.json
https://api.tibiadata.com/v1/characters/Mighty+troll.json

Example JSON data:

{
    "characters": {
        "data": {
            "name": "Trollefar",
            "sex": "male",
            "vocation": "Knight",
            "level": "202",
            "achievement_points": "379",
            "world": "Zeluna",
            ...
        },
        "achievements": [
            {
                "stars": 2,
                "name": "Aristocrat"
            },
            ...
        ],
        "deaths": [
            {
                "date": {
                    "date": "2016-05-08 01:23:45.000000",
                    "timezone_type": 2,
                    "timezone": "CEST"
                },
                "level": "202",
                "reason": "Killed by a vicious squire of Trollefar and a vicious squire",
                "involved": [
                    {
                        "name": "Trollefar"
                    },
                    ...
                ]
            },
            ...
        ],
        "account_information": [
            {
                "loyalty_title": "Keeper of Tibia",
                ...
            }
        ],
        "other_characters": [
            {
                "name": "Trollefar",
                "world": "Zeluna",
                "status": "offline"
            },
            ...
    }
}