├── docs
└── .nojekyll
├── .gitattributes
├── .gitignore
├── LICENSE
├── kickbase-v4.postman_environment.json
├── README.md
└── kickbase-v4.swagger.json
/docs/.nojekyll:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | *.local
12 |
13 | # Editor directories and files
14 | .vscode/*
15 | !.vscode/extensions.json
16 | .idea
17 | .DS_Store
18 | *.suo
19 | *.ntvs*
20 | *.njsproj
21 | *.sln
22 | *.sw?
23 | *.code-workspace
24 | .prettierrc
25 | .history
26 | .eslintrc.cjs
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 kevinskyba
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/kickbase-v4.postman_environment.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": "85ec65c0-7a9c-408d-b924-88f2bd338ab1",
3 | "name": "Kickbase v4",
4 | "values": [
5 | {
6 | "key": "api_url",
7 | "value": "https://api.kickbase.com",
8 | "type": "default",
9 | "enabled": true
10 | },
11 | {
12 | "key": "cdn_url",
13 | "value": "https://cdn.kickbase.com",
14 | "type": "default",
15 | "enabled": true
16 | },
17 | {
18 | "key": "email",
19 | "value": "username@toplevel.domain",
20 | "type": "default",
21 | "enabled": true
22 | },
23 | {
24 | "key": "password",
25 | "value": "password",
26 | "type": "secret",
27 | "enabled": true
28 | },
29 | {
30 | "key": "token",
31 | "value": "token",
32 | "type": "secret",
33 | "enabled": true
34 | },
35 | {
36 | "key": "leagueId",
37 | "value": "leagueId",
38 | "type": "default",
39 | "enabled": true
40 | },
41 | {
42 | "key": "userId",
43 | "value": "userId",
44 | "type": "default",
45 | "enabled": true
46 | },
47 | {
48 | "key": "competitionId",
49 | "value": "1",
50 | "type": "default",
51 | "enabled": true
52 | },
53 | {
54 | "key": "teamId",
55 | "value": "teamId",
56 | "type": "default",
57 | "enabled": true
58 | },
59 | {
60 | "key": "playerId",
61 | "value": "playerId",
62 | "type": "default",
63 | "enabled": true
64 | },
65 | {
66 | "key": "activityId",
67 | "value": "activityId",
68 | "type": "default",
69 | "enabled": true
70 | },
71 | {
72 | "key": "challengeId",
73 | "value": "challengeId",
74 | "type": "default",
75 | "enabled": true
76 | },
77 | {
78 | "key": "matchId",
79 | "value": "matchIda",
80 | "type": "default",
81 | "enabled": true
82 | },
83 | {
84 | "key": "offerId",
85 | "value": "offerId",
86 | "type": "default",
87 | "enabled": true
88 | },
89 | {
90 | "key": "dayNumber",
91 | "value": "1",
92 | "type": "default",
93 | "enabled": true
94 | },
95 | {
96 | "key": "start",
97 | "value": "0",
98 | "type": "default",
99 | "enabled": true
100 | },
101 | {
102 | "key": "max",
103 | "value": "50",
104 | "type": "default",
105 | "enabled": true
106 | },
107 | {
108 | "key": "timeframe",
109 | "value": "92",
110 | "type": "default",
111 | "enabled": true
112 | },
113 | {
114 | "key": "query",
115 | "value": "queryString",
116 | "type": "default",
117 | "enabled": true
118 | },
119 | {
120 | "key": "price",
121 | "value": "0",
122 | "type": "default",
123 | "enabled": true
124 | },
125 | {
126 | "key": "size",
127 | "value": "0",
128 | "type": "default",
129 | "enabled": true
130 | },
131 | {
132 | "key": "includeManagersAndBattles",
133 | "value": "true",
134 | "type": "default",
135 | "enabled": true
136 | },
137 | {
138 | "key": "position",
139 | "value": "1",
140 | "type": "default",
141 | "enabled": true
142 | },
143 | {
144 | "key": "sorting",
145 | "value": "asc",
146 | "type": "default",
147 | "enabled": true
148 | }
149 | ],
150 | "_postman_variable_scope": "environment",
151 | "_postman_exported_at": "2025-09-24T11:33:58.617Z",
152 | "_postman_exported_using": "Postman/11.64.0"
153 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 | Kickbase API v4 Documentation
8 |
9 |
10 |
19 |
20 |
33 |
34 | This repository contains the **API v4** documentation of the popular game **[kickbase](https://www.kickbase.com/)**. This work is unofficial and not related to kickbase in any way. All of this was done for scientific reasons only and you should not use it for anything else but for your personal learning!
35 |
36 | ## Usage
37 |
38 | ### Web
39 |
40 | > **NEW!** Directly use the browseable and interactive [Apidog Web Version](https://share.apidog.com/fe2420a6-d929-409f-9b1d-35122923316d)
41 |
42 | Use the browseable [Web Version](http://kevinskyba.github.io/kickbase-api-doc/index.html) made with [Apidog](https://apidog.com/blog/export-postman-documentation-to-html-or-markdown/) and [Swagger Hub](https://app.swaggerhub.com/)
43 |
44 | **How to get started:**
45 |
46 | 1. Make sure `"https://api.kickbase.com - Kickbase v4"` is selected in the `"Servers"` dropdown
47 |
48 | 2. Choose endpoint `/v4/user/login` from the `User` section
49 |
50 | 3. On the right hand side click the `"Try it out"` button
51 |
52 | 4. Fill in your kickbase email and password into the request body json
53 |
54 | ```json
55 | {
56 | "em": "your-kickbase-email",
57 | "loy": false,
58 | "pass": "your-kickbase-password",
59 | "rep": {}
60 | }
61 | ```
62 |
63 | 5. Click the `"Execute"` button and copy the property `"tkn"` from the response body json
64 |
65 | ```json
66 | {
67 | ...
68 | "tkn": "my-secret-access-token",
69 | ...
70 | }
71 | ```
72 |
73 | 6. Click `"Authorize"` at the top right corner of the page, paste in the `access token` into the value field and click again `"Authorize"`
74 |
75 | 7. Now you can try out any endpoint with your path and query params
76 |
77 | ### Local
78 |
79 | #### Postman
80 |
81 | Import the [Postman Collection JSON](kickbase-v4.postman_collection.json) and [Postman Eniroment JSON](kickbase-v4.postman_environment.json) into your postman workspace
82 |
83 | #### Swagger
84 |
85 | Import the [Swagger JSON](kickbase-v4.swagger.json) into your swagger hub
86 |
87 | ## Contributors
88 |
89 |
98 |
99 | ## Issues
100 |
101 | As all of the endpoints are **found by try and error**, this documentation **may be incomplete**. Most likely there are more endpoints. **In fact, most of the post, put or delete requests have missing request bodies**. If you have any further information about new or existing endpoints feel free to submit them in the issues. We'll review and add them to the documentation.
102 |
103 | Thank you!
104 |
105 | ## License
106 |
107 | This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
108 |
--------------------------------------------------------------------------------
/kickbase-v4.swagger.json:
--------------------------------------------------------------------------------
1 | {"swagger":"2.0","info":{"contact":{},"description":"This API was published as part of [kickbase-api-doc](https://github.com/kevinskyba/kickbase-api-doc) on GitHub. It is licensed under the [MIT License](https://github.com/kevinskyba/kickbase-api-doc/blob/master/LICENSE). The purpose of this documentation is for scientific reasons only!","title":"Kickbase v4","version":"1.0.0"},"basePath":"%7B%7Bapi_url%7D%7D","paths":{"/v4/base/overview":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Bonus Collection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[],"items":{},"type":"array"},"url":{"example":"https://go.kickbase.com/tipicodailybonus","type":"string"}},"type":"object"}}},"description":"Base Overview","operationId":"baseOverview","summary":"Base Overview"}},"/v4/bonus/collect":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Bonus Collection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[],"items":{},"type":"array"},"url":{"example":"https://go.kickbase.com/tipicodailybonus","type":"string"}},"type":"object"}}},"description":"Bonus Collection","operationId":"bonusCollection","summary":"Bonus Collection"}},"/v4/challenges/archive":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Past Challenges","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ch":"string","fb":"string","fo":"string","lie":"string","p":0,"pl":0,"sid":"string","sn":"string"}],"items":{"properties":{"ch":{"example":"string","type":"string"},"fb":{"example":"string","type":"string"},"fo":{"example":"string","type":"string"},"lie":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"sid":{"example":"string","type":"string"},"sn":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"Past Challenges","operationId":"pastChallenges","summary":"Past Challenges"}},"/v4/challenges/favorites":{"post":{"consumes":["application/json"],"produces":["application/json"],"parameters":[{"in":"body","name":"body","schema":{"properties":{"ui":{"example":"userId","type":"string"}},"type":"object"}}],"responses":{"200":{"description":"Add Manager To Favorites","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Challenges","Favorites"],"description":"Add Manager To Favorites","operationId":"addManagerToFavorites","summary":"Add Manager To Favorites"}},"/v4/challenges/favorites/{userId}":{"parameters":[{"in":"path","name":"userId","required":true,"type":"string"}],"delete":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Remove Manager From Favorites","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Challenges","Favorites"],"description":"Remove Manager From Favorites","operationId":"removeManagerFromFavorites","summary":"Remove Manager From Favorites"}},"/v4/challenges/overview":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"All Challanges","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ch":"string","cpi":"string","fb":"string","fo":"string","lis":"string","t":0}],"items":{"properties":{"ch":{"example":"string","type":"string"},"cpi":{"example":"string","type":"string"},"fb":{"example":"string","type":"string"},"fo":{"example":"string","type":"string"},"lis":{"example":"string","type":"string"},"t":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"All Challanges","operationId":"allChallanges","summary":"All Challanges"}},"/v4/challenges/recommended":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Recommended Challenges","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ch":"string","fb":"string","fo":"string","lis":"string"}],"items":{"properties":{"ch":{"example":"string","type":"string"},"fb":{"example":"string","type":"string"},"fo":{"example":"string","type":"string"},"lis":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"Recommended Challenges","operationId":"recommendedChallenges","summary":"Recommended Challenges"}},"/v4/challenges/selection":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Selection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[],"items":{},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"Selection","operationId":"selection","summary":"Selection"}},"/v4/challenges/{challengeId}/favorites":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Challenge Favorites","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"value":{"properties":{"day":{"example":0,"type":"number"},"ia":{"example":true,"type":"boolean"},"it":{"example":[{"cur":true,"ifa":true,"pl":0,"ui":"string","unm":"string"}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"ifa":{"example":true,"type":"boolean"},"pl":{"example":0,"type":"number"},"ui":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"type":"object"}}},"tags":["Challenges","Favorites"],"description":"Favorite Managers","operationId":"favoriteManagers","summary":"Favorite Managers"}},"/v4/challenges/{challengeId}/favorites/search":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"query","type":"string"},{"in":"query","name":"start","type":"string"},{"in":"query","name":"max","type":"string"}],"responses":{"200":{"description":"Favorite Managers Copy","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[],"items":{},"type":"array"},"si":{"example":0,"type":"number"},"tc":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Challenges","Favorites"],"description":"Search Favorite Managers","operationId":"searchFavoriteManagers","summary":"Search Favorite Managers"}},"/v4/challenges/{challengeId}/lineup/clear":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"post":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Reset","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Reset","operationId":"reset","summary":"Reset"}},"/v4/challenges/{challengeId}/lineup/fill":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"post":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Autofill","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Autofill","operationId":"autofill","summary":"Autofill"}},"/v4/challenges/{challengeId}/lineup/livepitch":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Live Pitch","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"lp":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"p":{"example":0,"type":"number"},"pa":{"example":true,"type":"boolean"}},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Live Pitch","operationId":"livePitch","summary":"Live Pitch"}},"/v4/challenges/{challengeId}/lineup/overview":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Overview","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"b":{"example":0,"type":"number"},"cpi":{"example":"string","type":"string"},"li":{"example":"string","type":"string"},"lis":{"example":"string","type":"string"},"lp":{"example":[{"ap":0,"lo":0,"lst":0,"mdst":0,"mv":0,"n":"string","pi":"string","pos":0,"st":0,"t1":"string","t2":"string","tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"lo":{"example":0,"type":"number"},"lst":{"example":0,"type":"number"},"mdst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pi":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t2":{"example":"string","type":"string"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"plpt":{"example":"string","type":"string"},"t":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Overview","operationId":"overview1","summary":"Overview"}},"/v4/challenges/{challengeId}/lineup/selection":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"position","type":"string"},{"in":"query","name":"sorting","type":"string"},{"in":"query","name":"query","type":"string"},{"in":"query","name":"start","type":"string"},{"in":"query","name":"max","type":"string"}],"responses":{"200":{"description":"Player List for Lineup Selection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ap":0,"dis":true,"if":true,"mdst":0,"mpst":0,"mv":0,"n":"string","pi":"string","pos":0,"st":0,"t1":"string","t2":"string","tid":"string","tp":0}],"items":{"properties":{"ap":{"example":0,"type":"number"},"dis":{"example":true,"type":"boolean"},"if":{"example":true,"type":"boolean"},"mdst":{"example":0,"type":"number"},"mpst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pi":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t2":{"example":"string","type":"string"},"tid":{"example":"string","type":"string"},"tp":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Player List for Lineup Selection","operationId":"playerListForLineupSelection","summary":"Player List for Lineup Selection"}},"/v4/challenges/{challengeId}/lineup/teams":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Club List","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"tms":{"example":["string"],"items":{"example":"string","type":"string"},"type":"array"}},"type":"object"}}},"tags":["Challenges","Lineup"],"description":"Club List","operationId":"clubList","summary":"Club List"}},"/v4/challenges/{challengeId}/performance":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Performance","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"li":{"example":"string","type":"string"},"lp":{"example":[],"items":{},"type":"array"},"pl":{"example":0,"type":"number"},"t":{"example":3,"type":"number"},"u":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"}},"type":"object"}},"type":"object"}}},"tags":["Challenges"],"description":"Performance","operationId":"performance3","summary":"Performance"}},"/v4/challenges/{challengeId}/profile":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Challenge Description","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"cpi":{"example":"string","type":"string"},"d":{"example":"string","type":"string"},"fb":{"example":"string","type":"string"},"fo":{"example":"string","type":"string"},"ft":{"example":"string","type":"string"},"mds":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"n":{"example":"string","type":"string"},"pz":{"example":[{"d":"string","ti":"string","url":"string"}],"items":{"properties":{"d":{"example":"string","type":"string"},"ti":{"example":"string","type":"string"},"url":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"ruls":{"properties":{"b":{"example":0,"type":"number"},"mpst":{"example":0,"type":"number"}},"type":"object"},"uc":{"example":0,"type":"number"},"uj":{"example":true,"type":"boolean"},"usfp":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"Challenge Description","operationId":"challengeDescription","summary":"Challenge Description"}},"/v4/challenges/{challengeId}/ranking":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Ranking","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"fm":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"fp":{"example":[{"i":"string","n":"string","p":0,"tid":"string","usp":0}],"items":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"usp":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"li":{"example":"string","type":"string"},"t":{"example":0,"type":"number"},"tom":{"example":[{"cur":true,"ifa":true,"p":0,"pl":0,"ui":"string","unm":"string"}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"ifa":{"example":true,"type":"boolean"},"p":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"ui":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Challenges"],"description":"Ranking","operationId":"ranking2","summary":"Ranking"}},"/v4/challenges/{challengeId}/table":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Ranking","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"il":{"example":false,"type":"boolean"},"li":{"example":"string","type":"string"},"t":{"example":0,"type":"number"},"u":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"}},"type":"object"}},"type":"object"}}},"tags":["Challenges","Managers1"],"description":"Ranking","operationId":"ranking1","summary":"Ranking"}},"/v4/challenges/{challengeId}/table/{userId}":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Detail","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"ifa":{"example":false,"type":"boolean"},"il":{"example":false,"type":"boolean"},"li":{"example":"string","type":"string"},"lp":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"t":{"example":0,"type":"number"},"u":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"}},"type":"object"}},"type":"object"}}},"tags":["Challenges","Managers1"],"description":"Detail","operationId":"detail","summary":"Detail"}},"/v4/challenges/{challengeId}/top10":{"parameters":[{"in":"path","name":"challengeId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Leaderboard","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"day":{"example":0,"type":"number"},"ia":{"example":true,"type":"boolean"},"mid":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"tom":{"example":[{"cur":true,"ifa":true,"p":0,"pl":0,"ui":"string","unm":"string"}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"ifa":{"example":true,"type":"boolean"},"p":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"ui":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"uc":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Challenges","Managers1"],"description":"Top 10 Managers","operationId":"top10Managers","summary":"Top 10 Managers"}},"/v4/chat/leagueselection":{"get":{"produces":["text/plain"],"parameters":[],"responses":{"200":{"description":"Chat League Selection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}}}},"tags":["Chat"],"description":"League Selection","operationId":"leagueSelection","summary":"League Selection"}},"/v4/chat/refreshtoken":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Chat Refresh Token","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"tkn":{"example":"string","type":"string"},"tknex":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Chat"],"description":"Refresh Token","operationId":"refreshToken","summary":"Refresh Token"}},"/v4/competitions/{competitionId}/matchdays":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Fixtures","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"value":{"properties":{"day":{"example":0,"type":"number"},"it":{"example":[{"day":0,"it":[{"day":0,"dt":"string","il":true,"mi":"string","mtd":"string","st":0,"t1":"string","t1g":0,"t1sy":"string","t2":"string","t2g":0,"t2sy":"string"}]}],"items":{"properties":{"day":{"example":0,"type":"number"},"it":{"example":[{"day":0,"dt":"string","il":true,"mi":"string","mtd":"string","st":0,"t1":"string","t1g":0,"t1sy":"string","t2":"string","t2g":0,"t2sy":"string"}],"items":{"properties":{"day":{"example":0,"type":"number"},"dt":{"example":"string","type":"string"},"il":{"example":true,"type":"boolean"},"mi":{"example":"string","type":"string"},"mtd":{"example":"string","type":"string"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t1sy":{"example":"string","type":"string"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"},"t2sy":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"},"type":"array"}},"type":"object"}},"type":"object"}}},"tags":["Competitions"],"description":"Fixtures","operationId":"fixtures","summary":"Fixtures"}},"/v4/competitions/{competitionId}/overview":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Details","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"a":{"example":0,"type":"number"},"ap":{"example":0,"type":"number"},"cv":{"example":0,"type":"number"},"day":{"example":0,"type":"number"},"dt":{"example":"string","type":"string"},"fn":{"example":"string","type":"string"},"g":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"iposl":{"example":true,"type":"boolean"},"ismc":{"example":0,"type":"number"},"ln":{"example":"string","type":"string"},"mdsum":{"example":[{"cur":true,"day":0,"md":"string","mdst":0,"t1":"string","t1g":0,"t2":"string","t2g":0}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"day":{"example":0,"type":"number"},"md":{"example":"string","type":"string"},"mdst":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"mv":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"opl":{"example":[{"iposl":true,"li":"string","lnm":"string","onm":"string","oui":"string"}],"items":{"properties":{"iposl":{"example":true,"type":"boolean"},"li":{"example":"string","type":"string"},"lnm":{"example":"string","type":"string"},"onm":{"example":"string","type":"string"},"oui":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"oui":{"example":"string","type":"string"},"ph":{"example":[{"hp":true,"p":0}],"items":{"properties":{"hp":{"example":true,"type":"boolean"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"plpt":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"r":{"example":0,"type":"number"},"sec":{"example":0,"type":"number"},"shn":{"example":0,"type":"number"},"sl":{"example":true,"type":"boolean"},"smc":{"example":0,"type":"number"},"smdc":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"stud":{"example":0,"type":"number"},"stxt":{"example":"string","type":"string"},"tfhmvt":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tn":{"example":"string","type":"string"},"tp":{"example":0,"type":"number"},"y":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Competitions","Players1"],"description":"Details","operationId":"details","summary":"Details"}},"/v4/competitions/{competitionId}/playercenter/{playerId}":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Event History","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"events":{"example":[{"att":0,"ei":"string","eti":0,"mt":0,"p":0}],"items":{"properties":{"att":{"example":0,"type":"number"},"ei":{"example":"string","type":"string"},"eti":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"i":{"example":"string","type":"string"},"k":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"md":{"example":"string","type":"string"},"mi":{"example":0,"type":"number"},"mst":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"mtd":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"t1":{"example":0,"type":"number"},"t1g":{"example":0,"type":"number"},"t2":{"example":0,"type":"number"},"t2g":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Competitions","Players1"],"description":"Event History","operationId":"eventHistory","summary":"Event History"}},"/v4/competitions/{competitionId}/players":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"description":"Probably available on the next update","in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Players","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"day":{"example":0,"type":"number"},"it":{"example":[{"il":true,"n":"string","p":0,"pi":"string","pos":0,"tid":"string"}],"items":{"properties":{"il":{"example":true,"type":"boolean"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"pi":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"sn":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Competitions","Players1"],"description":"Players","operationId":"players","summary":"Players"}},"/v4/competitions/{competitionId}/players/search":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"description":"league","in":"query","name":"leagueId","type":"string"},{"description":"query string","in":"query","name":"query","type":"string"},{"description":"offset","in":"query","name":"start","type":"string"},{"description":"number of results","in":"query","name":"max","type":"string"}],"responses":{"200":{"description":"Search","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"value":{"properties":{"it":{"example":[{"iotm":true,"mv":0,"n":"string","onm":"string","pi":"string","pos":0,"st":0,"tid":"string"}],"items":{"properties":{"iotm":{"example":true,"type":"boolean"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"onm":{"example":"string","type":"string"},"pi":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"type":"object"}}},"tags":["Competitions","Players1"],"description":"Search","operationId":"search","summary":"Search"}},"/v4/competitions/{competitionId}/players/{playerId}/marketvalue/{timeframe}":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"},{"description":"92, 365 but probably more possibilties with upcoming releases","in":"path","name":"timeframe","required":true,"type":"string"}],"get":{"produces":["text/plain"],"parameters":[],"responses":{"200":{"description":"Market Value","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}}}},"tags":["Competitions","Players1"],"description":"Market Value","operationId":"marketValue1","summary":"Market Value"}},"/v4/competitions/{competitionId}/players/{playerId}/performance":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Performance","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"n":"string","ph":[{"ap":0,"asp":0,"cur":true,"day":0,"k":[0],"md":"string","mdst":0,"mp":"string","p":0,"pt":"string","st":0,"t1":"string","t1g":0,"t2":"string","t2g":0,"tp":0}],"ti":"string"}],"items":{"properties":{"n":{"example":"string","type":"string"},"ph":{"example":[{"ap":0,"asp":0,"cur":true,"day":0,"k":[0],"md":"string","mdst":0,"mp":"string","p":0,"pt":"string","st":0,"t1":"string","t1g":0,"t2":"string","t2g":0,"tp":0}],"items":{"properties":{"ap":{"example":0,"type":"number"},"asp":{"example":0,"type":"number"},"cur":{"example":true,"type":"boolean"},"day":{"example":0,"type":"number"},"k":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"md":{"example":"string","type":"string"},"mdst":{"example":0,"type":"number"},"mp":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"pt":{"example":"string","type":"string"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"},"tp":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"ti":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Competitions","Players1"],"description":"Performance","operationId":"performance2","summary":"Performance"}},"/v4/competitions/{competitionId}/ranking":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Ranking","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"il":true,"mdp":0,"mdpl":0,"sp":0,"spl":0,"tid":"string","tn":"string"}],"items":{"properties":{"il":{"example":true,"type":"boolean"},"mdp":{"example":0,"type":"number"},"mdpl":{"example":0,"type":"number"},"sp":{"example":0,"type":"number"},"spl":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tn":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Competitions"],"description":"Team Ranking","operationId":"teamRanking","summary":"Team Ranking"}},"/v4/competitions/{competitionId}/table":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Table","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"value":{"properties":{"it":{"example":[{"cp":0,"cpl":0,"gd":0,"il":true,"mc":0,"mi":"string","pcpl":0,"sp":0,"tid":"string","tn":"string"}],"items":{"properties":{"cp":{"example":0,"type":"number"},"cpl":{"example":0,"type":"number"},"gd":{"example":0,"type":"number"},"il":{"example":true,"type":"boolean"},"mc":{"example":0,"type":"number"},"mi":{"example":"string","type":"string"},"pcpl":{"example":0,"type":"number"},"sp":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tn":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}},"type":"object"}}},"tags":["Competitions"],"description":"Table","operationId":"table","summary":"Table"}},"/v4/competitions/{competitionId}/teams/{teamId}/teamcenter":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"},{"in":"path","name":"teamId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Matchday Players","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"i":"string","k":[0],"mdst":0,"n":"string","p":0}],"items":{"properties":{"i":{"example":"string","type":"string"},"k":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"mdst":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"ma":{"properties":{"dt":{"example":"string","type":"string"},"il":{"example":true,"type":"boolean"},"mi":{"example":"string","type":"string"},"mtd":{"example":"string","type":"string"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"}},"type":"object"},"p":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tn":{"example":"string","type":"string"},"tpm":{"example":[{"i":"string","n":"string","p":0}],"items":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Competitions","Teams1"],"description":"Matchday Players","operationId":"matchdayPlayers","summary":"Matchday Players"}},"/v4/competitions/{competitionId}/teams/{teamId}/teamprofile":{"parameters":[{"in":"path","name":"competitionId","required":true,"type":"string"},{"in":"path","name":"teamId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"All Players","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"avpcl":{"example":true,"type":"boolean"},"it":{"example":[{"ap":0,"i":"string","iotm":true,"lst":0,"mv":0,"mvgl":0,"mvt":0,"n":"string","ofc":0,"pos":0,"sdmvt":0,"st":0,"tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"iotm":{"example":true,"type":"boolean"},"lst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"mvgl":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofc":{"example":0,"type":"number"},"pos":{"example":0,"type":"number"},"sdmvt":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"npt":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"td":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tl":{"example":0,"type":"number"},"tn":{"example":"string","type":"string"},"tv":{"example":0,"type":"number"},"tw":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Competitions","Teams1"],"description":"All Players","operationId":"allPlayers","summary":"All Players"}},"/v4/config":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Config","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"ad":{"properties":{"k":{"example":["string"],"items":{"example":"string","type":"string"},"type":"array"},"t":{"example":0,"type":"number"}},"type":"object"},"cpi":{"example":"string","type":"string"},"cps":{"example":[{"b":0,"cpi":"string","cpt":0,"il":true,"lie":"string","lis":"string","ntb":0,"rcn":"string","tv":0}],"items":{"properties":{"b":{"example":0,"type":"number"},"cpi":{"example":"string","type":"string"},"cpt":{"example":0,"type":"number"},"il":{"example":true,"type":"boolean"},"lie":{"example":"string","type":"string"},"lis":{"example":"string","type":"string"},"ntb":{"example":0,"type":"number"},"rcn":{"example":"string","type":"string"},"tv":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"dapurl":{"example":"string","type":"string"},"disurl":{"example":"string","type":"string"},"fburl":{"example":"string","type":"string"},"icu":{"example":"string","type":"string"},"il":{"example":true,"type":"boolean"},"insturl":{"example":"string","type":"string"},"isfe":{"example":true,"type":"boolean"},"lcud":{"example":"string","type":"string"},"lie":{"example":"string","type":"string"},"lis":{"example":"string","type":"string"},"pturl":{"example":"string","type":"string"},"rsc":{"properties":{"sk":{"example":"string","type":"string"},"sut":{"example":"string","type":"string"},"t":{"example":"string","type":"string"}},"type":"object"},"rurl":{"example":"string","type":"string"},"sobt":{"properties":{},"type":"object"},"spurl":{"example":"string","type":"string"},"surl":{"example":"string","type":"string"},"terms":{"example":"string","type":"string"},"twitchurl":{"example":"string","type":"string"},"twitterurl":{"example":"string","type":"string"},"ytburl":{"example":"string","type":"string"}},"type":"object"}}},"description":"Config","operationId":"config","summary":"Config"}},"/v4/leagues/selection":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"League Selection","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"adm":true,"b":0,"bs":0,"cpi":"string","f":"string","i":"string","lpc":0,"n":"string","pl":0,"tv":0,"un":0,"vr":0}],"items":{"properties":{"adm":{"example":true,"type":"boolean"},"b":{"example":0,"type":"number"},"bs":{"example":0,"type":"number"},"cpi":{"example":"string","type":"string"},"f":{"example":"string","type":"string"},"i":{"example":"string","type":"string"},"lpc":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pl":{"example":0,"type":"number"},"tv":{"example":0,"type":"number"},"un":{"example":0,"type":"number"},"vr":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues"],"description":"List","operationId":"list","summary":"List"}},"/v4/leagues/{leagueId}/activitiesFeed":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"start","type":"string"},{"in":"query","name":"max","type":"string"}],"responses":{"200":{"description":"Activity Feed","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"af":{"example":[{"coc":0,"data":{"bn":0,"byr":"string","day":0,"pi":"string","pn":"string","t":0,"tid":"string","trp":0},"dt":"string","i":"string","t":0}],"items":{"properties":{"coc":{"example":0,"type":"number"},"data":{"properties":{"bn":{"example":0,"type":"number"},"byr":{"example":"string","type":"string"},"day":{"example":0,"type":"number"},"pi":{"example":"string","type":"string"},"pn":{"example":"string","type":"string"},"t":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"trp":{"example":0,"type":"number"}},"type":"object"},"dt":{"example":"string","type":"string"},"i":{"example":"string","type":"string"},"t":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Activities"],"description":"Activity Feed","operationId":"activityFeed","summary":"Activity Feed"}},"/v4/leagues/{leagueId}/activitiesFeed/{activityId}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"activityId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Activity Feed Item","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"data":{"properties":{"bn":{"example":0,"type":"number"},"day":{"example":0,"type":"number"}},"type":"object"},"dt":{"example":"string","type":"string"},"t":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Activities"],"description":"Feed Item","operationId":"feedItem","summary":"Feed Item"},"post":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Activities"],"description":"Send Feed Item Comment","operationId":"sendFeedItemComment","summary":"Send Feed Item Comment"}},"/v4/leagues/{leagueId}/activitiesFeed/{activityId}/comments":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"activityId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"start","type":"string"},{"in":"query","name":"max","type":"string"}],"responses":{"200":{"description":"Activity Comments","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"coc":{"example":0,"type":"number"},"it":{"example":[{"comm":"string","dt":"string","prurl":"string","ui":"string","unm":"string"}],"items":{"properties":{"comm":{"example":"string","type":"string"},"dt":{"example":"string","type":"string"},"prurl":{"example":"string","type":"string"},"ui":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Activities"],"description":"Feed Item Comments","operationId":"feedItemComments","summary":"Feed Item Comments"}},"/v4/leagues/{leagueId}/battles/{type}/users":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"type","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User Battles","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"d":{"example":"description","type":"string"},"n":{"example":"name","type":"string"},"us":{"example":[{"pl":0,"u":{"i":"userId","n":"userName"},"v":"value"}],"items":{"properties":{"pl":{"example":0,"type":"number"},"u":{"properties":{"i":{"example":"userId","type":"string"},"n":{"example":"userName","type":"string"}},"type":"object"},"v":{"example":"value","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Achivements"],"description":"Battle by Type","operationId":"battleByType","summary":"Battle by Type"}},"/v4/leagues/{leagueId}/lineup":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Save Players Lineup","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ap":0,"ht":true,"i":"string","lo":0,"lst":0,"mdst":0,"n":"string","os":"string","ph":[{"hp":true,"p":0}],"pos":0,"st":0,"tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"ht":{"example":true,"type":"boolean"},"i":{"example":"string","type":"string"},"lo":{"example":0,"type":"number"},"lst":{"example":0,"type":"number"},"mdst":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"os":{"example":"string","type":"string"},"ph":{"example":[{"hp":true,"p":0}],"items":{"properties":{"hp":{"example":true,"type":"boolean"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Me"],"description":"My Lineup","operationId":"myLineup","summary":"My Lineup"},"post":{"consumes":["text/plain"],"produces":["application/json"],"parameters":[{"in":"body","name":"body","schema":{"format":"binary","type":"string"}}],"responses":{"200":{"description":"Save Players Lineup","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Leagues","Me"],"description":"Update My Lineup","operationId":"updateMyLineup","summary":"Update My Lineup"}},"/v4/leagues/{leagueId}/managers/{userId}/dashboard":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Profile Dashboard","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"adm":{"example":true,"type":"boolean"},"ap":{"example":0,"type":"number"},"li":{"example":"string","type":"string"},"lnm":{"example":"string","type":"string"},"mdw":{"example":0,"type":"number"},"ph":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"pl":{"example":0,"type":"number"},"prft":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"t":{"example":0,"type":"number"},"tp":{"example":0,"type":"number"},"tv":{"example":0,"type":"number"},"u":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Leagues","Managers"],"description":"Profile","operationId":"profile","summary":"Profile"}},"/v4/leagues/{leagueId}/managers/{userId}/performance":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Performance","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ap":0,"it":[{"cur":true,"day":0,"md":"string","mdp":0,"tw":true}],"mdw":0,"pl":0,"sid":"string","sn":"string","tp":0}],"items":{"properties":{"ap":{"example":0,"type":"number"},"it":{"example":[{"cur":true,"day":0,"md":"string","mdp":0,"tw":true}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"day":{"example":0,"type":"number"},"md":{"example":"string","type":"string"},"mdp":{"example":0,"type":"number"},"tw":{"example":true,"type":"boolean"}},"type":"object"},"type":"array"},"mdw":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"sid":{"example":"string","type":"string"},"sn":{"example":"string","type":"string"},"tp":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"st":{"example":0,"type":"number"},"u":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Leagues","Managers"],"description":"Performance","operationId":"performance","summary":"Performance"}},"/v4/leagues/{leagueId}/managers/{userId}/squad":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Manager Squad Details","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ap":0,"iotm":true,"lo":0,"lst":0,"mv":0,"mvgl":0,"mvt":0,"p":0,"pi":"string","pn":"string","pos":0,"prc":0,"sdmvt":0,"st":0,"tfhmvt":0,"tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"iotm":{"example":true,"type":"boolean"},"lo":{"example":0,"type":"number"},"lst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"mvgl":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"p":{"example":0,"type":"number"},"pi":{"example":"string","type":"string"},"pn":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"prc":{"example":0,"type":"number"},"sdmvt":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tfhmvt":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"nps":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"u":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Leagues","Managers"],"description":"Squad Details","operationId":"squadDetails","summary":"Squad Details"}},"/v4/leagues/{leagueId}/managers/{userId}/transfer":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"start","type":"string"}],"responses":{"200":{"description":"Manager Profile Transfers","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"dt":"string","pi":"string","pn":"string","tid":"string","trp":0,"tty":0}],"items":{"properties":{"dt":{"example":"string","type":"string"},"pi":{"example":"string","type":"string"},"pn":{"example":"string","type":"string"},"tid":{"example":"string","type":"string"},"trp":{"example":0,"type":"number"},"tty":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"u":{"example":"string","type":"string"},"unm":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Leagues","Managers"],"description":"Transfers","operationId":"transfers","summary":"Transfers"}},"/v4/leagues/{leagueId}/market":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Players On Transfer","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"day":{"example":0,"type":"number"},"dt":{"example":"string","type":"string"},"it":{"example":[{"ap":0,"dt":"string","exs":0,"fn":"string","i":"string","iposl":true,"isn":true,"mv":0,"mvt":0,"n":"string","ofc":0,"p":0,"pos":0,"prc":0,"st":0,"tid":"string","uoid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"dt":{"example":"string","type":"string"},"exs":{"example":0,"type":"number"},"fn":{"example":"string","type":"string"},"i":{"example":"string","type":"string"},"iposl":{"example":true,"type":"boolean"},"isn":{"example":true,"type":"boolean"},"mv":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofc":{"example":0,"type":"number"},"p":{"example":0,"type":"number"},"pos":{"example":0,"type":"number"},"prc":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"uoid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"mvud":{"example":"string","type":"string"},"nps":{"example":0,"type":"number"},"tv":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Market"],"description":"Players On Transfer","operationId":"playersOnTransfer","summary":"Players On Transfer"},"post":{"consumes":["text/plain"],"parameters":[{"in":"body","name":"body","schema":{"format":"binary","type":"string"}}],"responses":{"200":{"description":""}},"tags":["Leagues","Market"],"description":"Set Player Transfer Price","operationId":"setPlayerTransferPrice","summary":"Set Player Transfer Price"}},"/v4/leagues/{leagueId}/market/{playerId}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"delete":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Remove Player From Market","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Leagues","Market"],"description":" Remove Player From Market","operationId":"removePlayerFromMarket","summary":" Remove Player From Market"}},"/v4/leagues/{leagueId}/market/{playerId}/offers":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"post":{"consumes":["text/plain"],"produces":["application/json"],"parameters":[{"in":"body","name":"body","schema":{"format":"binary","type":"string"}}],"responses":{"200":{"description":"Place An Offer","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"ofi":{"example":"offerId","type":"string"}},"type":"object"}}},"tags":["Leagues","Market"],"description":"Place An Offer","operationId":"placeAnOffer","summary":"Place An Offer"}},"/v4/leagues/{leagueId}/market/{playerId}/offers/{offerId}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"},{"in":"path","name":"offerId","required":true,"type":"string"}],"delete":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Withdraw Offer","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{},"type":"object"}}},"tags":["Leagues","Market"],"description":"Withdraw Offer","operationId":"withdrawOffer","summary":"Withdraw Offer"}},"/v4/leagues/{leagueId}/market/{playerId}/offers/{offerId}/accept":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"},{"in":"path","name":"offerId","required":true,"type":"string"}],"delete":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Market"],"description":"Accept Manager Offer","operationId":"acceptManagerOffer","summary":"Accept Manager Offer"}},"/v4/leagues/{leagueId}/market/{playerId}/offers/{offerId}/decline":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"},{"in":"path","name":"offerId","required":true,"type":"string"}],"delete":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Market"],"description":"Decline Manager Offer","operationId":"declineManagerOffer","summary":"Decline Manager Offer"}},"/v4/leagues/{leagueId}/market/{playerId}/sell":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"delete":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Market"],"description":"Accept Kickbase Offer","operationId":"acceptKickbaseOffer","summary":"Accept Kickbase Offer"}},"/v4/leagues/{leagueId}/me":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User League Info","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"adm":{"example":true,"type":"boolean"},"b":{"example":0,"type":"number"},"bs":{"example":0,"type":"number"},"cpi":{"example":"string","type":"string"},"lnm":{"example":"string","type":"string"},"mppu":{"example":0,"type":"number"},"mpst":{"example":0,"type":"number"},"tpc":{"example":[{"npt":0,"tid":"string"}],"items":{"properties":{"npt":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"un":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Me"],"description":"My Stats","operationId":"myStats","summary":"My Stats"}},"/v4/leagues/{leagueId}/me/budget":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User League Budget","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"b":{"example":0,"type":"number"},"bs":{"example":0,"type":"number"},"pbas":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Me"],"description":"My Budget","operationId":"myBudget","summary":"My Budget"}},"/v4/leagues/{leagueId}/overview":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"description":"default false, set true to see managers and battle","in":"query","name":"includeManagersAndBattles","type":"string"}],"responses":{"200":{"description":"League Overview","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"adm":{"example":true,"type":"boolean"},"amd":{"example":true,"type":"boolean"},"b":{"example":0,"type":"number"},"btls":{"example":[{"d":"string","n":"string","t":0,"u":{"i":"string","n":"string"}}],"items":{"properties":{"d":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"t":{"example":0,"type":"number"},"u":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"}},"type":"object"}},"type":"object"},"type":"array"},"cpi":{"example":"string","type":"string"},"cpn":{"example":"string","type":"string"},"dt":{"example":"string","type":"string"},"gpm":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"ism":{"example":true,"type":"boolean"},"isp":{"example":true,"type":"boolean"},"isr":{"example":true,"type":"boolean"},"lnm":{"example":"string","type":"string"},"mgc":{"example":0,"type":"number"},"mgm":{"example":0,"type":"number"},"mid":{"example":["string"],"items":{"example":"string","type":"string"},"type":"array"},"mppu":{"example":0,"type":"number"},"mpst":{"example":0,"type":"number"},"us":{"example":[{"i":"string","n":"string"}],"items":{"properties":{"i":{"example":"string","type":"string"},"n":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues"],"description":"Overview","operationId":"overview","summary":"Overview"}},"/v4/leagues/{leagueId}/players/{playerId}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Player","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"a":{"example":0,"type":"number"},"ap":{"example":0,"type":"number"},"day":{"example":0,"type":"number"},"dt":{"example":"string","type":"string"},"fn":{"example":"string","type":"string"},"g":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"iposl":{"example":true,"type":"boolean"},"ismc":{"example":0,"type":"number"},"ln":{"example":"string","type":"string"},"mdsum":{"example":[{"cur":true,"day":0,"md":"string","mdst":0,"t1":"string","t1g":0,"t2":"string","t2g":0}],"items":{"properties":{"cur":{"example":true,"type":"boolean"},"day":{"example":0,"type":"number"},"md":{"example":"string","type":"string"},"mdst":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"mv":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"opl":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"oui":{"example":"string","type":"string"},"ph":{"example":[{"hp":true,"p":0}],"items":{"properties":{"hp":{"example":true,"type":"boolean"},"p":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"plpt":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"r":{"example":0,"type":"number"},"sec":{"example":0,"type":"number"},"shn":{"example":0,"type":"number"},"sl":{"example":true,"type":"boolean"},"smc":{"example":0,"type":"number"},"smdc":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"stud":{"example":0,"type":"number"},"stxt":{"example":"string","type":"string"},"tfhmvt":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tn":{"example":"string","type":"string"},"tp":{"example":0,"type":"number"},"y":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Players"],"description":"Player","operationId":"player","summary":"Player"}},"/v4/leagues/{leagueId}/players/{playerId}/marketvalue/{timeframe}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"},{"in":"path","name":"timeframe","required":true,"type":"string"}],"get":{"produces":["text/plain"],"parameters":[],"responses":{"200":{"description":"Player Market Value","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}}}},"tags":["Leagues","Players"],"description":"Market Value","operationId":"marketValue","summary":"Market Value"}},"/v4/leagues/{leagueId}/players/{playerId}/performance":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Player Performance","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"n":"string","ph":[{"ap":0,"asp":0,"cur":true,"day":0,"k":[0],"md":"string","mdst":0,"mp":"string","p":0,"pt":"string","st":0,"t1":"string","t1g":0,"t2":"string","t2g":0,"tp":0}],"ti":"string"}],"items":{"properties":{"n":{"example":"string","type":"string"},"ph":{"example":[{"ap":0,"asp":0,"cur":true,"day":0,"k":[0],"md":"string","mdst":0,"mp":"string","p":0,"pt":"string","st":0,"t1":"string","t1g":0,"t2":"string","t2g":0,"tp":0}],"items":{"properties":{"ap":{"example":0,"type":"number"},"asp":{"example":0,"type":"number"},"cur":{"example":true,"type":"boolean"},"day":{"example":0,"type":"number"},"k":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"md":{"example":"string","type":"string"},"mdst":{"example":0,"type":"number"},"mp":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"pt":{"example":"string","type":"string"},"st":{"example":0,"type":"number"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"},"tp":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"ti":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Players"],"description":"Performance","operationId":"performance1","summary":"Performance"}},"/v4/leagues/{leagueId}/players/{playerId}/transferHistory":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"start","type":"string"}],"responses":{"200":{"description":"Player Transfers","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"iotm":{"example":true,"type":"boolean"},"ipl":{"example":true,"type":"boolean"},"iposl":{"example":true,"type":"boolean"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofs":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"oui":{"example":"string","type":"string"},"prc":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Players"],"description":"Transfer History","operationId":"transferHistory","summary":"Transfer History"}},"/v4/leagues/{leagueId}/players/{playerId}/transfers":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Player Transfers","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"iotm":{"example":true,"type":"boolean"},"ipl":{"example":true,"type":"boolean"},"iposl":{"example":true,"type":"boolean"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofs":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"oui":{"example":"string","type":"string"},"prc":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Players"],"description":"Transfers","operationId":"transfers1","summary":"Transfers"}},"/v4/leagues/{leagueId}/ranking":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"League Ranking","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"cpi":{"example":"string","type":"string"},"day":{"example":0,"type":"number"},"ia":{"example":true,"type":"boolean"},"il":{"example":true,"type":"boolean"},"ish":{"example":true,"type":"boolean"},"lfmd":{"example":0,"type":"number"},"nd":{"example":0,"type":"number"},"shmdn":{"example":0,"type":"number"},"sn":{"example":"string","type":"string"},"ti":{"example":"string","type":"string"},"us":{"example":[{"adm":true,"i":"string","iapl":true,"lp":[0],"mdp":0,"mdpl":0,"n":"string","pa":true,"shp":0,"sp":0,"spl":0,"tv":0}],"items":{"properties":{"adm":{"example":true,"type":"boolean"},"i":{"example":"string","type":"string"},"iapl":{"example":true,"type":"boolean"},"lp":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"mdp":{"example":0,"type":"number"},"mdpl":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pa":{"example":true,"type":"boolean"},"shp":{"example":0,"type":"number"},"sp":{"example":0,"type":"number"},"spl":{"example":0,"type":"number"},"tv":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues"],"description":"Ranking","operationId":"ranking","summary":"Ranking"}},"/v4/leagues/{leagueId}/scoutedplayers":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"delete":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Scouted Players"],"description":"Clear Scouted Players List","operationId":"clearScoutedPlayersList","summary":"Clear Scouted Players List"},"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Scouted Players List","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"iotm":true,"mv":0,"n":"string","onm":"string","pi":"string","pos":0,"st":0,"tid":"string"}],"items":{"properties":{"iotm":{"example":true,"type":"boolean"},"mv":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"onm":{"example":"string","type":"string"},"pi":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Scouted Players"],"description":"Scouted Players List","operationId":"scoutedPlayersList","summary":"Scouted Players List"}},"/v4/leagues/{leagueId}/scoutedplayers/{playerId}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"playerId","required":true,"type":"string"}],"delete":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Scouted Players"],"description":"Remove Player To Scouted Players List","operationId":"removePlayerToScoutedPlayersList","summary":"Remove Player To Scouted Players List"},"post":{"parameters":[],"responses":{"200":{"description":""}},"tags":["Leagues","Scouted Players"],"description":"Add Player To Scouted Players List","operationId":"addPlayerToScoutedPlayersList","summary":"Add Player To Scouted Players List"}},"/v4/leagues/{leagueId}/settings":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"League Settings (Admin Only)","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"amd":{"example":false,"type":"boolean"},"d":{"example":"string","type":"string"},"gpm":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"isp":{"example":false,"type":"boolean"},"lnm":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Leagues","Admin"],"description":"Settings (Admin Only)","operationId":"settingsAdminOnly","summary":"Settings (Admin Only)"}},"/v4/leagues/{leagueId}/settings/managers":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"League Settings Members (Admin Only)","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"day":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"us":{"example":[{"cbu":false,"i":"string","isu":false,"n":"string"}],"items":{"properties":{"cbu":{"example":false,"type":"boolean"},"i":{"example":"string","type":"string"},"isu":{"example":false,"type":"boolean"},"n":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Admin"],"description":"Members (Admin Only)","operationId":"membersAdminOnly","summary":"Members (Admin Only)"}},"/v4/leagues/{leagueId}/squad":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"My Players","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ap":0,"i":"string","iotm":true,"lo":0,"lst":0,"mdst":0,"mv":0,"mvgl":0,"mvt":0,"n":"string","ofc":0,"p":0,"pos":0,"sdmvt":0,"st":0,"tfhmvt":0,"tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"iotm":{"example":true,"type":"boolean"},"lo":{"example":0,"type":"number"},"lst":{"example":0,"type":"number"},"mdst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"mvgl":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofc":{"example":0,"type":"number"},"p":{"example":0,"type":"number"},"pos":{"example":0,"type":"number"},"sdmvt":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tfhmvt":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"mppu":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Me"],"description":"My Players","operationId":"myPlayers","summary":"My Players"}},"/v4/leagues/{leagueId}/teamcenter/myeleven":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"My Eleven","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"lp":{"example":[{"i":"string","k":[{}],"md":"string","mi":"string","mst":0,"mt":0,"mtd":"string","n":"string","p":0,"pos":0,"st":0,"tid":"string"}],"items":{"properties":{"i":{"example":"string","type":"string"},"k":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"md":{"example":"string","type":"string"},"mi":{"example":"string","type":"string"},"mst":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"mtd":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"pos":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"nlp":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"p":{"example":0,"type":"number"},"pa":{"example":true,"type":"boolean"}},"type":"object"}}},"tags":["Leagues","Me"],"description":"My Eleven","operationId":"myEleven","summary":"My Eleven"}},"/v4/leagues/{leagueId}/teams/{teamId}/teamprofile/":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"teamId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Profile","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"avpcl":{"example":true,"type":"boolean"},"it":{"example":[{"ap":0,"i":"string","iotm":true,"lst":0,"mv":0,"mvgl":0,"mvt":0,"n":"string","ofc":0,"pos":0,"sdmvt":0,"st":0,"tid":"string"}],"items":{"properties":{"ap":{"example":0,"type":"number"},"i":{"example":"string","type":"string"},"iotm":{"example":true,"type":"boolean"},"lst":{"example":0,"type":"number"},"mv":{"example":0,"type":"number"},"mvgl":{"example":0,"type":"number"},"mvt":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"ofc":{"example":0,"type":"number"},"pos":{"example":0,"type":"number"},"sdmvt":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"npt":{"example":0,"type":"number"},"pl":{"example":0,"type":"number"},"td":{"example":0,"type":"number"},"tid":{"example":"string","type":"string"},"tl":{"example":0,"type":"number"},"tn":{"example":"string","type":"string"},"tv":{"example":0,"type":"number"},"tw":{"example":0,"type":"number"}},"type":"object"}}},"tags":["Leagues","Teams"],"description":"Profile","operationId":"profile1","summary":"Profile"}},"/v4/leagues/{leagueId}/user/achievements":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User Achievements","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"it":{"example":[{"ac":0,"ise":false,"n":"name","t":0}],"items":{"properties":{"ac":{"example":0,"type":"number"},"ise":{"example":false,"type":"boolean"},"n":{"example":"name","type":"string"},"t":{"example":0,"type":"number"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Achivements"],"description":"Returns all available achievements for the current authenticated user and league.","operationId":"achievements","summary":"Achievements"}},"/v4/leagues/{leagueId}/user/achievements/{type}":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"type","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User Achievements Type Details","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"ac":{"example":10,"type":"number"},"d":{"example":"description","type":"string"},"dt":{"example":"datetimestring","type":"string"},"er":{"example":1000000,"type":"number"},"ise":{"example":true,"type":"boolean"},"isrp":{"example":true,"type":"boolean"},"n":{"example":"name","type":"string"},"t":{"example":5,"type":"number"}},"type":"object"}}},"tags":["Leagues","Achivements"],"description":"Achievements by Type","operationId":"achievementsByType","summary":"Achievements by Type"}},"/v4/leagues/{leagueId}/users/{userId}/teamcenter":{"parameters":[{"in":"path","name":"leagueId","required":true,"type":"string"},{"in":"path","name":"userId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[{"in":"query","name":"dayNumber","type":"string"}],"responses":{"200":{"description":"Manager Team Center","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"lp":{"example":[{"i":"string","k":[0],"md":"string","mi":0,"mst":0,"mt":0,"mtd":"string","n":"string","p":0,"st":0,"tid":0}],"items":{"properties":{"i":{"example":"string","type":"string"},"k":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"md":{"example":"string","type":"string"},"mi":{"example":0,"type":"number"},"mst":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"mtd":{"example":"string","type":"string"},"n":{"example":"string","type":"string"},"p":{"example":0,"type":"number"},"st":{"example":0,"type":"number"},"tid":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"n":{"example":"string","type":"string"},"nlp":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"ppc":{"example":0,"type":"number"},"us":{"example":[{"i":"string","lp":[0],"mdp":0,"pa":true,"unm":"string"}],"items":{"properties":{"i":{"example":"string","type":"string"},"lp":{"example":[0],"items":{"example":0,"type":"number"},"type":"array"},"mdp":{"example":0,"type":"number"},"pa":{"example":true,"type":"boolean"},"unm":{"example":"string","type":"string"}},"type":"object"},"type":"array"}},"type":"object"}}},"tags":["Leagues","Managers"],"description":"Team Center","operationId":"teamCenter","summary":"Team Center"}},"/v4/live/eventtypes":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Live Event Types","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"dds":{"properties":{"1":{"example":"Assist by {assistBy}","type":"string"},"2":{"example":"Forced by {forcedBy}","type":"string"},"3":{"example":"Goal by {goalBy}","type":"string"},"4":{"example":"-","type":"string"},"5":{"example":"Suspended for next match day","type":"string"},"6":{"example":"Suspended for next match day","type":"string"},"7":{"example":"Missed by {missedBy}","type":"string"},"100":{"example":"-","type":"string"}},"type":"object"},"it":{"example":[{"i":45,"ti":"Cross"},{"i":46,"ti":"Forward zone pass"},{"i":47,"ti":"Accurate Keeper-Sweeper (GK)"},{"i":48,"ti":"Accurate Throw (GK)"},{"i":49,"ti":"Accurate long Ball"},{"i":50,"ti":"Deadly Pass"},{"i":52,"ti":"Aerial lost"},{"i":79,"ti":"Aerial won"},{"i":80,"ti":"Rebound Assist"},{"i":81,"ti":"Rebound Assist"},{"i":82,"ti":"Own Goal forced"},{"i":83,"ti":"Deflected Assist"},{"i":84,"ti":"Woodwork Assist"},{"i":86,"ti":"Bonus: long range"},{"i":87,"ti":"Penalty scored"},{"i":88,"ti":"Penalty missed"},{"i":89,"ti":"Penalty missed"},{"i":90,"ti":"Penalty missed"},{"i":91,"ti":"Post"},{"i":92,"ti":"Left Post"},{"i":93,"ti":"Right Post"},{"i":94,"ti":"Back Pass Foul (GK)"},{"i":96,"ti":"Big Chance Created"},{"i":98,"ti":"Big Chance Created"},{"i":99,"ti":"Big Chance Created"},{"i":100,"ti":"Big Chance Created"},{"i":101,"ti":"Big Chance Created"},{"i":102,"ti":"Big Chance Created"},{"i":103,"ti":"Big Chance missed"},{"i":104,"ti":"Cross blocked"},{"i":106,"ti":"Challenge lost"},{"i":107,"ti":"Cleared on the Line"},{"i":108,"ti":"Cross not claimed (GK)"},{"i":109,"ti":"Dangerous play"},{"i":110,"ti":"Dive Catch (GK)"},{"i":111,"ti":"Dive Save (GK)"},{"i":112,"ti":"Cross blocked and Possession"},{"i":113,"ti":"Cleared"},{"i":114,"ti":"Mistake before Goal"},{"i":115,"ti":"Mistake before Shot"},{"i":116,"ti":"Incorrect Throw-In"},{"i":117,"ti":"Foul"},{"i":118,"ti":"Fouled last third"},{"i":120,"ti":"Intentional Assist"},{"i":121,"ti":"Cross Intercepted (GK)"},{"i":122,"ti":"One-on-One"},{"i":123,"ti":"Hand Ball"},{"i":124,"ti":"Interception"},{"i":125,"ti":"Ball intercepted"},{"i":126,"ti":"Interception in Box"},{"i":127,"ti":"Bonus: Last Man Tackle"},{"i":130,"ti":"Overrun"},{"i":131,"ti":"own goal"},{"i":132,"ti":"Penalty conceded"},{"i":133,"ti":"Penalty saved (GK)"},{"i":134,"ti":"Penalty won"},{"i":135,"ti":"Punched Ball (GK)"},{"i":136,"ti":"Red Card"},{"i":137,"ti":"Shot saved (GK)"},{"i":138,"ti":"Distance Shot saved (GK)"},{"i":139,"ti":"2nd Yellow"},{"i":141,"ti":"6 Sec violation (GK)"},{"i":142,"ti":"Standing saved (GK)"},{"i":143,"ti":"Pass final Third"},{"i":144,"ti":"Shot Assist"},{"i":147,"ti":"Offside"},{"i":148,"ti":"Offside"},{"i":149,"ti":"Shot on goal"},{"i":152,"ti":"Contest won"},{"i":153,"ti":"Corner won"},{"i":154,"ti":"Tackle won"},{"i":155,"ti":"Yellow Card"},{"i":156,"ti":"Starting 11"},{"i":157,"ti":"Possession lost"},{"i":159,"ti":"Team Goal"},{"i":160,"ti":"Goal conceded"},{"i":165,"ti":"Game Won"},{"i":166,"ti":"Game Lost"},{"i":167,"ti":"Played Minutes Bonus"},{"i":168,"ti":"Team Goal"},{"i":169,"ti":"Goal conceded"},{"i":170,"ti":"Team Goal"},{"i":171,"ti":"Goal conceded"},{"i":173,"ti":"Goal (GK)"},{"i":174,"ti":"Goal (Midfielder)"},{"i":175,"ti":"Goal (Defender)"},{"i":176,"ti":"Goal (Striker)"},{"i":177,"ti":"Assist (GK)"},{"i":178,"ti":"Assist (Defender)"},{"i":179,"ti":"Assist (Midfielder)"},{"i":180,"ti":"Assist (Striker)"},{"i":181,"ti":"Goal Set up (GK)"},{"i":182,"ti":"Goal Set up (Defender)"},{"i":183,"ti":"Goal Set up (Midfielder)"},{"i":184,"ti":"Goal Set up (Striker)"},{"i":185,"ti":"Goal (Substitute)"},{"i":186,"ti":"Assist (Substitute)"},{"i":187,"ti":"Goal Set up (Substitute)"},{"i":188,"ti":"Clean Sheet (GK)"},{"i":189,"ti":"Clean Sheet (Defender)"},{"i":190,"ti":"Clean Sheet (Midfielder)"},{"i":191,"ti":"Clean Sheet (Striker)"},{"i":194,"ti":"Big Chance saved (GK)"},{"i":195,"ti":"Ball covered unchallenged (GK)"},{"i":196,"ti":"Ball covered challenged (GK)"},{"i":197,"ti":"Shot on Target (narrow miss)"},{"i":199,"ti":"Shot on Goal (far away)"},{"i":200,"ti":"Shot on Target (blocked)"},{"i":203,"ti":"Penalty saved (penalty shoot-out)"},{"i":204,"ti":"Penalty missed (penalty shoot-out)"},{"i":205,"ti":"Penalty scored (penalty shoot-out)"},{"i":206,"ti":"Shot blocked"},{"i":207,"ti":"Shot blocked"},{"i":208,"ti":"Shot blocked"},{"i":-1,"ti":"Eingewechselt"},{"i":-2,"ti":"Ausgewechselt"},{"i":-8,"ti":"Von Anfang an gespielt"},{"i":-7,"ti":"Auf Bank"},{"i":-10,"ti":"Erste Halbzeit des Spiels beendet"},{"i":-17,"ti":"Zweite Halbzeit des Spiels beendet"}],"items":{"properties":{"i":{"example":45,"type":"number"},"ti":{"example":"Cross","type":"string"}},"type":"object"},"type":"array"},"lcud":{"example":"2024-08-25T09:08:14Z","type":"string"}},"type":"object"}}},"tags":["Live"],"description":"Event Types","operationId":"eventTypes","summary":"Event Types"}},"/v4/matches/{matchId}/betlink":{"parameters":[{"in":"path","name":"matchId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Match Betlink","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"url":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Matches"],"description":"Match Betlink","operationId":"matchBetlink","summary":"Match Betlink"}},"/v4/matches/{matchId}/details":{"parameters":[{"in":"path","name":"matchId","required":true,"type":"string"}],"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"Match Details","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"events":{"example":[{"ke":0,"mt":0,"pi":"string","pn":"string","rev":{"ke":0,"pi":"string","pn":"string","tid":"string"},"tid":"string"}],"items":{"properties":{"ke":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"pi":{"example":"string","type":"string"},"pn":{"example":"string","type":"string"},"rev":{"properties":{"ke":{"example":0,"type":"number"},"pi":{"example":"string","type":"string"},"pn":{"example":"string","type":"string"},"tid":{"example":"string","type":"string"}},"type":"object"},"tid":{"example":"string","type":"string"}},"type":"object"},"type":"array"},"il":{"example":true,"type":"boolean"},"md":{"example":"string","type":"string"},"mst":{"example":0,"type":"number"},"mt":{"example":0,"type":"number"},"mtd":{"example":"string","type":"string"},"t1":{"example":"string","type":"string"},"t1g":{"example":0,"type":"number"},"t1lp":{"example":[{"i":0,"n":"string","pos":0}],"items":{"properties":{"i":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"t1n":{"example":"string","type":"string"},"t1nlp":{"example":[{"i":0,"n":"string","pos":0}],"items":{"properties":{"i":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"t1sy":{"example":"string","type":"string"},"t2":{"example":"string","type":"string"},"t2g":{"example":0,"type":"number"},"t2lp":{"example":[{"i":0,"n":"string","pos":0}],"items":{"properties":{"i":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"t2n":{"example":"string","type":"string"},"t2nlp":{"example":[{"i":0,"n":"string","pos":0}],"items":{"properties":{"i":{"example":0,"type":"number"},"n":{"example":"string","type":"string"},"pos":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"t2sy":{"example":"string","type":"string"},"ts1":{"example":"string","type":"string"},"ts2":{"example":"string","type":"string"}},"type":"object"}}},"tags":["Matches"],"description":"Match Details","operationId":"matchDetails","summary":"Match Details"}},"/v4/user/login":{"post":{"consumes":["application/json"],"produces":["application/json"],"parameters":[{"in":"body","name":"body","schema":{"properties":{"em":{"example":"","type":"string"},"loy":{"example":false,"type":"boolean"},"pass":{"example":"","type":"string"},"rep":{"properties":{},"type":"object"}},"type":"object"}}],"responses":{"200":{"description":"Login","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"set-cookie":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"chtknex":{"example":"string","type":"string"},"chttkn":{"example":"string","type":"string"},"isnu":{"example":true,"type":"boolean"},"srvl":{"example":[{"adm":true,"ai":0,"amd":true,"ap":0,"au":0,"ci":"string","cpi":"string","creation":"string","creator":"string","creatorId":"string","gm":0,"id":"string","mpl":true,"mpst":0,"mu":0,"name":"string","pl":0,"pub":true,"t":0,"vr":0}],"items":{"properties":{"adm":{"example":true,"type":"boolean"},"ai":{"example":0,"type":"number"},"amd":{"example":true,"type":"boolean"},"ap":{"example":0,"type":"number"},"au":{"example":0,"type":"number"},"ci":{"example":"string","type":"string"},"cpi":{"example":"string","type":"string"},"creation":{"example":"string","type":"string"},"creator":{"example":"string","type":"string"},"creatorId":{"example":"string","type":"string"},"gm":{"example":0,"type":"number"},"id":{"example":"string","type":"string"},"mpl":{"example":true,"type":"boolean"},"mpst":{"example":0,"type":"number"},"mu":{"example":0,"type":"number"},"name":{"example":"string","type":"string"},"pl":{"example":0,"type":"number"},"pub":{"example":true,"type":"boolean"},"t":{"example":0,"type":"number"},"vr":{"example":0,"type":"number"}},"type":"object"},"type":"array"},"tkn":{"example":"string","type":"string"},"tknex":{"example":"string","type":"string"},"u":{"properties":{"cover":{"example":"string","type":"string"},"email":{"example":"string","type":"string"},"flags":{"example":0,"type":"number"},"id":{"example":"string","type":"string"},"name":{"example":"string","type":"string"},"notifications":{"example":0,"type":"number"},"perms":{"example":[{}],"items":{"properties":{},"type":"object"},"type":"array"},"proExpiry":{"example":"string","type":"string"},"profile":{"example":"string","type":"string"},"vemail":{"example":"string","type":"string"}},"type":"object"}},"type":"object"}}},"tags":["User"],"description":"Login","operationId":"login","summary":"Login"}},"/v4/user/settings":{"get":{"produces":["application/json"],"parameters":[],"responses":{"200":{"description":"User Settings","headers":{"cache-control":{"type":"string"},"content-encoding":{"type":"string"},"date":{"type":"string"},"transfer-encoding":{"type":"string"},"vary":{"type":"string"}},"schema":{"properties":{"u":{"properties":{"em":{"example":"email","type":"string"},"i":{"example":"userId","type":"string"},"unm":{"example":"username","type":"string"}},"type":"object"}},"type":"object"}}},"tags":["User"],"description":"Account Settings","operationId":"accountSettings","summary":"Account Settings"}}},"tags":[{"name":"User"},{"name":"Leagues"},{"name":"Achivements"},{"name":"Activities"},{"name":"Admin"},{"name":"Market"},{"name":"Me"},{"name":"Managers"},{"name":"Players"},{"name":"Scouted Players"},{"name":"Teams"},{"name":"Matches"},{"name":"Competitions"},{"name":"Players1"},{"name":"Teams1"},{"name":"Challenges"},{"name":"Favorites"},{"name":"Lineup"},{"name":"Managers1"},{"name":"Chat"},{"name":"Live"}]}
--------------------------------------------------------------------------------