API:2/worldbosses

From Guild Wars 2 Wiki
Jump to navigationJump to search

/v2/worldbosses

HTTP method
GET
Format
json
API version
version 2
Release date
2019-04-06
Scope
none
Optional
none

This resource returns information about scheduled World bosses in Core Tyria that reward boss chests that can be be opened once a day in-game.

Endpoints

  • None - Request the list of all available world boss ids.
  • id - (Optional) Request the world boss for the specified id. Cannot be used when specifying the ids parameter.

Parameters

  • ids - (Optional; Comma Delimited List|all) Request an array of world bosss for the specified ids or all such world bosses. Cannot be used when accessing the id endpoint.

Response

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

  • id (string) - The (API-specific) id of the world boss.

Example

https://api.guildwars2.com/v2/worldbosses

[
  "admiral_taidha_covington",
  "claw_of_jormag",
  "fire_elemental",
  "great_jungle_wurm",
  "inquest_golem_mark_ii",
  "karka_queen",
  "megadestroyer",
  "modniir_ulgoth",
  "shadow_behemoth",
  "svanir_shaman_chief",
  "tequatl_the_sunless",
  "the_shatterer",
  "triple_trouble_wurm"
]

https://api.guildwars2.com/v2/worldbosses/inquest_golem_mark_ii

{
  "id": "inquest_golem_mark_ii"
}

https://api.guildwars2.com/v2/worldbosses?ids=the_shatterer,inquest_golem_mark_ii

[
  {
    "id": "the_shatterer"
  },
  {
    "id": "inquest_golem_mark_ii"
  }
]