API:2/wizardsvault/objectives

From Guild Wars 2 Wiki
Jump to navigationJump to search

/v2/wizardsvault/objectives

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

This resource returns all Wizard's Vault's objectives in the game.

Endpoints

  • None - Request the list of all available objective ids when the root endpoint (v2/wizardsvault/objectives) has been accessed.
  • id - (Optional) Request the objective for the specified id when accessing the endpoint (v2/wizardsvault/objectives/id). Cannot be used when specifying the id or ids parameters.

Parameters

  • id - (Optional) Request the objective for the specified id. Cannot be used when specifying the id endpoint or ids parameter.
  • ids - (Optional; Comma Delimited List|all) Request an array of objectives for the specified ids or all objectives. Cannot be used when using the id endpoint or id parameter.

Response

For each requested objective id, an object with the following properties is returned:

  • id (number) - The ID of the objective
  • title (string)
  • track (string)
  • acclaim (number)

Example

https://api.guildwars2.com/v2/wizardsvault/objectives?ids=229,231

[
 {
   "id": 20,
   "title": "Perform 3 Combo Skills in Combat",
   "track": "PvE",
   "acclaim": 10
 },
 {
   "id": 229,
   "title": "Defeat Knaebelag the Terror and Complete the Fangs That Gnash Achievement",
   "track": "PvE",
   "acclaim": 500
 }
]