We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 398a83c commit f105f6eCopy full SHA for f105f6e
1 file changed
README.md
@@ -0,0 +1,17 @@
1
+# java-wrapper
2
+Java/Kotlin implementation for https://fortnite-api.com
3
+
4
5
+# Example
6
+Note: For every method you can use the `Language` parameter.
7
+```java
8
+FortniteAPI api = new FortniteAPIBuilder()
9
+ .setKey("{API-KEY}");
10
+CosmeticEndpoint endpoint = api.getCosmeticEndpoint();
11
+FortniteResponse<BaseModel<BrCosmetic>> response = endpoint.getCosmetics();
12
+response.ifSuccessfull(cosmetics -> {
13
+ for(BrCosmetic cosmetic : cosmetics){
14
+ System.out.println(cosmetic.name);
15
+ }
16
+});
17
+```
0 commit comments