Hi,
is it possible to get the ID of an item by its name? Like:
https://api.guildwars2.com/v2/items/search?name=berserk
-> returns a list of all item-IDs with “berserk” in its name.
I’m currently try to write an overwolf app, so far i tried:
1. gw2spidy-API: works, but only for english names
2. http://gw2wbot.darthmaim.de/smiley/gw2itemsearch.html: doesn’t provied an API afaik
3. search the api via /items -> get a list of all IDs
foreach id -> /items/id -> if name contains “berserk” -> add to list
that takes forever for obvious reasons
Scree