News

Documentation of how to use our v1 news 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 news of Tibia

This API helps you to get a list of all news and articles the last 6 months, that have been published on tibia.com frontpage.
You’ll get information like type of news, date, url and more.

GET

No parameters can be set on this request.

Example URL:

https://api.tibiadata.com/v1/news.json

Example URL:

{
    "news": {
        "1": {
            "id": "3559",
            "type": "News",
            "news": "Demon's Lullaby",
            "apiurl": "https://api.tibiadata.com/v1/news/3559.json",
            "tibiaurl": "http://www.tibia.com/news/?subtopic=newsarchive&id=3559",
            "date": {
                "date": "2016-05-07 00:00:00.000000",
                "timezone_type": 3,
                "timezone": "Europe/Berlin"
            }
        },
        "2": {
            "id": "3575",
            "type": "News",
            "news": "New Open PvP Worlds",
            "apiurl": "https://api.tibiadata.com/v1/news/3575.json",
            "tibiaurl": "http://www.tibia.com/news/?subtopic=newsarchive&id=3575",
            "date": {
                "date": "2016-05-06 00:00:00.000000",
                "timezone_type": 3,
                "timezone": "Europe/Berlin"
            }
        },
        ...
    }
}

One specific news of Tibia

This API helps you to get the full news and its details around it, including the pure html content.

GET

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

Example URL:

https://api.tibiadata.com/v1/news/3560.json
https://api.tibiadata.com/v1/news/3550.json
https://api.tibiadata.com/v1/news/3412.json

Example URL:

{
    "news": [
        {
            "id": "3560",
            "title": "Double XP and Double Skill Weekend",
            "content": "If you are looking for an opportunity to level up and to improve your skills: here it is! ...",
            "date": {
                "date": "2016-05-04 00:00:00.000000",
                "timezone_type": 3,
                "timezone": "Europe/Berlin"
            }
        }
    ]
}