API:2/wizardsvault
From Guild Wars 2 Wiki
< API:2
Jump to navigationJump to search
/v2/wizardsvault
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2024-02-27
- Scope
- none
- Optional
- none
This resource returns information about the current Wizard's Vault season.
Response
This request will return an object containing two arrays of ids that may be requested against the two sub endpoints, plus the title, start and end of the current season.
An object with the following properties is returned:
title
(string) – The name of the current season.start
(iso date) – The date that the current season begins.end
(iso date) – The date that the current season ends.listings
(array of integers) – The wizard's vault listing ids available (use the sub endpoint to view item details).objectives
(array of integers) – The wizard's vault objective ids available (use the sub endpoint to view item details).
Example
Request
https://api.guildwars2.com/v2/wizardsvault
Response
{ "title": "The Realm of Dreams Season", "start": "2022-11-07T17:00:00Z", "end": "2024-05-14T16:00:00Z", "listings": [ 1, 2, 3, ... 40 ], "objectives": [ 1, 2, 3, ... 245 ] }