Search module
This module manages:
- GET Global search
It is located at https://api.wynncraft.com/v3/search
Global search
GET .../ 1 hour TTL
{
"query": str,
"players": {
"uuid1": "username1",
"uuid2": "username2",
# [...]
},
"guilds": {
"guildUuid": {
"name": "name",
"prefix": "prefix"
},
# [...]
},
"guildsPrefix": {
"guildUuid": {
"name": "name",
"prefix": "prefix"
},
# [...]
},
"territories": {
"name": {
"start": [
int, # X
int # Z
],
"end": [
int, # X
int # Z
]
},
},
"discoveries": {
"name": {
"start": [
int, # X
int # Z
],
"end": [
int, # X
int # Z
]
},
},
"items": {
{
"Item Name": {
"material": str, # Minecraft Legacy ID:durability e.g. 269:16
"tier": str,
"powderSlots": int,
"type": str,
"lore": str,
"dropRestriction": str,
"armorType": str,
"attackSpeed": str,
"internalName": str,
"dropMeta": {
"coordinates": [
int,
int,
int
],
"name": str,
"type": 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,
},
# [...]
}
},
# [...]
},
# [...]
}
}
Request Playground
Item result uses the same structure as Items.
WARNING
Player results are limited to 20
entries and guilds results to 50
.