Skip to content

Commit 6a205a6

Browse files
committed
Add web api spec.
1 parent a48d29b commit 6a205a6

4 files changed

Lines changed: 62 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ See the [pull requests](https://github.com/RaidcoreGG/api-cdi/pulls) for the cur
1111
---
1212

1313
## [api.raidcore.gg](api.raidcore.gg)
14-
coming soon
14+
### v1
15+
### v2
1516

1617
## [Nexus](https://github.com/RaidcoreGG/Nexus/wiki)
1718
Nexus addon API, FAQ and other documentation.

v1/addonlibrary.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// GET /addonlibrary
2+
[
3+
{
4+
"id": 907018609,
5+
"name": "/gg",
6+
"author": "Raidcore",
7+
"description": "Lets you GG with a button press.",
8+
"download": "https://github.com/RaidcoreGG/GW2-SlashGG",
9+
"filename": "slashgg.dll",
10+
"addon_policy_tier": 0,
11+
"tags": [
12+
"QoL"
13+
]
14+
},
15+
{
16+
"id": 4294916694,
17+
"name": "Addon Config Backup Tool",
18+
"author": "Zyian",
19+
"description": "A small tool to help keep your addons backed up in case of nuking your GW2 install folder",
20+
"download": "https://github.com/mythwright/nexus-config-backup",
21+
"filename": "configbackup.dll",
22+
"addon_policy_tier": 0,
23+
"tags": []
24+
}
25+
]
26+
27+
// tags contains a list of strings.

v1/arcdpslibrary.js

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// GET /arcdpslibrary
2+
[
3+
{
4+
"id": 1677734504,
5+
"name": "Boon Table",
6+
"author": "knoxfighter",
7+
"description": "Adds a table with boon uptime.",
8+
"download": "https://github.com/knoxfighter/GW2-ArcDPS-Boon-Table",
9+
"filename": "boontable.dll",
10+
"addon_policy_tier": 0,
11+
"tags": []
12+
},
13+
{
14+
"id": 2227255059,
15+
"name": "Buddy",
16+
"author": "Zerthox",
17+
"description": "ArcDPS plugin for Guild Wars 2 assisting with combat gameplay.",
18+
"download": "https://github.com/Zerthox/arcdps-buddy",
19+
"filename": "buddy.dll",
20+
"addon_policy_tier": 0,
21+
"tags": []
22+
}
23+
]
24+
25+
// tags contains a list of strings.

v1/nexusversion.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// GET /nexusversion
2+
{
3+
"Major": 2025,
4+
"Minor": 10,
5+
"Build": 1,
6+
"Revision": 1050,
7+
"Changelog": ""
8+
}

0 commit comments

Comments
 (0)