Guilds

Documentation of how to use our v2 guilds API.

TibiaData API v3 has been released and it’s not recommended to use v2 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/v2/guilds/Antica.json
https://api.tibiadata.com/v2/guilds/Premia.json
https://api.tibiadata.com/v2/guilds/Vunira.json

Example JSON data:

{
  "guilds": {
    "world": "Antica",
    "active": [
      {
        "name": "Adios",
        "desc": "",
        "guildlogo": "https:\/\/dev.tibiadata.com\/statictibiacom\/guildlogos_Antica_images_guildlogos_Adios.gif"
      }, {
        "name": "Amity",
        "desc": "\"I would rather walk with a friend in the dark, than alone in the light.\"",
        "guildlogo": "https:\/\/dev.tibiadata.com\/statictibiacom\/guildlogos_Antica_images_guildlogos_Amity.gif"
      },
      ...
    ],
    "formation":[]
  },
  "information": {
    "api_version": 2,
    "execution_time": 0.0007,
    "last_updated": "2017-12-15 08:00:00",
    "timestamp": "2017-12-15 08:00:02"
  }
}

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/v2/guild/Elysium.json
https://api.tibiadata.com/v2/guild/Mercenarys.json
https://api.tibiadata.com/v2/guild/Nightmare+Knights.json

Example JSON data:

{
  "guild": {
    "data": {
      "name": "Elysium",
      "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! ",
      "guildhall": {
        "name": "Castle of the White Dragon",
        "town": "Cormaya",
        "paid": "2017-12-26",
        "world": "Vunira",
        "houseid": 54027
      },
      "application": true,
      "war": false,
      "online_status": 1,
      "offline_status": 154,
      "disbanded": false,
      "totalmembers": 155,
      "totalinvited": 0,
      "world": "Vunira",
      "founded": "2004-05-26",
      "active": true,
      "homepage": "forum.elysiumguild.org",
      "guildlogo": "https:\/\/dev.tibiadata.com\/statictibiacom\/guildlogos_Vunira_images_guildlogos_Elysium.gif"
    },
    "members": [
      {
        "rank_title": "Ivory Guardian",
        "characters": [
          {
            "name": "Tanthalas the Fourth",
            "nick": "Legendary naab",
            "level": 138,
            "vocation": "Elder Druid",
            "joined": "2008-06-17",
            "status": "offline"
          }, {
            "name": "Bubbax",
            "nick": "Deco man",
            "level": 230,
            "vocation": "Elder Druid",
            "joined": "2014-08-29",
            "status": "offline"
          },
          ...
        ]
      }
    ],
    "invited": []
  },
  "information": {
    "api_version": 2,
    "execution_time": 0.0013,
    "last_updated": "2017-12-15 08:00:00",
    "timestamp": "2017-12-15 08:00:02"
  }
}