Get WvW rank of map?

Get WvW rank of map?

in API Development

Posted by: Devata.6589

Devata.6589

Q:

Maybe I overlooked something, but I can’t find a total score or rank of a world.

Only from the current match, is there a way to get to overall score, or rank of a world?

Get WvW rank of map?

in API Development

Posted by: Lawton Campbell

Lawton Campbell

Web Programmer

Next

A:

Not currently, no.

Get WvW rank of map?

in API Development

Posted by: darthmaim.6017

darthmaim.6017

You could parse https://leaderboards.guildwars2.com/de/na/wvwmain until there is a dedicated API endpoint for that available.

Get WvW rank of map?

in API Development

Posted by: Reincarnated.1754

Reincarnated.1754

I use API:1/wvw/matches — “wvw_match_id”: “2-2”
The last number I take as being the Rank/Tier the world is in.

Get WvW rank of map?

in API Development

Posted by: Lawton Campbell

Previous

Lawton Campbell

Web Programmer

I use API:1/wvw/matches — “wvw_match_id”: “2-2”
The last number I take as being the Rank/Tier the world is in.

Match IDs are formatted as “%d-%d” % (datacenter, virtual shard id). I’m under the impression that the virtual shard id just happens to match up with the tier — an unexpected feature — because of how the matchmaking bits work.

Get WvW rank of map?

in API Development

Posted by: Devata.6589

Devata.6589

You could parse https://leaderboards.guildwars2.com/de/na/wvwmain until there is a dedicated API endpoint for that available.

It did cross my mind to get it this way, but I rather wait untill the Api does provide it, it’s just a minor detail (for my usage) anyway.

I use API:1/wvw/matches — “wvw_match_id”: “2-2”
The last number I take as being the Rank/Tier the world is in.

I noticed the second number would indeed work as tier, but it’s the rank I was looking for.

Nonetheless, thanks for wanting to help find a solution.