Guilds

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


All guilds of one world in Tibia

This API helps you to get a list of all names of guilds on a certain world including the description.

GET

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

Example URL:

https://api.tibiadata.com/v1/guilds/Antica.json
https://api.tibiadata.com/v1/guilds/Candia.json
https://api.tibiadata.com/v1/guilds/Zeluna.json

Example JSON data:

{
    "guilds": {
        "active": [
            {
                "name": "Abelisk",
                "desc": "Acept In Guild \"\" From All Countries. Use [View]-->[Login]-->[Apply To This Guild]-->[Submit] and Wait.()xxx[{:::\":::\":::\":::\":::\":::\":::=>"
            },
            {
                "name": "Adventurers of the Coast",
                "desc": "We are the . So, here we are, in a friendly and loyal matter. [We are a roleplaying guild, thus some members are ignoring private messages. If you want to join us, try to catch any of us in Tibia or write a letter. Currently not recruiting.]"
            },
            {
                "name": "Avis",
                "desc": "Przyjmujemy od poziomu 100. Nie ma potrzeby bycia online 24/7. Gramy 4Fun."
            },
            ...
        ],
        "formation":[]
    }
}

One specific guild of Tibia

This API helps you to get information of a particular guild and a list of its current members.

GET

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

Example URL:

https://api.tibiadata.com/v1/guild/Elysium.json
https://api.tibiadata.com/v1/guild/Mercenarys.json
https://api.tibiadata.com/v1/guild/Nightmare+Knights.json

Example JSON data:

{
    "guilds": {
        "data": {
            "guildhall": false,
            "application": true,
            "founded": "2004-05-26",
            "active": true,
            "homepage": "elysiumguild.org/",
            "description": "The place you want to be... It is the land of peace and harmony, the home of the immortal, the blessed, home of the passed away legends... Hail all defenders of righteousness and the old virtues which shall never be forgotten! <In order to join us, please contact the leaders.>",
            "totalmembers": 184
        },
        "members": [
            {
                "rank_title": "Ivory Guardian",
                "characters": [
                    {
                        "name": "Bubbax",
                        "nick": "Deco man",
                        "level": "221",
                        "vocation": "Elder Druid",
                        "joined": "2014-08-29",
                        "status": "offline"
                    },
                    ...
                ]
            }
        ]
    }
}