Search module

This module manages:

It is located at https://web-api.wynncraft.com/api/search


GET .../search/<str:query> 1 hour TTL

LEGACY PROXY

This endpoint still uses Legacy APIs to render its response, it's structure will probably not changes but expect more features to come

{
    "query": str,
    "players": [
        "playerResult1",
        # [...]
    ],
    "guilds": [
        "guildResult1",
        # [...]
    ],
    "items": {
        {
            "Item Name": {
                "material": str,  # Minecraft Legacy ID e.g. 269:16
                "tier": str,
                "powderSlots": int,
                "type": str,
                "lore": str,
                "dropRestriction": str,
                "attackSpeed": str,
                "base": {
                    "waterDamage": {
                        "min": int,
                        "max": int
                    },
                    "averageDPS": int
                },
                "requirements": {
                    "level": int,
                    "strength": int,
                    "dexterity": int,
                    "intelligence": int,
                    "defense": int,
                    "agility": int
                },
                "identifications": {
                    "rawIdentification": int,
                    "identification": {
                        "min": int,
                        "max": int
                    },
                    # [...]
                }
            },
            # [...]
        },
        # [...]
    }
}
{
    "query": "Nep",
    "players": [
        "Nepping"
    ],
    "guilds": [
        "ItsUnepic",
        "Nepu",
        "Neptune",
        "Nephilim",
        "Nephthys",
        "Nephilimin",
        "NepSquad",
        "Floodfinger Nepta"
    ],
    "items": {
        "Chestplate of Ineptitude": {
            "tier": "rare",
            "powderSlots": 3,
            "type": "chestplate",
            "dropRestriction": "normal",
            "armorColor": "160,101,64",
            "armorType": "diamond",
            "base": {
                "health": 3375
            },
            "requirements": {
                "level": 98
            },
            "identifications": {
                "rawStrength": -3,
                "rawDexterity": -3,
                "rawIntelligence": -3,
                "rawDefence": -3,
                "rawAgility": -3,
                "mainAttackDamage": {
                    "min": 3,
                    "max": 13
                },
                "rawMainAttackDamage": {
                    "min": 42,
                    "max": 182
                },
                "spellDamage": {
                    "min": -13,
                    "max": -7
                },
                "rawSpellDamage": {
                    "min": -143,
                    "max": -77
                },
                "rawAttackSpeed": 1
            }
        },
        "Nephilim": {
            "tier": "rare",
            "powderSlots": 2,
            "type": "helmet",
            "dropRestriction": "normal",
            "armorColor": "160,101,64",
            "armorType": "diamond",
            "base": {
                "health": 2075
            },
            "requirements": {
                "level": 88,
                "dexterity": 45,
                "agility": 55
            },
            "identifications": {
                "rawDexterity": 8,
                "rawAgility": 7,
                "lifeSteal": {
                    "min": 54,
                    "max": 234
                },
                "manaSteal": {
                    "min": 2,
                    "max": 10
                },
                "reflection": {
                    "min": 6,
                    "max": 26
                },
                "rawAttackSpeed": 1,
                "walkSpeed": {
                    "min": 6,
                    "max": 26
                },
                "sprint": {
                    "min": 5,
                    "max": 21
                },
                "thunderDamage": {
                    "min": 4,
                    "max": 20
                },
                "airDamage": {
                    "min": 4,
                    "max": 20
                }
            }
        },
        "Nepta Floodbringer": {
            "material": "269:16",
            "tier": "legendary",
            "powderSlots": 2,
            "type": "wand",
            "lore": "combined power of inscribed uth runes and immense wisdom meld to create a commanding aura, as this weapon is merely a spiritual extension of the user's desire for dominion over all.",
            "dropRestriction": "normal",
            "attackSpeed": "super_fast",
            "base": {
                "waterDamage": {
                    "min": 70,
                    "max": 90
                },
                "averageDPS": 344
            },
            "requirements": {
                "level": 93,
                "intelligence": 80
            },
            "identifications": {
                "rawIntelligence": 13,
                "spellDamage": {
                    "min": 6,
                    "max": 26
                },
                "rawHealth": {
                    "min": -2275,
                    "max": -1225
                },
                "manaRegen": {
                    "min": 2,
                    "max": 8
                },
                "thunderDamage": {
                    "min": -130,
                    "max": -70
                },
                "waterDamage": {
                    "min": 4,
                    "max": 20
                },
                "thunderDefence": {
                    "min": -39,
                    "max": -21
                }
            }
        }
    }
}

Item result uses item quick search to get results.

Last Updated:
Contributors: Nep