API:2/wizardsvault/listings

From Guild Wars 2 Wiki
Jump to navigationJump to search

/v2/wizardsvault/listings

HTTP method
GET
Format
json
API version
version 2
Release date
2024-02-27
Scope
none
Optional
none

This resource returns details about listings in the Wizard's Vault.

Parameters

Response

If the root endpoint (/v2/wizardsvault/listings) is accessed without specifying an id, a list of all ids is returned. When multiple ids are requested using the ids parameter, a list of response objects is returned.

For each listing requested, the following object is returned as a response:

  • id (string) – The listing id.
  • item_id - The id of the item
  • item_count (string) - The quantity of the item the user receives
  • type (enum) - Appears to be the position in the wizards vault UI. Possible values include "Featured" (In the hero banner at the top), "Normal" (Displayed in the rewards table) and "Legacy" (In the Legacy Vault section).
  • cost (integer) - The quantity of Astral Acclaim to purchase .

Example

https://api.guildwars2.com/v2/wizardsvault/listings/1

{

 "id": 1,
 "item_id": 101574,
 "item_count": 1,
 "type": "Featured",
 "cost": 500

}