Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit bfcd4c5

Browse files
author
Not Officer
committed
updated readme
1 parent caa6c1f commit bfcd4c5

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

README.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# C# wrapper for [Fortnite-API.com](https://fortnite-api.com)
44

5-
[![GitHub release](https://img.shields.io/github/v/release/Fortnite-API/csharp-wrapper?logo=github)](https://github.com/Fortnite-API/csharp-wrapper/releases/latest) [![Nuget](https://img.shields.io/nuget/v/Fortnite-API-Wrapper?logo=nuget)](https://www.nuget.org/packages/Fortnite-API-Wrapper) ![Nuget DLs](https://img.shields.io/nuget/dt/Fortnite-API-Wrapper?logo=nuget) [![GitHub issues](https://img.shields.io/github/issues/Fortnite-API/csharp-wrapper?logo=github)](https://github.com/Fortnite-API/csharp-wrapper/issues) [![GitHub License](https://img.shields.io/github/license/Fortnite-API/csharp-wrapper)](https://github.com/Fortnite-API/csharp-wrapper/blob/master/LICENSE) [![Donate](https://img.shields.io/badge/donate-PayPal-blue.svg?logo=paypal)](https://fortnite-api.com/paypal) [![Discord](https://discordapp.com/api/guilds/621452110558527502/widget.png?style=shield)](https://fortnite-api.com/discord)
5+
[![GitHub release](https://img.shields.io/github/v/release/Fortnite-API/csharp-wrapper?logo=github)](https://github.com/Fortnite-API/csharp-wrapper/releases/latest) [![Nuget](https://img.shields.io/nuget/v/Fortnite-API-Wrapper?logo=nuget)](https://www.nuget.org/packages/Fortnite-API-Wrapper) [![Nuget DLs](https://img.shields.io/nuget/dt/Fortnite-API-Wrapper?logo=nuget)](https://www.nuget.org/packages/Fortnite-API-Wrapper) [![GitHub issues](https://img.shields.io/github/issues/Fortnite-API/csharp-wrapper?logo=github)](https://github.com/Fortnite-API/csharp-wrapper/issues) [![GitHub License](https://img.shields.io/github/license/Fortnite-API/csharp-wrapper)](https://github.com/Fortnite-API/csharp-wrapper/blob/master/LICENSE) [![Donate](https://img.shields.io/badge/donate-PayPal-blue.svg?logo=paypal)](https://fortnite-api.com/paypal) [![Discord](https://discordapp.com/api/guilds/621452110558527502/widget.png?style=shield)](https://fortnite-api.com/discord)
66

77
</div>
88

@@ -31,20 +31,23 @@ var api = new FortniteApi();
3131
```cs
3232
var api = new FortniteApi();
3333

34-
// accesses the shop endpoint (https://fortnite-api.com/shop)
35-
api.Shop...
34+
// accesses the stats endpoint (https://fortnite-api.com/v1/stats)
35+
api.V1.Stats...
3636

37-
// accesses the cosmetics endpoint (https://fortnite-api.com/cosmetics)
38-
api.Cosmetics...
37+
// accesses the shop endpoint (https://fortnite-api.com/v2/shop)
38+
api.V2.Shop...
3939

40-
// accesses the news endpoint (https://fortnite-api.com/news)
41-
api.News...
40+
// accesses the cosmetics endpoint (https://fortnite-api.com/v2/cosmetics)
41+
api.V2.Cosmetics...
4242

43-
// accesses the creatorcode endpoint (https://fortnite-api.com/creatorcode)
44-
api.CreatorCode...
43+
// accesses the news endpoint (https://fortnite-api.com/v2/news)
44+
api.V2.News...
4545

46-
// accesses the aes endpoint (https://fortnite-api.com/aes)
47-
api.Aes...
46+
// accesses the creatorcode endpoint (https://fortnite-api.com/v2/creatorcode)
47+
api.V2.CreatorCode...
48+
49+
// accesses the aes endpoint (https://fortnite-api.com/v2/aes)
50+
api.V2.Aes...
4851
```
4952

5053
### Contribute
@@ -59,4 +62,4 @@ We are open for any contribution.
5962
- RestSharp (Apache 2.0) [License](https://github.com/restsharp/RestSharp/blob/master/LICENSE.txt)
6063
- Newtonsoft.Json (MIT) [License](https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md)
6164

62-
API developed by [Fortnite-API.com](https://fortnite-api.com/about)
65+
API developed by [Fortnite-API.com](https://dash.fortnite-api.com/about)

0 commit comments

Comments
 (0)