apoch on master
/v2/pvp/seasons: add .ranks. Merge pull request #535 from ar… (compare)
apoch on master
add missing name tag to /v2/rac… Merge pull request #609 from Th… (compare)
Map ID | Map name | Event name | Event ID | Coordinates | Level | Flags |
---|---|---|---|---|---|---|
1316 | Mists Rift | Defeat the Riftstalker to close the rift. | 72921F19-7984-4954-A9EA-3C35D5188635 | [3261,13765] | 80 | ["group_event","map_wide"] |
1316 | Mists Rift | Escape the collapsing rift! | 1E3B3CA9-B40A-4839-8889-636B14B87C74 | [3261,13765] | 80 | ["group_event","map_wide"] |
_
SAB API
by shadowolflo.6870 in API DevelopmentHi, can you update the API for SAB with boomerang and Mega Bomb ?
Chat API
by Raseus.2543 in API DevelopmentI know it is an old wish that we get access to a chat API and was asked very often but I want to know if anything has changed.
Is a Chat API planned or is there any other way to access the chat logs because this would already help very much. I mean lets face it the gw2 chat works but that's it and if you are someone like me who does RP with 15+ people in the say channel you can easy miss something or lose track. That is why I think we could create a better chatbox with the chat logs or a chat api.
With this we could create a chat window where you can highlight certain words or character names so it is easier to keep track of the chat.
I'm looking for help exposing the appearance portion of the character data. The data itself is stored pretty compactly on the character record as an array. What each value in the array means depends on the race+sex combination of the character.
Here's how the data looks for my test character:
[ 100, 0, 8, 50.2, 4, 0, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 6, 0, 0, 16, 9, 0,
50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, null, 3.14, null, 62, 4, 8,
50.2, 50.2, 50.2, 50.2, 0, 50.2, 50.2, 50.2, 50.2, 50.2, 50.2, 7 ]
I can modify the v2/races/:race
endpoint to include an interpretation of these numbers per-sex-per-index.
Maybe something like:
{
...,
"appearance": {
"female": [
{
"name": "Hair Style",
"category": "Hair Styles & Color",
"type": "PictureChoice"
},
{
"name": "Hair Color",
"category": "Hair Styles & Color",
"type": "ColorPalette",
"colors": [
{
"brightness": -13,
"contrast": 1,
"hue": 275,
"saturation": 0.0234375,
"lightness": 1.09375
},
{
"brightness": -13,
"contrast": 1,
"hue": 275,
"saturation": 0.0234375,
"lightness": 1.09375
},
...
]
},
...
],
"male": [...]
}
}
Finally, the real question: I can expose the raw per-character array in the next day or two, but the static data will take weeks for some backend server changes to make it through. Should I
I can argue for both options, so I'm asking here.
WvW API
by Jey.2349 in API DevelopmentHey,
I'd really like to use sites like https://wvwintel.com/#2203. It is a map overview of the current WvW matchup and gives great insight for enemy movement.
Unfortunately it seems that the API content gets stuck or isn't updated quick enough every now and then.
You're able to see the issue when no objectives on all three maps were flipped for a while.Things tested:
- The site seems to display the current (and updated) api results, I compared it with a direct request: https://api.guildwars2.com/v2/wvw/matches?world=2202
- Adding an API-Key to the request doesn't change the result
Most Item Images are not loading.
by Vegeta.2563 in API DevelopmentFew example links from images of things in my bank viewing via API.
https://render.guildwars2.com/file/1A53C833985AF29F60470C5DEEA61704F6B97E1E/591442.png
https://render.guildwars2.com/file/D12175CCA72539F1E8CC967AAF1D2045D3D24F01/1701107.png
https://render.guildwars2.com/file/74921BC51FFC732180CAD2019266B1F3A1E97999/619516.pngNo icons are loading at all.
Requesting /guild/:id/log Stash deposit type entries show the bank tab
by NullValue.4956 in API DevelopmentI'm working on a raffle system and it would be very handy if the log entry said what tab an item has been deposited in. Example would be trying to track gold deposits into the
Guild Stash
for example. the in-game log is able to show what tab an action was done in.{
"id": 52573,
"time": "2019-01-05T01:38:16.000Z",
"type": "stash",
"user": "AccountName.1234",
"operation": "deposit",
"item_id": 0,
"count": 0,
Request for cache information headers for cached resources
by Flomix.3982 in API DevelopmentIf I'm not mistaken there are a lot of endpoints that are cached, so the result might be off by up to 5 minutes or so.
It would be really helpful if that could be reflected by header values, so it is transparent if / when / how long data is cached.Example:
- I access https://api.guildwars2.com/v2/account/raids to get the raid progress. The first call takes a bit longer than subsequent calls, sometimes 5000 vs 100 ms, so I assume the first call has fresh data, subsequent not.
- I finish a raid encounter.
- I access /account/raids again, but the just finished encounter is missing.
- I have to poll /account/raids for up to 5 minutes to see the updated encounter list.
What that implies is that whenever I read such data, I have to delay for at least 5 minutes and read the data again, to be sure that the data is current and not cached.