-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFortEndpoints.py
64 lines (49 loc) · 3.25 KB
/
FortEndpoints.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class URLs:
class Replays:
Replay_URL = "https://pastebin.com/raw/mY744kZV"
class Creative:
CreativeIslandPicture = "https://links-public-service-live.ol.epicgames.com/links/api/fn/mnemonic/"
class DevVersions:
Devplaytest = "https://fortnite-public-service-devplaytest-prod12.ol.epicgames.com/fortnite/api/version"
QQTest = "https://fortnite-service-epicreleasetesting.fortnite.qq.com/fortnite/api/version"
Extqadevtesting = "https://fortnite-public-service-extqadevtesting-prod.ol.epicgames.com/fortnite/api/version"
Stage = "https://fortnite-public-service-stage.ol.epicgames.com/fortnite/api/version"
Devplaytesto = "https://fortnite-public-service-devplaytesto-prod.ol.epicgames.com/fortnite/api/version"
class ThirdParties:
class FortniteAPIIO:
Challenges = "https://fortniteapi.io/v1/challenges?season=current&lang=en"
Map = "https://media.fortniteapi.io/images/map.png"
class BenBot:
cosmetics = "https://benbotfn.tk/api/v1/cosmetics/br"
shop = "https://benbotfn.tk/api/v1/shop/br"
class Fortnite_API:
PlayerStats = "https://fortnite-api.com/v1/stats/br/v2"
SAC = "https://fortnite-api.com/v2/creatorcode?name="
News = "https://fortnite-api.com/v2/news"
class CatalogService:
BASE_URL_PROD = "https://catalog-public-service-prod06.ol.epicgames.com/catalog/"
BASE_URL_PROD_ALT = "https://catalog-public-service-prod06.ak.epicgames.com/catalog/"
BASE_URL_STAGE = "https://catalogv2-public-service-stage.ol.epicgames.com/catalog/"
class ChannelService:
BASE_URL_PROD = "https://channels-public-service-prod.ol.epicgames.com/"
BASE_URL_STAGE = "https://channels-public-service-stage.ol.epicgames.com/"
class FortniteService:
version = "https://fortnite-public-service-prod11.ol.epicgames.com/fortnite/api/version"
BASE_URL = "https://fortnite-public-service-prod11.ol.epicgames.com/fortnite/"
In_Game_News = "https://fortnitecontent-website-prod07.ol.epicgames.com/content/api/pages/fortnite-game"
class EpicGamesSite:
redeem_code = "https://www.epicgames.com/account/v2/ajax/redemption/validate-redemption-code"
class GraphQL:
backend_GraphQL = "https://www.epicgames.com/store/backend/graphql-proxy"
class EpicGamesStore:
FreeGames = "https://store-site-backend-static.ak.epicgames.com/freeGamesPromotions"
class FortniteEventFlag:
calendar = "https://fortnite-public-service-prod11.ol.epicgames.com/fortnite/api/calendar/v1/timeline"
class AccountStatus:
Generic_Account_HTTP_Staus = "https://www.epicgames.com/account/v2/retrieve-info/status"
Reputation = "https://www.epicgames.com/id/api/reputation"
Time_Played_On_Fortnite = "https://www.epicgames.com/account/v2/order/playtime?orderId=A1910052308012206" #I wanna put this in a better spot
class Friends:
Send_Friend_Request = "https://accounts.launcher-website-prod07.ol.epicgames.com/launcher/sendFriendRequest"
class FortniteNews:
News = "http://www.epicgames.com/fortnite/api/blog/getPosts?category=&postsPerPage=0&offset=0&locale=en-US&rootPageSlug=blog"