API:2/account/wizardsvault/weekly

From Guild Wars 2 Wiki
Jump to navigationJump to search

/v2/account/wizardsvault/weekly

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 weekly 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 Weekly Wizard's Vault objectives and progress.

  • meta_progress_current (number) - The current progress to the meta achievement for the weekly.
  • 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 weekly 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/weekly
Authorization: Bearer <API key>

Response

 {
  "meta_progress_current": 2,
  "meta_progress_complete": 6,
  "meta_reward_item_id": 100137,
  "meta_reward_astral": 450,
  "meta_reward_claimed": false,
  "objectives": [
    {
      "id": 5,
      "title": "Defeat 50 Veteran-Rank Enemies",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 38,
      "progress_complete": 50,
      "claimed": false
    },
    {
      "id": 57,
      "title": "Complete 10 Events",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 10,
      "progress_complete": 10,
      "claimed": true
    },
    {
      "id": 47,
      "title": "Identify 100 Pieces of Unidentified Gear",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 100,
      "progress_complete": 100,
      "claimed": true
    },
    {
      "id": 116,
      "title": "Complete the Tribulation Caverns Jumping Puzzle",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 0,
      "progress_complete": 1,
      "claimed": false
    },
    {
      "id": 169,
      "title": "Complete 5 Bounty Missions in the Domain of Vabbi or Group Events",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 0,
      "progress_complete": 5,
      "claimed": false
    },
    {
      "id": 63,
      "title": "Complete 1 Fractal in the Fractals of the Mists",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 0,
      "progress_complete": 1,
      "claimed": false
    },
    {
      "id": 150,
      "title": "Defeat 100 Awakened or Risen",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 0,
      "progress_complete": 100,
      "claimed": false
    },
    {
      "id": 138,
      "title": "Complete Kaineng Blackout Meta-Event, Events in New Kaineng City, or Events in Maguuma Jungle",
      "track": "PvE",
      "acclaim": 50,
      "progress_current": 0,
      "progress_complete": 15,
      "claimed": false
    }
  ]
 }