API:2/account/wizardsvault/daily
From Guild Wars 2 Wiki
< API:2 | account | wizardsvault
Jump to navigationJump to search
/v2/account/wizardsvault/daily
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2024-02-27
- Scope
- account
progression - Optional
- none
This resource returns the current set of daily 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 Daily Wizard's Vault objectives and progress.
meta_progress_current(number) — The current progress to the meta achievement for the daily.meta_progress_complete(number) — The threshold for the meta progress to be 'complete', and the meta reward claimable.meta_reward_item_id(number) — The ID of the item you receive for claiming the meta reward.meta_reward_astral(number) — The amount of Astral Acclaim you receive for claiming the meta reward.meta_reward_claimed(boolean) — Whether the account has claimed the meta reward.objectives(array) — An array of objects detailing each daily objective.id(number) — The ID of the objective.title(string)track(string)acclaim(number)progress_current(number)progress_complete(number)claimed(boolean)
Example
Request
https://api.guildwars2.com/v2/account/wizardsvault/daily Authorization: Bearer <API key>
Response
{
"meta_progress_current": 5,
"meta_progress_complete": 4,
"meta_reward_item_id": 99961,
"meta_reward_astral": 20,
"meta_reward_claimed": true,
"objectives": [
{
"id": 164,
"title": "Catch 5 Fish",
"track": "PvE",
"acclaim": 10,
"progress_current": 5,
"progress_complete": 5,
"claimed": true
},
{
"id": 187,
"title": "Defeat 5 Enemy Guards in World vs. World",
"track": "WvW",
"acclaim": 10,
"progress_current": 5,
"progress_complete": 5,
"claimed": true
},
{
"id": 21,
"title": "Loot 10 Defeated Enemies",
"track": "PvE",
"acclaim": 10,
"progress_current": 10,
"progress_complete": 10,
"claimed": true
},
{
"id": 139,
"title": "Capture 1 Ruin or Shrine Objective in World vs. World",
"track": "WvW",
"acclaim": 10,
"progress_current": 1,
"progress_complete": 1,
"claimed": true
},
{
"id": 133,
"title": "Log In",
"track": "PvE",
"acclaim": 5,
"progress_current": 1,
"progress_complete": 1,
"claimed": true
}
]
}