API:2/account/progression
From Guild Wars 2 Wiki
Jump to navigationJump to search
/v2/account/progression
- HTTP method
- GET
- Format
- json
- API version
- version 2
- Release date
- 2021-09-27
- Scope
- progression
unlocks - Optional
- none
This resource returns account-wide progression for Fractals's Account Augmentation and Luck.
Parameters
access_token
(optional) – Can be used to specify an API key for the request if it is not given in the request header.
Response
The endpoint returns an array of objects, each representing an progression item. If a progression has not been unlocked, it will not be returned.
id
(string) – The progression name. Valid values arefractal_agony_impedance
,fractal_empowerment
,fractal_karmic_retribution
andluck
value
(number) – The amount of a certain progression the account has.luck
is the total amount of luck consumed.
Example
Request
https://api.guildwars2.com/v2/account/progression Authorization: Bearer <API key>
Response
[ { "id": "fractal_agony_impedance", "value": 2 }, { "id": "fractal_empowerment", "value": 2 }, { "id": "fractal_karmic_retribution", "value": 2 }, { "id": "luck", "value": 650810 } ]