Map module

This module manages:

It is located at https://api.wynncraft.com/v3/map

Map locations


GET .../ 1 hour TTL
[
    {
        "name": str,
        "icon": str,
        "x": int,
        "y": int,
        "z": int
    },
    # [...]
]
Playground is disabled for this endpoint.

Player location


GET .../ 15 seconds TTL
[
  {
    "uuid": str,
    "name": str,
    "nickname": str,
    "server": str,
    "x": int,
    "y": int,
    "z": int,
    "friends": [
        {
            "uuid": str,
            "name": str,
            "nickname": str,
            "server": str,
            "x": int,
            "y": int,
            "z": int
        },
        # [...]
    ],
    "party": [
        {
            "uuid": str,
            "name": str,
            "nickname": str,
            "server": str,
            "x": int,
            "y": int,
            "z": int
        },
        # [...]
    ],
    "guild": [
        {
            "uuid": str,
            "name": str,
            "nickname": str,
            "server": str,
            "x": int,
            "y": int,
            "z": int
        },
        # [...]
    ]
  },
  # [...] Multi account case
]

Request Playground

Quests count


GET .../ 1 hour TTL
{
    "quests": int
}

Request Playground

Last Updated:
Contributors: UltraMegaNep