Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 825 Bytes

File metadata and controls

24 lines (17 loc) · 825 Bytes

Perk Tree API

Endpoint

GET https://deceit-live.baseline.gg/perkTree

Parameters

id: integer (optional) The ID of the perk tree to get.

Example

https://deceit-live.baseline.gg/perkTree?id=3

Return:

200 (OK): JSON object containing two fields, id and tree. The tree field is a 2D array that contains each row of the perk tree and the perks in that row. Full description on the perks can be found in perks.json.

Example response:

{"id":3,"tree":[[5],[56,13],[42,50],[19],[24,72,69],[23,43],[67,60,65],[37,49,27],[7,39],[32,30,70],[1,40],[57,61,66],[52,54]]}

404 (Not Found): JSON object with an error field, usually indicates the id provided was incorrect.

400 (Bad Request): JSON object with an error field, usually indicates the id provided was malformed.