You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 31, 2024. It is now read-only.
# C# wrapper for [Fortnite-API.com](https://fortnite-api.com)
4
+
5
+
[](https://github.com/Fortnite-API/csharp-wrapper/releases)[](https://www.nuget.org/packages/Fortnite-API-Wrapper)[](https://github.com/Fortnite-API/csharp-wrapper/issues)[](https://github.com/Fortnite-API/csharp-wrapper/blob/master/LICENSE)
6
+
7
+
</div>
8
+
9
+
This library offers a complete wrapper around the endpoints of [fortnite-api.com](https://fortnite-api.com).
10
+
11
+
## NuGet
12
+
13
+
Install-Package GameOverlay.Net -Version 4.0.6
14
+
15
+
## Documentation
16
+
17
+
Here is a quick overview of the API so you can get started very quickly.
18
+
19
+
If you need an in-use example then please take a look at the [program.cs](https://github.com/Fortnite-API/csharp-wrapper/blob/master/src/Fortnite-API.Test/Program.cs) in my test folder where i use some of the endpoints.
20
+
21
+
- General usage
22
+
23
+
```cs
24
+
usingFortnite_API;
25
+
26
+
varapi=newFortniteApi();
27
+
```
28
+
29
+
- FortniteApi class
30
+
31
+
```cs
32
+
varapi=newFortniteApi();
33
+
34
+
// accesses the shop endpoint (https://fortnite-api.com/shop)
35
+
api.Shop...
36
+
37
+
// accesses the cosmetics endpoint (https://fortnite-api.com/cosmetics)
38
+
api.Cosmetics...
39
+
40
+
// accesses the news endpoint (https://fortnite-api.com/news)
41
+
api.News...
42
+
```
43
+
44
+
### Contribute
45
+
46
+
If you can provide any help, may it only be spell checking please contribute!
0 commit comments