API:2/account/wizardsvault/special
From Guild Wars 2 Wiki
< API:2 | account | wizardsvault
Jump to navigationJump to search
/v2/account/wizardsvault/special
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2024-02-27
- Scope
- account
- Optional
- none
This resource returns the current set of special Wizard's Vault achievements for the account.
Parameters
access_token
(optional) – Can be used to specify an API key for the request if it is not given in the request header.
Response
When requested, the endpoint will return an object containing details about that accounts Special Wizard's Vault objectives and progress.
objectives
(array) - An array of objects detailing each special objectiveid
(number) - The ID of the objectivetitle
(string)track
(string)acclaim
(number)progress_current
(number)progress_complete
(number)claimed
(boolean)
Example
Request
https://api.guildwars2.com/v2/account/wizardsvault/special Authorization: Bearer <API key>
Response
{ "objectives": [ { "id": 231, "title": "Complete the Story Chapter Eventide's March", "track": "PvE", "acclaim": 500, "progress_current": 0, "progress_complete": 1, "claimed": false }, { "id": 229, "title": "Defeat Knaebelag the Terror and Complete the Fangs That Gnash Achievement", "track": "PvE", "acclaim": 500, "progress_current": 0, "progress_complete": 1, "claimed": false }, { "id": 240, "title": "Complete Tier 1 of an Artisan of Arms Achievement", "track": "PvE", "acclaim": 300, "progress_current": 0, "progress_complete": 1, "claimed": false }, { "id": 245, "title": "Legendary Armor 3: Forge a Piece of Legendary Obsidian Armor", "track": "PvE", "acclaim": 500, "progress_current": 0, "progress_complete": 1, "claimed": false }, { "id": 234, "title": "Legendary Armor 2: Complete an Astral Legendary Armor Achievement", "track": "PvE", "acclaim": 300, "progress_current": 0, "progress_complete": 1, "claimed": false }, { "id": 244, "title": "Legendary Armor 1: Speak With Lyhr about Armor Crafting", "track": "PvE", "acclaim": 150, "progress_current": 0, "progress_complete": 1, "claimed": false } ] }