diff --git a/fortnitepy/http.py b/fortnitepy/http.py index 9232e02b..f0207a32 100644 --- a/fortnitepy/http.py +++ b/fortnitepy/http.py @@ -910,6 +910,10 @@ async def fortnite_get_timeline(self) -> dict: r = FortnitePublicService('/fortnite/api/calendar/v1/timeline') return await self.get(r) + async def fortnite_get_stw_maps(self) -> dict: + r = FortnitePublicService('/fortnite/api/game/v2/world/info') + return await self.get(r) + ################################### # Fortnite Content # ###################################