API:2/raids
From Guild Wars 2 Wiki
< API:2
Jump to navigationJump to search
/v2/raids
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2017-03-01
- Scope
- none
- Optional
- none
This resource returns details about each raid and it's associated wings.
Parameters
lang(string, optional) – Request localized responses.
Response
If the root endpoint (/v2/raids) 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 objective requested, the following object is returned as a response:
id(string) - The name of the dungeon.wings(array of objects) - An array of object containing the following:id(string) - The given name for the dungeon path.events(array of objects)id(string) - The event/encounter name.type(string) - The type of events. Can be eitherCheckpoint, orBoss
Example
https://api.guildwars2.com/v2/raids
[ "forsaken_thicket","bastion_of_the_penitent" ]
https://api.guildwars2.com/v2/raids/forsaken_thicket
{
id": "forsaken_thicket",
"wings": [
{
"id": "spirit_vale",
"events": [
{
"id": "vale_guardian",
"type": "Boss"
},
{
"id": "spirit_woods",
"type": "Checkpoint"
},
...
]
},
...
}