id
stringlengths 53
86
| api_name
stringlengths 2
76
| api_description
stringlengths 1
500
⌀ | api_score
float64 0
10
⌀ | endpoint_name
stringlengths 1
190
| endpoint_description
stringlengths 0
500
| response_status_code
int64 100
505
| response_summary
stringlengths 1
68
⌀ | response_json
stringlengths 6
50k
| response_json_schema
stringlengths 14
150k
|
---|---|---|---|---|---|---|---|---|---|
64c007b6-313c-4256-8e8c-335f48213827/79cf4b7d-5b13-48f7-ad82-ebce0719b492/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Search Teams | Get data about teams.
The team id are unique in the API and teams keep it among all the leagues/cups in which they participate.
This endpoint requires at least one parameter.
| 200 | Response | {"get": "teams", "parameters": {"search": "Atzgersdorf"}, "errors": [], "results": 3, "response": [{"id": 25, "name": "Atzgersdorf", "logo": "https://media.api-sports.io/handball/teams/25.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 1173, "name": "Atzgersdorf B", "logo": "https://media.api-sports.io/handball/teams/1173.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 1, "name": "Atzgersdorf W", "logo": "https://media.api-sports.io/handball/teams/1.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"search": {"type": "string"}}, "required": ["search"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "logo": {"type": "string"}, "national": {"type": "boolean"}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}}, "required": ["country", "id", "logo", "name", "national"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/b3ed24d7-1924-4415-955f-de8ba513e1d8/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Search Leagues | Get the list of available leagues and cups.
The league id are unique in the API and leagues keep it across all seasons
Most of the parameters of this endpoint can be used together.
| 200 | Response | {"get": "leagues", "parameters": {"search": "hla"}, "errors": [], "results": 1, "response": [{"id": 2, "name": "HLA", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/2.png", "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "seasons": [{"season": 2021, "current": true, "start": "2021-09-03", "end": "2022-04-09"}, {"season": 2018, "current": false, "start": "2018-08-29", "end": "2019-06-01"}, {"season": 2017, "current": false, "start": "2017-08-30", "end": "2018-05-29"}, {"season": 2016, "current": false, "start": "2016-09-02", "end": "2017-05-28"}, {"season": 2015, "current": false, "start": "2015-08-28", "end": "2016-05-27"}]}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"search": {"type": "string"}}, "required": ["search"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "type": {"type": "string"}, "logo": {"type": "string"}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}, "seasons": {"type": "array", "items": {"type": "object", "properties": {"season": {"type": "integer"}, "current": {"type": "boolean"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["current", "end", "season", "start"]}}}, "required": ["country", "id", "logo", "name", "seasons", "type"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/7eb2fd8e-f77e-4554-ad5f-7c60f270ea33/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Search Countries | Get the list of available countries.
The name, id and code fields can be used in other endpoints as filters.
All the parameters of this endpoint can be used together.
| 200 | Response | {"get": "countries", "parameters": {"search": "austria"}, "errors": [], "results": 1, "response": [{"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"search": {"type": "string"}}, "required": ["search"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/98932de2-ed43-476a-8582-3fb935a0262a/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Odds/bets | Get all available bets.
All bets id can be used in endpoint odds as filters | 200 | Response | {"get": "odds", "parameters": [], "errors": [], "results": 35, "response": [{"id": 1, "name": "3Way Result"}, {"id": 2, "name": "Home/Away"}, {"id": 3, "name": "2nd Half 3Way Result"}, {"id": 4, "name": "Asian Handicap"}, {"id": 5, "name": "Over/Under"}, {"id": 6, "name": "Over/Under 1st Half"}, {"id": 7, "name": "Over/Under 2nd Half"}, {"id": 8, "name": "HT/FT Double"}, {"id": 9, "name": "Handicap Result"}, {"id": 10, "name": "Highest Scoring Half"}, {"id": 11, "name": "Double Chance"}, {"id": 12, "name": "1st Half 3Way Result"}, {"id": 13, "name": "Total - Home"}, {"id": 14, "name": "Total - Away"}, {"id": 15, "name": "Asian Handicap First Half"}, {"id": 16, "name": "Double Chance - 1st Half"}, {"id": 17, "name": "Double Chance - 2nd Half"}, {"id": 18, "name": "Odd/Even"}, {"id": 19, "name": "Odd/Even 1st Half"}, {"id": 20, "name": "Home Odd/Even"}, {"id": 21, "name": "Away Odd/Even"}, {"id": 22, "name": "To Qualify"}, {"id": 23, "name": "Asian Handicap (2nd Half)"}, {"id": 24, "name": "Home Team Total Goals(1st Half)"}, {"id": 25, "name": "Away Team Total Goals(1st Half)"}, {"id": 26, "name": "Odd/Even (2nd Half)"}, {"id": 27, "name": "Draw No Bet (1st Half)"}, {"id": 28, "name": "Handicap Result 1st Half"}, {"id": 29, "name": "Result/Total Goals"}, {"id": 30, "name": "Result/Total Goals (1st Half)"}, {"id": 31, "name": "Draw No Bet (2nd Half)"}, {"id": 32, "name": "Home Team Total Goals(2nd Half)"}, {"id": 33, "name": "Away Team Total Goals(2nd Half)"}, {"id": 34, "name": "Race to 5 Goals"}, {"id": 35, "name": "Race to 10 Goals"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "array"}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/8bd07ea4-c1a3-484f-a6a9-460a3ef571b3/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Odds | Get odds from games or leagues.
We provide pre-match odds between 1 and 7 days before the game.
We keep a 7-day history (The availability of odds may vary according to the leagues, seasons, games and bookmakers)
Odds are updated once a day
| 200 | Response | {"get": "odds", "parameters": {"game": "19"}, "errors": [], "results": 1, "response": [{"game": {"id": 19}, "league": {"id": 1, "name": "WHA Women", "type": "League", "season": 2021, "logo": "https://media.api-sports.io/handball/leagues/1.png"}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "update": "2021-09-28T17:00:49+00:00", "bookmakers": [{"id": 11, "name": "Betway", "bets": [{"id": 1, "name": "3Way Result", "values": [{"value": "Home", "odd": "1.00"}, {"value": "Draw", "odd": "20.00"}, {"value": "Away", "odd": "14.00"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 53.5", "odd": "1.80"}, {"value": "Under 53.5", "odd": "1.95"}]}]}, {"id": 13, "name": "Betcris", "bets": [{"id": 1, "name": "3Way Result", "values": [{"value": "Draw", "odd": "30.00"}, {"value": "Away", "odd": "21.00"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 51.5", "odd": "1.45"}, {"value": "Under 51.5", "odd": "2.55"}, {"value": "Over 55.5", "odd": "2.30"}, {"value": "Under 55.5", "odd": "1.55"}, {"value": "Over 53.5", "odd": "1.78"}, {"value": "Under 53.5", "odd": "1.95"}]}]}, {"id": 3, "name": "10Bet", "bets": [{"id": 2, "name": "Home/Away", "values": [{"value": "Away", "odd": "16.00"}]}, {"id": 4, "name": "Asian Handicap", "values": [{"value": "Home -17.5", "odd": "1.69"}, {"value": "Away -17.5", "odd": "1.83"}, {"value": "Home -18.5", "odd": "1.84"}, {"value": "Away -18.5", "odd": "1.68"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 53.5", "odd": "1.75"}, {"value": "Under 53.5", "odd": "1.76"}, {"value": "Over 54.5", "odd": "1.71"}, {"value": "Under 54.5", "odd": "1.80"}]}, {"id": 6, "name": "Over/Under 1st Half", "values": [{"value": "Over 26.5", "odd": "1.80"}, {"value": "Under 26.5", "odd": "1.76"}]}, {"id": 8, "name": "HT/FT Double", "values": [{"value": "Union Korneuburg (W)/Union Korneuburg (W)", "odd": "90.00"}, {"value": "Union Korneuburg (W)/Draw", "odd": "94.00"}, {"value": "Draw/Union Korneuburg (W)", "odd": "97.00"}, {"value": "Hypo NO (W)/Union Korneuburg (W)", "odd": "96.00"}, {"value": "Union Korneuburg (W)/Hypo NO (W)", "odd": "40.00"}, {"value": "Draw/Draw", "odd": "97.00"}, {"value": "Draw/Hypo NO (W)", "odd": "42.00"}, {"value": "Hypo NO (W)/Draw", "odd": "95.00"}]}, {"id": 11, "name": "Double Chance", "values": [{"value": "Draw/Away", "odd": "78.00"}]}, {"id": 15, "name": "Asian Handicap First Half", "values": [{"value": "Home -9.5", "odd": "1.71"}, {"value": "Away -9.5", "odd": "1.83"}]}, {"id": 16, "name": "Double Chance - 1st Half", "values": [{"value": "Draw/Away", "odd": "28.00"}]}, {"id": 18, "name": "Odd/Even", "values": [{"value": "Odd", "odd": "1.76"}, {"value": "Even", "odd": "1.76"}]}, {"id": 19, "name": "Odd/Even 1st Half", "values": [{"value": "Odd", "odd": "1.76"}, {"value": "Even", "odd": "1.76"}]}, {"id": 20, "name": "Home Odd/Even", "values": [{"value": "Odd", "odd": "1.76"}, {"value": "Even", "odd": "1.76"}]}, {"id": 21, "name": "Away Odd/Even", "values": [{"value": "Odd", "odd": "1.76"}, {"value": "Even", "odd": "1.76"}]}, {"id": 27, "name": "Draw No Bet (1st Half)", "values": [{"value": "Away", "odd": "13.00"}]}]}, {"id": 4, "name": "Bet365", "bets": [{"id": 4, "name": "Asian Handicap", "values": [{"value": "Home -17.5", "odd": "1.75"}, {"value": "Away -17.5", "odd": "1.95"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 53.5", "odd": "1.85"}, {"value": "Under 53.5", "odd": "1.85"}, {"value": "Over 54.5", "odd": "1.85"}, {"value": "Under 54.5", "odd": "1.85"}]}]}, {"id": 5, "name": "Marathon", "bets": [{"id": 4, "name": "Asian Handicap", "values": [{"value": "Home -18", "odd": "1.90"}, {"value": "Away -18", "odd": "1.82"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 53.5", "odd": "1.86"}, {"value": "Under 53.5", "odd": "1.86"}]}, {"id": 6, "name": "Over/Under 1st Half", "values": [{"value": "Over 26.5", "odd": "1.87"}, {"value": "Under 26.5", "odd": "1.83"}]}, {"id": 15, "name": "Asian Handicap First Half", "values": [{"value": "Home -9", "odd": "1.93"}, {"value": "Away -9", "odd": "1.80"}]}, {"id": 18, "name": "Odd/Even", "values": [{"value": "Odd", "odd": "1.85"}, {"value": "Even", "odd": "1.85"}]}, {"id": 23, "name": "Asian Handicap (2nd Half)", "values": [{"value": "Home -9.5", "odd": "1.92"}, {"value": "Away -9.5", "odd": "1.81"}]}]}, {"id": 15, "name": "Pinnacle", "bets": [{"id": 4, "name": "Asian Handicap", "values": [{"value": "Home -16.5", "odd": "1.59"}, {"value": "Away -16.5", "odd": "2.38"}, {"value": "Home -17", "odd": "1.67"}, {"value": "Away -17", "odd": "2.22"}, {"value": "Home -18", "odd": "1.93"}, {"value": "Away -18", "odd": "1.88"}, {"value": "Home -19", "odd": "2.29"}, {"value": "Away -19", "odd": "1.63"}, {"value": "Home -17.5", "odd": "1.80"}, {"value": "Away -17.5", "odd": "2.03"}, {"value": "Home -18.5", "odd": "2.09"}, {"value": "Away -18.5", "odd": "1.76"}, {"value": "Home -19.5", "odd": "2.47"}, {"value": "Away -19.5", "odd": "1.55"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 52.5", "odd": "1.61"}, {"value": "Under 52.5", "odd": "2.33"}, {"value": "Over 55.5", "odd": "2.51"}, {"value": "Under 55.5", "odd": "1.53"}, {"value": "Over 53.5", "odd": "1.83"}, {"value": "Under 53.5", "odd": "1.99"}, {"value": "Over 54.5", "odd": "2.11"}, {"value": "Under 54.5", "odd": "1.74"}, {"value": "Over 53", "odd": "1.70"}, {"value": "Under 53", "odd": "2.17"}, {"value": "Over 54", "odd": "1.97"}, {"value": "Under 54", "odd": "1.85"}, {"value": "Over 52", "odd": "1.54"}, {"value": "Under 52", "odd": "2.50"}, {"value": "Over 55", "odd": "2.33"}, {"value": "Under 55", "odd": "1.61"}]}, {"id": 6, "name": "Over/Under 1st Half", "values": [{"value": "Over 26.5", "odd": "1.88"}, {"value": "Under 26.5", "odd": "1.85"}, {"value": "Over 26", "odd": "1.73"}, {"value": "Under 26", "odd": "2.03"}, {"value": "Over 27", "odd": "2.06"}, {"value": "Under 27", "odd": "1.70"}, {"value": "Over 27.5", "odd": "2.24"}, {"value": "Under 27.5", "odd": "1.60"}, {"value": "Over 25.5", "odd": "1.62"}, {"value": "Under 25.5", "odd": "2.21"}, {"value": "Over 28", "odd": "2.52"}, {"value": "Under 28", "odd": "1.47"}, {"value": "Over 25", "odd": "1.49"}, {"value": "Under 25", "odd": "2.47"}]}, {"id": 13, "name": "Total - Home", "values": [{"value": "Over 35.5", "odd": "1.75"}, {"value": "Under 35.5", "odd": "1.97"}, {"value": "Over 36.5", "odd": "2.04"}, {"value": "Under 36.5", "odd": "1.72"}]}, {"id": 14, "name": "Total - Away", "values": [{"value": "Over 17.5", "odd": "1.74"}, {"value": "Under 17.5", "odd": "2.02"}]}, {"id": 15, "name": "Asian Handicap First Half", "values": [{"value": "Home -9.5", "odd": "1.95"}, {"value": "Away -9.5", "odd": "1.79"}, {"value": "Home -7.5", "odd": "1.50"}, {"value": "Away -7.5", "odd": "2.46"}, {"value": "Home -8.5", "odd": "1.69"}, {"value": "Away -8.5", "odd": "2.08"}, {"value": "Home -10", "odd": "2.17"}, {"value": "Away -10", "odd": "1.63"}, {"value": "Home -7", "odd": "1.45"}, {"value": "Away -7", "odd": "2.56"}, {"value": "Home -8", "odd": "1.57"}, {"value": "Away -8", "odd": "2.29"}, {"value": "Home -9", "odd": "1.81"}, {"value": "Away -9", "odd": "1.93"}, {"value": "Home -10.5", "odd": "2.37"}, {"value": "Away -10.5", "odd": "1.53"}]}, {"id": 24, "name": "Home Team Total Goals(1st Half)", "values": [{"value": "Over 17.5", "odd": "1.74"}, {"value": "Under 17.5", "odd": "1.93"}]}, {"id": 25, "name": "Away Team Total Goals(1st Half)", "values": [{"value": "Over 8.5", "odd": "1.79"}, {"value": "Under 8.5", "odd": "1.88"}]}]}, {"id": 9, "name": "1xBet", "bets": [{"id": 4, "name": "Asian Handicap", "values": [{"value": "Home -13.5", "odd": "1.17"}, {"value": "Away -13.5", "odd": "3.76"}, {"value": "Home -14.5", "odd": "1.26"}, {"value": "Away -14.5", "odd": "3.07"}, {"value": "Home -15.5", "odd": "1.38"}, {"value": "Away -15.5", "odd": "2.56"}, {"value": "Home -16.5", "odd": "1.52"}, {"value": "Away -16.5", "odd": "2.17"}, {"value": "Home -18", "odd": "1.90"}, {"value": "Away -18", "odd": "1.82"}, {"value": "Home -17.5", "odd": "1.71"}, {"value": "Away -17.5", "odd": "1.88"}, {"value": "Home -18.5", "odd": "1.96"}, {"value": "Away -18.5", "odd": "1.65"}, {"value": "Home -19.5", "odd": "2.28"}, {"value": "Away -19.5", "odd": "1.47"}, {"value": "Home -20.5", "odd": "2.71"}, {"value": "Away -20.5", "odd": "1.34"}, {"value": "Home -21.5", "odd": "3.29"}, {"value": "Away -21.5", "odd": "1.23"}, {"value": "Home -22.5", "odd": "4.09"}, {"value": "Away -22.5", "odd": "1.15"}, {"value": "Home -15.75", "odd": "1.40"}, {"value": "Away -15.75", "odd": "2.48"}, {"value": "Home -15.25", "odd": "1.34"}, {"value": "Away -15.25", "odd": "2.71"}, {"value": "Home -18.75", "odd": "2.04"}, {"value": "Away -18.75", "odd": "1.60"}, {"value": "Home -18.25", "odd": "1.89"}, {"value": "Away -18.25", "odd": "1.70"}, {"value": "Home -17.75", "odd": "1.83"}, {"value": "Away -17.75", "odd": "1.89"}, {"value": "Home -17.25", "odd": "1.66"}, {"value": "Away -17.25", "odd": "1.95"}, {"value": "Home -16.75", "odd": "1.56"}, {"value": "Away -16.75", "odd": "2.10"}, {"value": "Home -16.25", "odd": "1.47"}, {"value": "Away -16.25", "odd": "2.28"}, {"value": "Home -19.25", "odd": "2.21"}, {"value": "Away -19.25", "odd": "1.51"}, {"value": "Home -20.75", "odd": "2.89"}, {"value": "Away -20.75", "odd": "1.30"}, {"value": "Home -20.25", "odd": "2.63"}, {"value": "Away -20.25", "odd": "1.36"}, {"value": "Home -19.75", "odd": "2.40"}, {"value": "Away -19.75", "odd": "1.43"}]}, {"id": 5, "name": "Over/Under", "values": [{"value": "Over 50.5", "odd": "1.30"}, {"value": "Under 50.5", "odd": "2.85"}, {"value": "Over 51.5", "odd": "1.43"}, {"value": "Under 51.5", "odd": "2.40"}, {"value": "Over 52.5", "odd": "1.58"}, {"value": "Under 52.5", "odd": "2.06"}, {"value": "Over 55.5", "odd": "2.36"}, {"value": "Under 55.5", "odd": "1.44"}, {"value": "Over 53.5", "odd": "1.86"}, {"value": "Under 53.5", "odd": "1.86"}, {"value": "Over 58.5", "odd": "4.10"}, {"value": "Under 58.5", "odd": "1.15"}, {"value": "Over 54.5", "odd": "2.04"}, {"value": "Under 54.5", "odd": "1.60"}, {"value": "Over 57.5", "odd": "3.35"}, {"value": "Under 57.5", "odd": "1.22"}, {"value": "Over 56.5", "odd": "2.79"}, {"value": "Under 56.5", "odd": "1.32"}, {"value": "Over 60.5", "odd": "6.46"}, {"value": "Under 60.5", "odd": "1.04"}, {"value": "Over 46.5", "odd": "1.03"}, {"value": "Under 46.5", "odd": "6.96"}, {"value": "Over 49.5", "odd": "1.21"}, {"value": "Under 49.5", "odd": "3.45"}, {"value": "Over 47.5", "odd": "1.07"}, {"value": "Under 47.5", "odd": "5.39"}, {"value": "Over 48.5", "odd": "1.13"}, {"value": "Under 48.5", "odd": "4.27"}, {"value": "Over 59.5", "odd": "5.10"}, {"value": "Under 59.5", "odd": "1.09"}, {"value": "Over 54.25", "odd": "1.97"}, {"value": "Under 54.25", "odd": "1.64"}, {"value": "Over 53.75", "odd": "1.91"}, {"value": "Under 53.75", "odd": "1.81"}, {"value": "Over 53.25", "odd": "1.72"}, {"value": "Under 53.25", "odd": "1.86"}]}, {"id": 6, "name": "Over/Under 1st Half", "values": [{"value": "Over 26.5", "odd": "1.87"}, {"value": "Under 26.5", "odd": "1.83"}, {"value": "Over 21.5", "odd": "1.01"}, {"value": "Under 21.5", "odd": "7.75"}, {"value": "Over 22.5", "odd": "1.07"}, {"value": "Under 22.5", "odd": "5.35"}, {"value": "Over 28.5", "odd": "2.58"}, {"value": "Under 28.5", "odd": "1.37"}, {"value": "Over 29.5", "odd": "3.32"}, {"value": "Under 29.5", "odd": "1.23"}, {"value": "Over 27.5", "odd": "2.07"}, {"value": "Under 27.5", "odd": "1.58"}, {"value": "Over 25.5", "odd": "1.47"}, {"value": "Under 25.5", "odd": "2.29"}, {"value": "Over 24.5", "odd": "1.29"}, {"value": "Under 24.5", "odd": "2.92"}, {"value": "Over 31.5", "odd": "6.08"}, {"value": "Under 31.5", "odd": "1.05"}, {"value": "Over 30.5", "odd": "4.42"}, {"value": "Under 30.5", "odd": "1.12"}, {"value": "Over 23.5", "odd": "1.17"}, {"value": "Under 23.5", "odd": "3.87"}, {"value": "Over 26.25", "odd": "1.64"}, {"value": "Under 26.25", "odd": "1.97"}, {"value": "Over 26.75", "odd": "1.86"}, {"value": "Under 26.75", "odd": "1.84"}, {"value": "Over 27.25", "odd": "1.98"}, {"value": "Under 27.25", "odd": "1.63"}]}, {"id": 9, "name": "Handicap Result", "values": [{"value": "Home -17", "odd": "1.71"}, {"value": "Away -17", "odd": "2.17"}, {"value": "Draw -17", "odd": "14.60"}, {"value": "Home -18", "odd": "1.96"}, {"value": "Away -18", "odd": "1.88"}, {"value": "Draw -18", "odd": "14.40"}, {"value": "Home -19", "odd": "2.28"}, {"value": "Away -19", "odd": "1.65"}, {"value": "Draw -19", "odd": "14.60"}]}, {"id": 10, "name": "Highest Scoring Half", "values": [{"value": "Draw", "odd": "13.00"}, {"value": "1st Half", "odd": "2.15"}, {"value": "2nd Half", "odd": "1.75"}]}, {"id": 13, "name": "Total - Home", "values": [{"value": "Over 37.5", "odd": "2.53"}, {"value": "Under 37.5", "odd": "1.38"}, {"value": "Over 38.5", "odd": "3.19"}, {"value": "Under 38.5", "odd": "1.24"}, {"value": "Over 39.5", "odd": "4.15"}, {"value": "Under 39.5", "odd": "1.14"}, {"value": "Over 35.5", "odd": "1.74"}, {"value": "Under 35.5", "odd": "1.84"}, {"value": "Over 36.5", "odd": "2.07"}, {"value": "Under 36.5", "odd": "1.58"}, {"value": "Over 34.5", "odd": "1.50"}, {"value": "Under 34.5", "odd": "2.21"}, {"value": "Over 33.5", "odd": "1.33"}, {"value": "Under 33.5", "odd": "2.74"}, {"value": "Over 32.5", "odd": "1.20"}, {"value": "Under 32.5", "odd": "3.50"}]}, {"id": 14, "name": "Total - Away", "values": [{"value": "Over 20.5", "odd": "3.65"}, {"value": "Under 20.5", "odd": "1.19"}, {"value": "Over 18.5", "odd": "2.09"}, {"value": "Under 18.5", "odd": "1.57"}, {"value": "Over 19.5", "odd": "2.70"}, {"value": "Under 19.5", "odd": "1.34"}, {"value": "Over 16.5", "odd": "1.41"}, {"value": "Under 16.5", "odd": "2.45"}, {"value": "Over 17.5", "odd": "1.68"}, {"value": "Under 17.5", "odd": "1.91"}, {"value": "Over 15.5", "odd": "1.23"}, {"value": "Under 15.5", "odd": "3.32"}]}, {"id": 28, "name": "Handicap Result 1st Half", "values": [{"value": "Home -10", "odd": "2.62"}, {"value": "Away -10", "odd": "1.59"}, {"value": "Draw -10", "odd": "10.10"}, {"value": "Home -8", "odd": "1.68"}, {"value": "Away -8", "odd": "2.38"}, {"value": "Draw -8", "odd": "10.10"}, {"value": "Home -9", "odd": "2.06"}, {"value": "Away -9", "odd": "1.91"}, {"value": "Draw -9", "odd": "9.85"}]}, {"id": 15, "name": "Asian Handicap First Half", "values": [{"value": "Home -5.5", "odd": "1.14"}, {"value": "Away -5.5", "odd": "4.16"}, {"value": "Home -9.5", "odd": "2.06"}, {"value": "Away -9.5", "odd": "1.59"}, {"value": "Home -7.5", "odd": "1.43"}, {"value": "Away -7.5", "odd": "2.38"}, {"value": "Home -8.5", "odd": "1.68"}, {"value": "Away -8.5", "odd": "1.91"}, {"value": "Home -9", "odd": "1.93"}, {"value": "Away -9", "odd": "1.80"}, {"value": "Home -10.5", "odd": "2.62"}, {"value": "Away -10.5", "odd": "1.36"}, {"value": "Home -6.5", "odd": "1.26"}, {"value": "Away -6.5", "odd": "3.09"}, {"value": "Home -11.5", "odd": "3.50"}, {"value": "Away -11.5", "odd": "1.20"}, {"value": "Home -6.75", "odd": "1.28"}, {"value": "Away -6.75", "odd": "2.96"}, {"value": "Home -7.25", "odd": "1.37"}, {"value": "Away -7.25", "odd": "2.58"}, {"value": "Home -8.25", "odd": "1.61"}, {"value": "Away -8.25", "odd": "2.02"}, {"value": "Home -7.75", "odd": "1.48"}, {"value": "Away -7.75", "odd": "2.27"}, {"value": "Home -8.75", "odd": "1.82"}, {"value": "Away -8.75", "odd": "1.88"}, {"value": "Home -9.75", "odd": "2.20"}, {"value": "Away -9.75", "odd": "1.51"}, {"value": "Home -10.75", "odd": "2.87"}, {"value": "Away -10.75", "odd": "1.30"}, {"value": "Home -10.25", "odd": "2.50"}, {"value": "Away -10.25", "odd": "1.40"}, {"value": "Home -9.25", "odd": "1.96"}, {"value": "Away -9.25", "odd": "1.65"}]}, {"id": 18, "name": "Odd/Even", "values": [{"value": "Odd", "odd": "1.90"}, {"value": "Even", "odd": "1.90"}]}, {"id": 19, "name": "Odd/Even 1st Half", "values": [{"value": "Odd", "odd": "1.90"}, {"value": "Even", "odd": "1.90"}]}, {"id": 20, "name": "Home Odd/Even", "values": [{"value": "Odd", "odd": "1.90"}, {"value": "Even", "odd": "1.90"}]}, {"id": 21, "name": "Away Odd/Even", "values": [{"value": "Odd", "odd": "1.90"}, {"value": "Even", "odd": "1.90"}]}, {"id": 23, "name": "Asian Handicap (2nd Half)", "values": [{"value": "Home -9.5", "odd": "1.92"}, {"value": "Away -9.5", "odd": "1.81"}]}, {"id": 24, "name": "Home Team Total Goals(1st Half)", "values": [{"value": "Over 20.5", "odd": "4.31"}, {"value": "Under 20.5", "odd": "1.13"}, {"value": "Over 18.5", "odd": "2.17"}, {"value": "Under 18.5", "odd": "1.52"}, {"value": "Over 19.5", "odd": "2.97"}, {"value": "Under 19.5", "odd": "1.28"}, {"value": "Over 16.5", "odd": "1.39"}, {"value": "Under 16.5", "odd": "2.52"}, {"value": "Over 17.5", "odd": "1.69"}, {"value": "Under 17.5", "odd": "1.90"}, {"value": "Over 15.5", "odd": "1.19"}, {"value": "Under 15.5", "odd": "3.57"}]}, {"id": 25, "name": "Away Team Total Goals(1st Half)", "values": [{"value": "Over 9.5", "odd": "2.15"}, {"value": "Under 9.5", "odd": "1.53"}, {"value": "Over 10.5", "odd": "3.16"}, {"value": "Under 10.5", "odd": "1.25"}, {"value": "Over 7.5", "odd": "1.27"}, {"value": "Under 7.5", "odd": "3.05"}, {"value": "Over 8.5", "odd": "1.59"}, {"value": "Under 8.5", "odd": "2.05"}]}]}]}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"game": {"type": "string"}}, "required": ["game"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"game": {"type": "object", "properties": {"id": {"type": "integer"}}, "required": ["id"]}, "league": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "type": {"type": "string"}, "season": {"type": "integer"}, "logo": {"type": "string"}}, "required": ["id", "logo", "name", "season", "type"]}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}, "update": {"type": "string"}, "bookmakers": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "bets": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "string"}, "odd": {"type": "string"}}, "required": ["odd", "value"]}}}, "required": ["id", "name", "values"]}}}, "required": ["bets", "id", "name"]}}}, "required": ["bookmakers", "country", "game", "league", "update"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/5345b51b-279f-4bcd-abbe-46077a16da79/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Standings/groups | Get the list of available groups for a league to be used in the standings endpoint. | 200 | Response | {"get": "standings", "parameters": {"league": "1", "season": "2021"}, "errors": [], "results": 1, "response": ["Regular Season"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"league": {"type": "string"}, "season": {"type": "string"}}, "required": ["league", "season"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "string"}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/667c7ad6-0a92-4c79-a059-bc80dda18d54/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Standings/stages | Get the list of available stages for a league to be used in the standings endpoint. | 200 | Response | {"get": "standings", "parameters": {"league": "1", "season": "2021"}, "errors": [], "results": 1, "response": ["WHA Women"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"league": {"type": "string"}, "season": {"type": "string"}}, "required": ["league", "season"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "string"}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/6254df19-82e2-4611-bf20-10b8702015d0/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Standings | Get the standings for a league.
Return a table of one or more rankings according to the league / cup. Some competitions have several rankings in a year, regular season, pre season etc…
To know the list of available stages or groups you have to use the endpoint standings/stages or standings/groups
Standings are updated every hours
| 200 | Response | {"get": "standings", "parameters": {"league": "1", "season": "2021"}, "errors": [], "results": 1, "response": [[{"position": 1, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 8, "name": "Hypo NO W", "logo": "https://media.api-sports.io/handball/teams/8.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 5, "win": {"total": 5, "percentage": "100.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 0, "percentage": "0.00"}}, "goals": {"for": 199, "against": 99}, "points": 10, "form": "WWWWW", "description": null}, {"position": 2, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 1, "name": "Atzgersdorf W", "logo": "https://media.api-sports.io/handball/teams/1.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 4, "percentage": "100.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 0, "percentage": "0.00"}}, "goals": {"for": 121, "against": 100}, "points": 8, "form": "WWWW", "description": null}, {"position": 3, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 10, "name": "MGA Handball W", "logo": "https://media.api-sports.io/handball/teams/10.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 3, "percentage": "75.00"}, "draw": {"total": 1, "percentage": "25.00"}, "lose": {"total": 0, "percentage": "0.00"}}, "goals": {"for": 124, "against": 117}, "points": 7, "form": "WWW", "description": null}, {"position": 4, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 12, "name": "Wr. Neustadt W", "logo": "https://media.api-sports.io/handball/teams/12.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 2, "percentage": "50.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 2, "percentage": "50.00"}}, "goals": {"for": 122, "against": 115}, "points": 4, "form": "LWWL", "description": null}, {"position": 5, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 6, "name": "Fuchse W", "logo": "https://media.api-sports.io/handball/teams/6.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 2, "percentage": "50.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 2, "percentage": "50.00"}}, "goals": {"for": 114, "against": 118}, "points": 4, "form": "WLWL", "description": null}, {"position": 6, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 4, "name": "Feldkirch W", "logo": "https://media.api-sports.io/handball/teams/4.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 1, "percentage": "25.00"}, "draw": {"total": 2, "percentage": "50.00"}, "lose": {"total": 1, "percentage": "25.00"}}, "goals": {"for": 112, "against": 122}, "points": 4, "form": "WL", "description": null}, {"position": 7, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 2, "name": "Dornbirn/Schoren W", "logo": "https://media.api-sports.io/handball/teams/2.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 2, "percentage": "50.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 2, "percentage": "50.00"}}, "goals": {"for": 105, "against": 115}, "points": 4, "form": "LWLW", "description": null}, {"position": 8, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 7, "name": "Graz W", "logo": "https://media.api-sports.io/handball/teams/7.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 1, "percentage": "25.00"}, "draw": {"total": 1, "percentage": "25.00"}, "lose": {"total": 2, "percentage": "50.00"}}, "goals": {"for": 122, "against": 134}, "points": 3, "form": "WLL", "description": null}, {"position": 9, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 11, "name": "Stockerau W", "logo": "https://media.api-sports.io/handball/teams/11.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 1, "percentage": "25.00"}, "draw": {"total": 1, "percentage": "25.00"}, "lose": {"total": 2, "percentage": "50.00"}}, "goals": {"for": 96, "against": 110}, "points": 3, "form": "LLW", "description": null}, {"position": 10, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 9, "name": "Korneuburg W", "logo": "https://media.api-sports.io/handball/teams/9.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 5, "win": {"total": 1, "percentage": "20.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 4, "percentage": "80.00"}}, "goals": {"for": 130, "against": 168}, "points": 2, "form": "LLLLW", "description": null}, {"position": 11, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 3, "name": "Eggenburg W", "logo": "https://media.api-sports.io/handball/teams/3.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 0, "percentage": "0.00"}, "draw": {"total": 1, "percentage": "25.00"}, "lose": {"total": 3, "percentage": "75.00"}}, "goals": {"for": 105, "against": 145}, "points": 1, "form": "LLL", "description": null}, {"position": 12, "stage": "WHA Women", "group": {"name": "Regular Season"}, "team": {"id": 5, "name": "Ferlach/Feldkirchen W", "logo": "https://media.api-sports.io/handball/teams/5.png"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2021}, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "games": {"played": 4, "win": {"total": 0, "percentage": "0.00"}, "draw": {"total": 0, "percentage": "0.00"}, "lose": {"total": 4, "percentage": "100.00"}}, "goals": {"for": 120, "against": 127}, "points": 0, "form": "LLLL", "description": null}]]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"league": {"type": "string"}, "season": {"type": "string"}}, "required": ["league", "season"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "integer"}, "stage": {"type": "string"}, "group": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "team": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "logo": {"type": "string"}}, "required": ["id", "logo", "name"]}, "league": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "type": {"type": "string"}, "logo": {"type": "string"}, "season": {"type": "integer"}}, "required": ["id", "logo", "name", "season", "type"]}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}, "games": {"type": "object", "properties": {"played": {"type": "integer"}, "win": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "draw": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "lose": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}}, "required": ["draw", "lose", "played", "win"]}, "goals": {"type": "object", "properties": {"for": {"type": "integer"}, "against": {"type": "integer"}}, "required": ["against", "for"]}, "points": {"type": "integer"}, "form": {"type": "string"}, "description": {"type": "null"}}, "required": ["country", "description", "form", "games", "goals", "group", "league", "points", "position", "stage", "team"]}}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/945665f0-1438-4d53-b7b0-cea486f58a91/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Teams/statistics | Return the statistics for a team according to a league and season | 200 | Response | {"get": "teams", "parameters": {"league": "1", "season": "2018", "team": "1"}, "errors": [], "results": 5, "response": {"country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, "league": {"id": 1, "name": "WHA Women", "type": "League", "logo": "https://media.api-sports.io/handball/leagues/1.png", "season": 2018}, "team": {"id": 1, "name": "Atzgersdorf W", "logo": "https://media.api-sports.io/handball/teams/1.png"}, "games": {"played": {"home": 12, "away": 12, "all": 24}, "wins": {"home": {"total": 10, "percentage": "83.33"}, "away": {"total": 9, "percentage": "75.00"}, "all": {"total": 19, "percentage": "79.17"}}, "draws": {"home": {"total": 1, "percentage": "8.33"}, "away": {"total": 0, "percentage": "0.00"}, "all": {"total": 1, "percentage": "4.17"}}, "loses": {"home": {"total": 1, "percentage": "8.33"}, "away": {"total": 3, "percentage": "25.00"}, "all": {"total": 4, "percentage": "16.67"}}}, "goals": {"for": {"total": {"home": 343, "away": 326, "all": 669}, "average": {"home": "28.6", "away": "27.2", "all": "27.9"}}, "against": {"total": {"home": 278, "away": 286, "all": 564}, "average": {"home": "23.2", "away": "23.8", "all": "23.5"}}}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"league": {"type": "string"}, "season": {"type": "string"}, "team": {"type": "string"}}, "required": ["league", "season", "team"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "object", "properties": {"country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}, "league": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "type": {"type": "string"}, "logo": {"type": "string"}, "season": {"type": "integer"}}, "required": ["id", "logo", "name", "season", "type"]}, "team": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "logo": {"type": "string"}}, "required": ["id", "logo", "name"]}, "games": {"type": "object", "properties": {"played": {"type": "object", "properties": {"home": {"type": "integer"}, "away": {"type": "integer"}, "all": {"type": "integer"}}, "required": ["all", "away", "home"]}, "wins": {"type": "object", "properties": {"home": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "away": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "all": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}}, "required": ["all", "away", "home"]}, "draws": {"type": "object", "properties": {"home": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "away": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "all": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}}, "required": ["all", "away", "home"]}, "loses": {"type": "object", "properties": {"home": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "away": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}, "all": {"type": "object", "properties": {"total": {"type": "integer"}, "percentage": {"type": "string"}}, "required": ["percentage", "total"]}}, "required": ["all", "away", "home"]}}, "required": ["draws", "loses", "played", "wins"]}, "goals": {"type": "object", "properties": {"for": {"type": "object", "properties": {"total": {"type": "object", "properties": {"home": {"type": "integer"}, "away": {"type": "integer"}, "all": {"type": "integer"}}, "required": ["all", "away", "home"]}, "average": {"type": "object", "properties": {"home": {"type": "string"}, "away": {"type": "string"}, "all": {"type": "string"}}, "required": ["all", "away", "home"]}}, "required": ["average", "total"]}, "against": {"type": "object", "properties": {"total": {"type": "object", "properties": {"home": {"type": "integer"}, "away": {"type": "integer"}, "all": {"type": "integer"}}, "required": ["all", "away", "home"]}, "average": {"type": "object", "properties": {"home": {"type": "string"}, "away": {"type": "string"}, "all": {"type": "string"}}, "required": ["all", "away", "home"]}}, "required": ["average", "total"]}}, "required": ["against", "for"]}}, "required": ["country", "games", "goals", "league", "team"]}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/a2c03dbc-af47-46c7-a92c-9a7a5fb18067/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Teams | Get data about teams.
The team id are unique in the API and teams keep it among all the leagues/cups in which they participate.
This endpoint requires at least one parameter.
| 200 | Response | {"get": "teams", "parameters": {"league": "1", "season": "2021"}, "errors": [], "results": 12, "response": [{"id": 1, "name": "Atzgersdorf W", "logo": "https://media.api-sports.io/handball/teams/1.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 2, "name": "Dornbirn/Schoren W", "logo": "https://media.api-sports.io/handball/teams/2.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 3, "name": "Eggenburg W", "logo": "https://media.api-sports.io/handball/teams/3.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 4, "name": "Feldkirch W", "logo": "https://media.api-sports.io/handball/teams/4.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 5, "name": "Ferlach/Feldkirchen W", "logo": "https://media.api-sports.io/handball/teams/5.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 6, "name": "Fuchse W", "logo": "https://media.api-sports.io/handball/teams/6.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 7, "name": "Graz W", "logo": "https://media.api-sports.io/handball/teams/7.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 8, "name": "Hypo NO W", "logo": "https://media.api-sports.io/handball/teams/8.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 9, "name": "Korneuburg W", "logo": "https://media.api-sports.io/handball/teams/9.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 10, "name": "MGA Handball W", "logo": "https://media.api-sports.io/handball/teams/10.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 11, "name": "Stockerau W", "logo": "https://media.api-sports.io/handball/teams/11.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}, {"id": 12, "name": "Wr. Neustadt W", "logo": "https://media.api-sports.io/handball/teams/12.png", "national": false, "country": {"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "object", "properties": {"league": {"type": "string"}, "season": {"type": "string"}}, "required": ["league", "season"]}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "logo": {"type": "string"}, "national": {"type": "boolean"}, "country": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}}, "required": ["country", "id", "logo", "name", "national"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/fb0986ba-b902-400f-94fa-2667e24e8989/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Countries | Get the list of available countries.
The name, id and code fields can be used in other endpoints as filters.
All the parameters of this endpoint can be used together.
| 200 | Response | {"get": "countries", "parameters": [], "errors": [], "results": 38, "response": [{"id": 1, "name": "Austria", "code": "AT", "flag": "https://media.api-sports.io/flags/at.svg"}, {"id": 2, "name": "Belarus", "code": "BY", "flag": "https://media.api-sports.io/flags/by.svg"}, {"id": 3, "name": "Belgium", "code": "BE", "flag": "https://media.api-sports.io/flags/be.svg"}, {"id": 4, "name": "Bosnia-And-Herzegovina", "code": "BA", "flag": "https://media.api-sports.io/flags/ba.svg"}, {"id": 5, "name": "Bulgaria", "code": "BG", "flag": "https://media.api-sports.io/flags/bg.svg"}, {"id": 6, "name": "Croatia", "code": "HR", "flag": "https://media.api-sports.io/flags/hr.svg"}, {"id": 7, "name": "Czech-Republic", "code": "CZ", "flag": "https://media.api-sports.io/flags/cz.svg"}, {"id": 8, "name": "Denmark", "code": "DK", "flag": "https://media.api-sports.io/flags/dk.svg"}, {"id": 9, "name": "Estonia", "code": "EE", "flag": "https://media.api-sports.io/flags/ee.svg"}, {"id": 10, "name": "Finland", "code": "FI", "flag": "https://media.api-sports.io/flags/fi.svg"}, {"id": 11, "name": "France", "code": "FR", "flag": "https://media.api-sports.io/flags/fr.svg"}, {"id": 12, "name": "North-Macedonia", "code": "MK", "flag": "https://media.api-sports.io/flags/mk.svg"}, {"id": 13, "name": "Germany", "code": "DE", "flag": "https://media.api-sports.io/flags/de.svg"}, {"id": 14, "name": "Greece", "code": "GR", "flag": "https://media.api-sports.io/flags/gr.svg"}, {"id": 15, "name": "Hungary", "code": "HU", "flag": "https://media.api-sports.io/flags/hu.svg"}, {"id": 16, "name": "Iceland", "code": "IS", "flag": "https://media.api-sports.io/flags/is.svg"}, {"id": 17, "name": "Israel", "code": "IL", "flag": "https://media.api-sports.io/flags/il.svg"}, {"id": 18, "name": "Italy", "code": "IT", "flag": "https://media.api-sports.io/flags/it.svg"}, {"id": 19, "name": "Latvia", "code": "LV", "flag": "https://media.api-sports.io/flags/lv.svg"}, {"id": 20, "name": "Lithuania", "code": "LT", "flag": "https://media.api-sports.io/flags/lt.svg"}, {"id": 21, "name": "Luxembourg", "code": "LU", "flag": "https://media.api-sports.io/flags/lu.svg"}, {"id": 22, "name": "Malta", "code": "MT", "flag": "https://media.api-sports.io/flags/mt.svg"}, {"id": 23, "name": "Montenegro", "code": "ME", "flag": "https://media.api-sports.io/flags/me.svg"}, {"id": 24, "name": "Netherlands", "code": "NL", "flag": "https://media.api-sports.io/flags/nl.svg"}, {"id": 25, "name": "Norway", "code": "NO", "flag": "https://media.api-sports.io/flags/no.svg"}, {"id": 26, "name": "Poland", "code": "PL", "flag": "https://media.api-sports.io/flags/pl.svg"}, {"id": 27, "name": "Portugal", "code": "PT", "flag": "https://media.api-sports.io/flags/pt.svg"}, {"id": 28, "name": "Romania", "code": "RO", "flag": "https://media.api-sports.io/flags/ro.svg"}, {"id": 29, "name": "Russia", "code": "RU", "flag": "https://media.api-sports.io/flags/ru.svg"}, {"id": 30, "name": "Serbia", "code": "RS", "flag": "https://media.api-sports.io/flags/rs.svg"}, {"id": 31, "name": "Slovakia", "code": "SK", "flag": "https://media.api-sports.io/flags/sk.svg"}, {"id": 32, "name": "Slovenia", "code": "SI", "flag": "https://media.api-sports.io/flags/si.svg"}, {"id": 33, "name": "South-Korea", "code": "KR", "flag": "https://media.api-sports.io/flags/kr.svg"}, {"id": 34, "name": "Spain", "code": "ES", "flag": "https://media.api-sports.io/flags/es.svg"}, {"id": 35, "name": "Sweden", "code": "SE", "flag": "https://media.api-sports.io/flags/se.svg"}, {"id": 36, "name": "Switzerland", "code": "CH", "flag": "https://media.api-sports.io/flags/ch.svg"}, {"id": 37, "name": "Turkey", "code": "TR", "flag": "https://media.api-sports.io/flags/tr.svg"}, {"id": 38, "name": "Ukraine", "code": "UA", "flag": "https://media.api-sports.io/flags/ua.svg"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "array"}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "code": {"type": "string"}, "flag": {"type": "string"}}, "required": ["code", "flag", "id", "name"]}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/1cdee2b3-eb18-405a-bfac-1091cfb0ca53/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Seasons | All seasons are only 4-digit keys, so for a league whose season is 2018-2019 the season in the API will be 2018.
All seasons can be used in other endpoints as filters.
This endpoint does not require any parameters.
| 200 | Response | {"get": "seasons", "parameters": [], "errors": [], "results": 11, "response": [2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "array"}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "integer"}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
64c007b6-313c-4256-8e8c-335f48213827/163384da-9922-4d45-988d-65e43634bf8f/0/0 | API-HANDBALL | +195 Handball Leagues & Cups with Livescore, Odds, Bookmakers, Statistics, Standings, Historical Data, Countries, Seasons. Documentation : https://api-sports.io/documentation/handball/v1. Widgets : https://www.api-football.com/widgets | 9.5 | Timezone | Get the list of available timezone to be used in the games endpoint.
This endpoint does not require any parameters.
| 200 | Response | {"get": "timezone", "parameters": [], "errors": [], "results": 425, "response": ["Africa/Abidjan", "Africa/Accra", "Africa/Addis_Ababa", "Africa/Algiers", "Africa/Asmara", "Africa/Bamako", "Africa/Bangui", "Africa/Banjul", "Africa/Bissau", "Africa/Blantyre", "Africa/Brazzaville", "Africa/Bujumbura", "Africa/Cairo", "Africa/Casablanca", "Africa/Ceuta", "Africa/Conakry", "Africa/Dakar", "Africa/Dar_es_Salaam", "Africa/Djibouti", "Africa/Douala", "Africa/El_Aaiun", "Africa/Freetown", "Africa/Gaborone", "Africa/Harare", "Africa/Johannesburg", "Africa/Juba", "Africa/Kampala", "Africa/Khartoum", "Africa/Kigali", "Africa/Kinshasa", "Africa/Lagos", "Africa/Libreville", "Africa/Lome", "Africa/Luanda", "Africa/Lubumbashi", "Africa/Lusaka", "Africa/Malabo", "Africa/Maputo", "Africa/Maseru", "Africa/Mbabane", "Africa/Mogadishu", "Africa/Monrovia", "Africa/Nairobi", "Africa/Ndjamena", "Africa/Niamey", "Africa/Nouakchott", "Africa/Ouagadougou", "Africa/Porto-Novo", "Africa/Sao_Tome", "Africa/Tripoli", "Africa/Tunis", "Africa/Windhoek", "America/Adak", "America/Anchorage", "America/Anguilla", "America/Antigua", "America/Araguaina", "America/Argentina/Buenos_Aires", "America/Argentina/Catamarca", "America/Argentina/Cordoba", "America/Argentina/Jujuy", "America/Argentina/La_Rioja", "America/Argentina/Mendoza", "America/Argentina/Rio_Gallegos", "America/Argentina/Salta", "America/Argentina/San_Juan", "America/Argentina/San_Luis", "America/Argentina/Tucuman", "America/Argentina/Ushuaia", "America/Aruba", "America/Asuncion", "America/Atikokan", "America/Bahia", "America/Bahia_Banderas", "America/Barbados", "America/Belem", "America/Belize", "America/Blanc-Sablon", "America/Boa_Vista", "America/Bogota", "America/Boise", "America/Cambridge_Bay", "America/Campo_Grande", "America/Cancun", "America/Caracas", "America/Cayenne", "America/Cayman", "America/Chicago", "America/Chihuahua", "America/Costa_Rica", "America/Creston", "America/Cuiaba", "America/Curacao", "America/Danmarkshavn", "America/Dawson", "America/Dawson_Creek", "America/Denver", "America/Detroit", "America/Dominica", "America/Edmonton", "America/Eirunepe", "America/El_Salvador", "America/Fort_Nelson", "America/Fortaleza", "America/Glace_Bay", "America/Godthab", "America/Goose_Bay", "America/Grand_Turk", "America/Grenada", "America/Guadeloupe", "America/Guatemala", "America/Guayaquil", "America/Guyana", "America/Halifax", "America/Havana", "America/Hermosillo", "America/Indiana/Indianapolis", "America/Indiana/Knox", "America/Indiana/Marengo", "America/Indiana/Petersburg", "America/Indiana/Tell_City", "America/Indiana/Vevay", "America/Indiana/Vincennes", "America/Indiana/Winamac", "America/Inuvik", "America/Iqaluit", "America/Jamaica", "America/Juneau", "America/Kentucky/Louisville", "America/Kentucky/Monticello", "America/Kralendijk", "America/La_Paz", "America/Lima", "America/Los_Angeles", "America/Lower_Princes", "America/Maceio", "America/Managua", "America/Manaus", "America/Marigot", "America/Martinique", "America/Matamoros", "America/Mazatlan", "America/Menominee", "America/Merida", "America/Metlakatla", "America/Mexico_City", "America/Miquelon", "America/Moncton", "America/Monterrey", "America/Montevideo", "America/Montserrat", "America/Nassau", "America/New_York", "America/Nipigon", "America/Nome", "America/Noronha", "America/North_Dakota/Beulah", "America/North_Dakota/Center", "America/North_Dakota/New_Salem", "America/Ojinaga", "America/Panama", "America/Pangnirtung", "America/Paramaribo", "America/Phoenix", "America/Port-au-Prince", "America/Port_of_Spain", "America/Porto_Velho", "America/Puerto_Rico", "America/Punta_Arenas", "America/Rainy_River", "America/Rankin_Inlet", "America/Recife", "America/Regina", "America/Resolute", "America/Rio_Branco", "America/Santarem", "America/Santiago", "America/Santo_Domingo", "America/Sao_Paulo", "America/Scoresbysund", "America/Sitka", "America/St_Barthelemy", "America/St_Johns", "America/St_Kitts", "America/St_Lucia", "America/St_Thomas", "America/St_Vincent", "America/Swift_Current", "America/Tegucigalpa", "America/Thule", "America/Thunder_Bay", "America/Tijuana", "America/Toronto", "America/Tortola", "America/Vancouver", "America/Whitehorse", "America/Winnipeg", "America/Yakutat", "America/Yellowknife", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Macquarie", "Antarctica/Mawson", "Antarctica/McMur", "Antarctica/PalmerAnta", "Antarctica/Rothera", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok", "Arctic/Longyearbyen", "Asia/Aden", "Asia/Almaty", "Asia/Amman", "Asia/Anadyr", "Asia/Aqtau", "Asia/Aqtobe", "Asia/Ashgabat", "Asia/Atyrau", "Asia/Baghdad", "Asia/Bahrain", "Asia/Baku", "Asia/Bangkok", "Asia/Barnaul", "Asia/Beirut", "Asia/Bishkek", "Asia/Brunei", "Asia/Chita", "Asia/Choibalsan", "Asia/Colombo", "Asia/Damascus", "Asia/Dhaka", "Asia/Dili", "Asia/Dubai", "Asia/Dushanbe", "Asia/Famagusta", "Asia/Gaza", "Asia/Hebron", "Asia/Ho_Chi_Minh", "Asia/Hong_Kong", "Asia/Hovd", "Asia/Irkutsk", "Asia/Jakarta", "Asia/Jayapura", "Asia/Jerusalem", "Asia/Kabul", "Asia/Kamchatka", "Asia/Karachi", "Asia/Kathmandu", "Asia/Khandyga", "Asia/Kolkata", "Asia/Krasnoyarsk", "Asia/Kuala_Lumpur", "Asia/Kuching", "Asia/Kuwait", "Asia/Macau", "Asia/Magadan", "Asia/Makassar", "Asia/Manila", "Asia/Muscat", "Asia/Nicosia", "Asia/Novokuznetsk", "Asia/Novosibirsk", "Asia/Omsk", "Asia/Oral", "Asia/Phnom_Penh", "Asia/Pontianak", "Asia/Pyongyang", "Asia/Qatar", "Asia/Qostanay", "Asia/Qyzylorda", "Asia/Riyadh", "Asia/Sakhalin", "Asia/Samarkand", "Asia/Seoul", "Asia/Shanghai", "Asia/Singapore", "Asia/Srednekolymsk", "Asia/Taipei", "Asia/Tashkent", "Asia/Tbilisi", "Asia/Tehran", "Asia/Thimphu", "Asia/Tokyo", "Asia/Tomsk", "Asia/Ulaanbaatar", "Asia/Urumqi", "Asia/Ust-Nera", "Asia/Vientiane", "Asia/Vladivostok", "Asia/Yakutsk", "Asia/Yangon", "Asia/Yekaterinburg", "Asia/Yerevan", "Atlantic/Azores", "Atlantic/Bermuda", "Atlantic/Canary", "Atlantic/Cape_Verde", "Atlantic/Faroe", "Atlantic/Madeira", "Atlantic/Reykjavik", "Atlantic/South_Georgia", "Atlantic/St_Helena", "Atlantic/Stanley", "Australia/Adelaide", "Australia/Brisbane", "Australia/Broken_Hill", "Australia/Currie", "Australia/Darwin", "Australia/Eucla", "Australia/Hobart", "Australia/Lindeman", "Australia/Lord_Howe", "Australia/Melbourne", "Australia/Perth", "Australia/Sydney", "Europe/Amsterdam", "Europe/Andorra", "Europe/Astrakhan", "Europe/Athens", "Europe/Belgrade", "Europe/Berlin", "Europe/Bratislava", "Europe/Brussels", "Europe/Bucharest", "Europe/Budapest", "Europe/Busingen", "Europe/Chisinau", "Europe/Copenhagen", "Europe/Dublin", "Europe/Gibraltar", "Europe/Guernsey", "Europe/Helsinki", "Europe/Isle_of_Man", "Europe/Istanbul", "Europe/Jersey", "Europe/Kaliningrad", "Europe/Kiev", "Europe/Kirov", "Europe/Lisbon", "Europe/Ljubljana", "Europe/London", "Europe/Luxembourg", "Europe/Madrid", "Europe/Malta", "Europe/Mariehamn", "Europe/Minsk", "Europe/Monaco", "Europe/Moscow", "Europe/Oslo", "Europe/Paris", "Europe/Podgorica", "Europe/Prague", "Europe/Riga", "Europe/Rome", "Europe/Samara", "Europe/San_Marino", "Europe/Sarajevo", "Europe/Saratov", "Europe/Simferopol", "Europe/Skopje", "Europe/Sofia", "Europe/Stockholm", "Europe/Tallinn", "Europe/Tirane", "Europe/Ulyanovsk", "Europe/Uzhgorod", "Europe/Vaduz", "Europe/Vatican", "Europe/Vienna", "Europe/Vilnius", "Europe/Volgograd", "Europe/Warsaw", "Europe/Zagreb", "Europe/Zaporozhye", "Europe/Zurich", "Indian/Antananarivo", "Indian/Chagos", "Indian/Christmas", "Indian/Cocos", "Indian/Comoro", "Indian/Kerguelen", "Indian/Mahe", "Indian/Maldives", "Indian/Mauritius", "Indian/Mayotte", "Indian/Reunion", "Pacific/Apia", "Pacific/Auckland", "Pacific/Bougainville", "Pacific/Chatham", "Pacific/Chuuk", "Pacific/Easter", "Pacific/Efate", "Pacific/Enderbury", "Pacific/Fakaofo", "Pacific/Fiji", "Pacific/Funafuti", "Pacific/Galapagos", "Pacific/Gambier", "Pacific/Guadalcanal", "Pacific/Guam", "Pacific/Honolulu", "Pacific/Kiritimati", "Pacific/Kosrae", "Pacific/Kwajalein", "Pacific/Majuro", "Pacific/Marquesas", "Pacific/Midway", "Pacific/Nauru", "Pacific/Niue", "Pacific/Norfolk", "Pacific/Noumea", "Pacific/Pago_Pago", "Pacific/Palau", "Pacific/Pitcairn", "Pacific/Pohnpei", "Pacific/Port_Moresby", "Pacific/Rarotonga", "Pacific/Saipan", "Pacific/Tahiti", "Pacific/Tarawa", "Pacific/Tongatapu", "Pacific/Wake", "Pacific/Wallis"]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"get": {"type": "string"}, "parameters": {"type": "array"}, "errors": {"type": "array"}, "results": {"type": "integer"}, "response": {"type": "array", "items": {"type": "string"}}}, "required": ["errors", "get", "parameters", "response", "results"]} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/80b1bec6-a5af-46f3-bfa2-4806d8cc097a/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Players | Returns available players | 200 | Response | [{"player_age": "35", "player_country": "Portugal", "player_goals": "0", "player_key": 3183500916, "player_match_played": "0", "player_name": "Ronaldo Cristiano", "player_number": "7", "player_red_cards": "0", "player_type": "Forwards", "player_yellow_cards": "0", "team_key": "8326", "team_name": "Portugal"}, {"player_age": "35", "player_country": "Portugal", "player_goals": "8", "player_key": 3183500916, "player_match_played": "5", "player_name": "Ronaldo Cristiano", "player_number": "7", "player_red_cards": "0", "player_type": "Forwards", "player_yellow_cards": "0", "team_key": "4187", "team_name": "Juventus"}] | {"items": {"properties": {"player_age": {"type": "string"}, "player_country": {"type": "string"}, "player_goals": {"type": "string"}, "player_key": {"type": "integer"}, "player_match_played": {"type": "string"}, "player_name": {"type": "string"}, "player_number": {"type": "string"}, "player_red_cards": {"type": "string"}, "player_type": {"type": "string"}, "player_yellow_cards": {"type": "string"}, "team_key": {"type": "string"}, "team_name": {"type": "string"}}, "type": "object"}, "type": "array"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/0ea59bbc-fcdf-4462-b546-7e616723b490/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Standings | Returns standings for leagues included in your current subscription plan | 200 | Response | [{"away_league_D": "0", "away_league_GA": "3", "away_league_GF": "13", "away_league_L": "0", "away_league_PTS": "12", "away_league_W": "4", "away_league_payed": "4", "away_league_position": "1", "away_promotion": "", "country_name": "England", "home_league_D": "2", "home_league_GA": "6", "home_league_GF": "8", "home_league_L": "1", "home_league_PTS": "8", "home_league_W": "2", "home_league_payed": "5", "home_league_position": "3", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "9", "overall_league_GF": "21", "overall_league_L": "1", "overall_league_PTS": "20", "overall_league_W": "6", "overall_league_payed": "9", "overall_league_position": "1", "overall_promotion": "Promotion - Champions League (Group Stage)", "team_badge": "https://apiv2.apifootball.com/badges/2628_tottenham.png", "team_id": "2628", "team_name": "Tottenham"}, {"away_league_D": "2", "away_league_GA": "10", "away_league_GF": "7", "away_league_L": "1", "away_league_PTS": "5", "away_league_W": "1", "away_league_payed": "4", "away_league_position": "16", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "6", "home_league_GF": "14", "home_league_L": "0", "home_league_PTS": "15", "home_league_W": "5", "home_league_payed": "5", "home_league_position": "1", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "16", "overall_league_GF": "21", "overall_league_L": "1", "overall_league_PTS": "20", "overall_league_W": "6", "overall_league_payed": "9", "overall_league_position": "2", "overall_promotion": "Promotion - Champions League (Group Stage)", "team_badge": "https://apiv2.apifootball.com/badges/2621_liverpool.png", "team_id": "2621", "team_name": "Liverpool"}, {"away_league_D": "2", "away_league_GA": "4", "away_league_GF": "11", "away_league_L": "0", "away_league_PTS": "11", "away_league_W": "3", "away_league_payed": "5", "away_league_position": "3", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "6", "home_league_GF": "11", "home_league_L": "1", "home_league_PTS": "7", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "4", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "3", "overall_league_GA": "10", "overall_league_GF": "22", "overall_league_L": "1", "overall_league_PTS": "18", "overall_league_W": "5", "overall_league_payed": "9", "overall_league_position": "3", "overall_promotion": "Promotion - Champions League (Group Stage)", "team_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_id": "2616", "team_name": "Chelsea"}, {"away_league_D": "0", "away_league_GA": "6", "away_league_GF": "13", "away_league_L": "1", "away_league_PTS": "12", "away_league_W": "4", "away_league_payed": "5", "away_league_position": "2", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "6", "home_league_GF": "5", "home_league_L": "2", "home_league_PTS": "6", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "10", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "0", "overall_league_GA": "12", "overall_league_GF": "18", "overall_league_L": "3", "overall_league_PTS": "18", "overall_league_W": "6", "overall_league_payed": "9", "overall_league_position": "4", "overall_promotion": "Promotion - Champions League (Group Stage)", "team_badge": "https://apiv2.apifootball.com/badges/2611_leicester.png", "team_id": "2611", "team_name": "Leicester"}, {"away_league_D": "1", "away_league_GA": "7", "away_league_GF": "8", "away_league_L": "1", "away_league_PTS": "7", "away_league_W": "2", "away_league_payed": "4", "away_league_position": "10", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "5", "home_league_GF": "8", "home_league_L": "1", "home_league_PTS": "9", "home_league_W": "3", "home_league_payed": "4", "home_league_position": "2", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "12", "overall_league_GF": "16", "overall_league_L": "2", "overall_league_PTS": "16", "overall_league_W": "5", "overall_league_payed": "8", "overall_league_position": "5", "overall_promotion": "Promotion - Europa League (Group Stage)", "team_badge": "https://apiv2.apifootball.com/badges/2614_southampton.png", "team_id": "2614", "team_name": "Southampton"}, {"away_league_D": "0", "away_league_GA": "7", "away_league_GF": "7", "away_league_L": "2", "away_league_PTS": "9", "away_league_W": "3", "away_league_payed": "5", "away_league_position": "6", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "9", "home_league_GF": "12", "home_league_L": "1", "home_league_PTS": "7", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "5", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "16", "overall_league_GF": "19", "overall_league_L": "3", "overall_league_PTS": "16", "overall_league_W": "5", "overall_league_payed": "9", "overall_league_position": "6", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2612_everton.png", "team_id": "2612", "team_name": "Everton"}, {"away_league_D": "0", "away_league_GA": "0", "away_league_GF": "7", "away_league_L": "0", "away_league_PTS": "9", "away_league_W": "3", "away_league_payed": "3", "away_league_position": "4", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "11", "home_league_GF": "12", "home_league_L": "3", "home_league_PTS": "6", "home_league_W": "2", "home_league_payed": "5", "home_league_position": "9", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "0", "overall_league_GA": "11", "overall_league_GF": "19", "overall_league_L": "3", "overall_league_PTS": "15", "overall_league_W": "5", "overall_league_payed": "8", "overall_league_position": "7", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2632_aston-villa.png", "team_id": "2632", "team_name": "Aston Villa"}, {"away_league_D": "1", "away_league_GA": "7", "away_league_GF": "9", "away_league_L": "2", "away_league_PTS": "7", "away_league_W": "2", "away_league_payed": "5", "away_league_position": "8", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "3", "home_league_GF": "6", "home_league_L": "1", "home_league_PTS": "7", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "7", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "10", "overall_league_GF": "15", "overall_league_L": "3", "overall_league_PTS": "14", "overall_league_W": "4", "overall_league_payed": "9", "overall_league_position": "8", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2620_west-ham.png", "team_id": "2620", "team_name": "West Ham"}, {"away_league_D": "0", "away_league_GA": "8", "away_league_GF": "5", "away_league_L": "2", "away_league_PTS": "6", "away_league_W": "2", "away_league_payed": "4", "away_league_position": "14", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "4", "home_league_GF": "7", "home_league_L": "1", "home_league_PTS": "7", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "6", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "12", "overall_league_GF": "12", "overall_league_L": "3", "overall_league_PTS": "13", "overall_league_W": "4", "overall_league_payed": "8", "overall_league_position": "9", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2619_crystal-palace.png", "team_id": "2619", "team_name": "Crystal Palace"}, {"away_league_D": "0", "away_league_GA": "4", "away_league_GF": "10", "away_league_L": "0", "away_league_PTS": "9", "away_league_W": "3", "away_league_payed": "3", "away_league_position": "5", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "10", "home_league_GF": "3", "home_league_L": "3", "home_league_PTS": "4", "home_league_W": "1", "home_league_payed": "5", "home_league_position": "15", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "14", "overall_league_GF": "13", "overall_league_L": "3", "overall_league_PTS": "13", "overall_league_W": "4", "overall_league_payed": "8", "overall_league_position": "10", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2627_manchester-united.png", "team_id": "2627", "team_name": "Manchester Utd"}, {"away_league_D": "1", "away_league_GA": "4", "away_league_GF": "5", "away_league_L": "2", "away_league_PTS": "7", "away_league_W": "2", "away_league_payed": "5", "away_league_position": "11", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "6", "home_league_GF": "4", "home_league_L": "2", "home_league_PTS": "6", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "11", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "10", "overall_league_GF": "9", "overall_league_L": "4", "overall_league_PTS": "13", "overall_league_W": "4", "overall_league_payed": "9", "overall_league_position": "11", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_id": "2617", "team_name": "Arsenal"}, {"away_league_D": "0", "away_league_GA": "5", "away_league_GF": "3", "away_league_L": "2", "away_league_PTS": "6", "away_league_W": "2", "away_league_payed": "4", "away_league_position": "13", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "4", "home_league_GF": "5", "home_league_L": "1", "home_league_PTS": "7", "home_league_W": "2", "home_league_payed": "4", "home_league_position": "8", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "9", "overall_league_GF": "8", "overall_league_L": "3", "overall_league_PTS": "13", "overall_league_W": "4", "overall_league_payed": "8", "overall_league_position": "12", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2646_wolves.png", "team_id": "2646", "team_name": "Wolves"}, {"away_league_D": "2", "away_league_GA": "5", "away_league_GF": "6", "away_league_L": "1", "away_league_PTS": "8", "away_league_W": "2", "away_league_payed": "5", "away_league_position": "7", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "6", "home_league_GF": "4", "home_league_L": "1", "home_league_PTS": "4", "home_league_W": "1", "home_league_payed": "3", "home_league_position": "14", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "3", "overall_league_GA": "11", "overall_league_GF": "10", "overall_league_L": "2", "overall_league_PTS": "12", "overall_league_W": "3", "overall_league_payed": "8", "overall_league_position": "13", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2626_manchester-city.png", "team_id": "2626", "team_name": "Manchester City"}, {"away_league_D": "0", "away_league_GA": "8", "away_league_GF": "8", "away_league_L": "2", "away_league_PTS": "6", "away_league_W": "2", "away_league_payed": "4", "away_league_position": "12", "away_promotion": "", "country_name": "England", "home_league_D": "2", "home_league_GA": "9", "home_league_GF": "6", "home_league_L": "2", "home_league_PTS": "5", "home_league_W": "1", "home_league_payed": "5", "home_league_position": "13", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "17", "overall_league_GF": "14", "overall_league_L": "4", "overall_league_PTS": "11", "overall_league_W": "3", "overall_league_payed": "9", "overall_league_position": "14", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2653_leeds.png", "team_id": "2653", "team_name": "Leeds"}, {"away_league_D": "2", "away_league_GA": "4", "away_league_GF": "4", "away_league_L": "1", "away_league_PTS": "5", "away_league_W": "1", "away_league_payed": "4", "away_league_position": "15", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "11", "home_league_GF": "6", "home_league_L": "3", "home_league_PTS": "6", "home_league_W": "2", "home_league_payed": "5", "home_league_position": "12", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "15", "overall_league_GF": "10", "overall_league_L": "4", "overall_league_PTS": "11", "overall_league_W": "3", "overall_league_payed": "9", "overall_league_position": "15", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2630_newcastle.png", "team_id": "2630", "team_name": "Newcastle"}, {"away_league_D": "1", "away_league_GA": "8", "away_league_GF": "9", "away_league_L": "2", "away_league_PTS": "7", "away_league_W": "2", "away_league_payed": "5", "away_league_position": "9", "away_promotion": "", "country_name": "England", "home_league_D": "2", "home_league_GA": "7", "home_league_GF": "4", "home_league_L": "2", "home_league_PTS": "2", "home_league_W": "0", "home_league_payed": "4", "home_league_position": "17", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "3", "overall_league_GA": "15", "overall_league_GF": "13", "overall_league_L": "4", "overall_league_PTS": "9", "overall_league_W": "2", "overall_league_payed": "9", "overall_league_position": "16", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2613_brighton.png", "team_id": "2613", "team_name": "Brighton"}, {"away_league_D": "1", "away_league_GA": "7", "away_league_GF": "4", "away_league_L": "3", "away_league_PTS": "1", "away_league_W": "0", "away_league_payed": "4", "away_league_position": "18", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "11", "home_league_GF": "5", "home_league_L": "4", "home_league_PTS": "3", "home_league_W": "1", "home_league_payed": "5", "home_league_position": "16", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "18", "overall_league_GF": "9", "overall_league_L": "7", "overall_league_PTS": "4", "overall_league_W": "1", "overall_league_payed": "9", "overall_league_position": "17", "overall_promotion": "", "team_badge": "https://apiv2.apifootball.com/badges/2639_fulham.png", "team_id": "2639", "team_name": "Fulham"}, {"away_league_D": "1", "away_league_GA": "11", "away_league_GF": "3", "away_league_L": "4", "away_league_PTS": "1", "away_league_W": "0", "away_league_payed": "5", "away_league_position": "19", "away_promotion": "", "country_name": "England", "home_league_D": "2", "home_league_GA": "7", "home_league_GF": "3", "home_league_L": "2", "home_league_PTS": "2", "home_league_W": "0", "home_league_payed": "4", "home_league_position": "18", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "3", "overall_league_GA": "18", "overall_league_GF": "6", "overall_league_L": "6", "overall_league_PTS": "3", "overall_league_W": "0", "overall_league_payed": "9", "overall_league_position": "18", "overall_promotion": "Relegation - Championship", "team_badge": "https://apiv2.apifootball.com/badges/2625_west-brom.png", "team_id": "2625", "team_name": "West Brom"}, {"away_league_D": "2", "away_league_GA": "7", "away_league_GF": "3", "away_league_L": "2", "away_league_PTS": "2", "away_league_W": "0", "away_league_payed": "4", "away_league_position": "17", "away_promotion": "", "country_name": "England", "home_league_D": "0", "home_league_GA": "5", "home_league_GF": "0", "home_league_L": "3", "home_league_PTS": "0", "home_league_W": "0", "home_league_payed": "3", "home_league_position": "20", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "2", "overall_league_GA": "12", "overall_league_GF": "3", "overall_league_L": "5", "overall_league_PTS": "2", "overall_league_W": "0", "overall_league_payed": "7", "overall_league_position": "19", "overall_promotion": "Relegation - Championship", "team_badge": "https://apiv2.apifootball.com/badges/2629_burnley.png", "team_id": "2629", "team_name": "Burnley"}, {"away_league_D": "0", "away_league_GA": "9", "away_league_GF": "3", "away_league_L": "4", "away_league_PTS": "0", "away_league_W": "0", "away_league_payed": "4", "away_league_position": "20", "away_promotion": "", "country_name": "England", "home_league_D": "1", "home_league_GA": "6", "home_league_GF": "1", "home_league_L": "4", "home_league_PTS": "1", "home_league_W": "0", "home_league_payed": "5", "home_league_position": "19", "home_promotion": "", "league_id": "148", "league_name": "Premier League", "league_round": "", "overall_league_D": "1", "overall_league_GA": "15", "overall_league_GF": "4", "overall_league_L": "8", "overall_league_PTS": "1", "overall_league_W": "0", "overall_league_payed": "9", "overall_league_position": "20", "overall_promotion": "Relegation - Championship", "team_badge": "https://apiv2.apifootball.com/badges/2654_sheffield-utd.png", "team_id": "2654", "team_name": "Sheffield Utd"}] | {"items": {"properties": {"away_league_D": {"type": "string"}, "away_league_GA": {"type": "string"}, "away_league_GF": {"type": "string"}, "away_league_L": {"type": "string"}, "away_league_PTS": {"type": "string"}, "away_league_W": {"type": "string"}, "away_league_payed": {"type": "string"}, "away_league_position": {"type": "string"}, "away_promotion": {"type": "string"}, "country_name": {"type": "string"}, "home_league_D": {"type": "string"}, "home_league_GA": {"type": "string"}, "home_league_GF": {"type": "string"}, "home_league_L": {"type": "string"}, "home_league_PTS": {"type": "string"}, "home_league_W": {"type": "string"}, "home_league_payed": {"type": "string"}, "home_league_position": {"type": "string"}, "home_promotion": {"type": "string"}, "league_id": {"type": "string"}, "league_name": {"type": "string"}, "league_round": {"type": "string"}, "overall_league_D": {"type": "string"}, "overall_league_GA": {"type": "string"}, "overall_league_GF": {"type": "string"}, "overall_league_L": {"type": "string"}, "overall_league_PTS": {"type": "string"}, "overall_league_W": {"type": "string"}, "overall_league_payed": {"type": "string"}, "overall_league_position": {"type": "string"}, "overall_promotion": {"type": "string"}, "team_badge": {"type": "string"}, "team_id": {"type": "string"}, "team_name": {"type": "string"}}, "type": "object"}, "type": "array"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/60fbf78b-2d45-4884-a4f7-fafb3b9c07f7/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Countries | Returns list of supported countries included in your current subscription plan | 200 | Response | [{"country_id": "8", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/8_austria.png", "country_name": "Austria"}, {"country_id": "12", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/12_belarus.png", "country_name": "Belarus"}, {"country_id": "13", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/13_belgium.png", "country_name": "Belgium"}, {"country_id": "17", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/17_bosnia-and-herzegovina.png", "country_name": "Bosnia and Herzegovina"}, {"country_id": "20", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/20_bulgaria.png", "country_name": "Bulgaria"}, {"country_id": "31", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/31_croatia.png", "country_name": "Croatia"}, {"country_id": "32", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/32_cyprus.png", "country_name": "Cyprus"}, {"country_id": "33", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/33_czech-republic.png", "country_name": "Czech Republic"}, {"country_id": "34", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/34_denmark.png", "country_name": "Denmark"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England"}, {"country_id": "42", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/42_estonia.png", "country_name": "Estonia"}, {"country_id": "45", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/45_finland.png", "country_name": "Finland"}, {"country_id": "46", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/46_france.png", "country_name": "France"}, {"country_id": "51", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/51_germany.png", "country_name": "Germany"}, {"country_id": "54", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/54_greece.png", "country_name": "Greece"}, {"country_id": "60", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/60_hungary.png", "country_name": "Hungary"}, {"country_id": "61", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/61_iceland.png", "country_name": "Iceland"}, {"country_id": "66", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/66_ireland.png", "country_name": "Ireland"}, {"country_id": "67", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/67_israel.png", "country_name": "Israel"}, {"country_id": "68", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/68_italy.png", "country_name": "Italy"}, {"country_id": "78", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/78_latvia.png", "country_name": "Latvia"}, {"country_id": "84", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/84_lithuania.png", "country_name": "Lithuania"}, {"country_id": "85", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/85_luxembourg.png", "country_name": "Luxembourg"}, {"country_id": "94", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/94_moldova.png", "country_name": "Moldova"}, {"country_id": "95", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/95_montenegro.png", "country_name": "Montenegro"}, {"country_id": "100", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/100_netherlands.png", "country_name": "Netherlands"}, {"country_id": "105", "country_logo": "", "country_name": "Northern Ireland"}, {"country_id": "106", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/106_norway.png", "country_name": "Norway"}, {"country_id": "114", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/114_poland.png", "country_name": "Poland"}, {"country_id": "115", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/115_portugal.png", "country_name": "Portugal"}, {"country_id": "119", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/119_romania.png", "country_name": "Romania"}, {"country_id": "120", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/120_russia.png", "country_name": "Russia"}, {"country_id": "124", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/124_scotland.png", "country_name": "Scotland"}, {"country_id": "126", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/126_serbia.png", "country_name": "Serbia"}, {"country_id": "130", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/130_slovakia.png", "country_name": "Slovakia"}, {"country_id": "131", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/131_slovenia.png", "country_name": "Slovenia"}, {"country_id": "135", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/135_spain.png", "country_name": "Spain"}, {"country_id": "139", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/139_sweden.png", "country_name": "Sweden"}, {"country_id": "140", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/140_switzerland.png", "country_name": "Switzerland"}, {"country_id": "148", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/148_turkey.png", "country_name": "Turkey"}, {"country_id": "151", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/151_ukraine.png", "country_name": "Ukraine"}, {"country_id": "158", "country_logo": "", "country_name": "Wales"}] | {"items": {"properties": {"country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}}, "type": "object"}, "type": "array"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/88234ac0-9857-4513-9355-0bf7391981f8/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Competitions | Returns list of supported competitions included in your current subscription plan | 200 | Response | [{"country_id": "31", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/31_croatia.png", "country_name": "Croatia", "league_id": "110", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/110_1-hnl.png", "league_name": "1. HNL", "league_season": "2020/2021"}, {"country_id": "33", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/33_czech-republic.png", "country_name": "Czech Republic", "league_id": "120", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/120_1-liga.png", "league_name": "1. Liga", "league_season": "2020/2021"}, {"country_id": "78", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/78_latvia.png", "country_name": "Latvia", "league_id": "9673", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/9673_1-liga.png", "league_name": "1. Liga", "league_season": "2020"}, {"country_id": "84", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/84_lithuania.png", "country_name": "Lithuania", "league_id": "306", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/306_a-lyga.png", "league_name": "A Lyga", "league_season": "2020"}, {"country_id": "139", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/139_sweden.png", "country_name": "Sweden", "league_id": "481", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/481_allsvenskan.png", "league_name": "Allsvenskan", "league_season": "2020"}, {"country_id": "51", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/51_germany.png", "country_name": "Germany", "league_id": "195", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/195_bundesliga.png", "league_name": "Bundesliga", "league_season": "2020/2021"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "589", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/589_champions-league.png", "league_name": "Champions League", "league_season": "2020/2021"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "8817", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/8817_champions-league-women.png", "league_name": "Champions League Women", "league_season": "2020/2021"}, {"country_id": "158", "country_logo": "", "country_name": "Wales", "league_id": "551", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/551_cymru-premier.png", "league_name": "Cymru Premier", "league_season": "2020/2021"}, {"country_id": "94", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/94_moldova.png", "country_name": "Moldova", "league_id": "331", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/331_divizia-nationala.png", "league_name": "Divizia Nationala", "league_season": "2020/2021"}, {"country_id": "114", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/114_poland.png", "country_name": "Poland", "league_id": "381", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/381_ekstraklasa.png", "league_name": "Ekstraklasa", "league_season": "2020/2021"}, {"country_id": "106", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/106_norway.png", "country_name": "Norway", "league_id": "359", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/359_eliteserien.png", "league_name": "Eliteserien", "league_season": "2020"}, {"country_id": "100", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/100_netherlands.png", "country_name": "Netherlands", "league_id": "343", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/343_eredivisie.png", "league_name": "Eredivisie", "league_season": "2020/2021"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "588", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/588_euro.png", "league_name": "Euro", "league_season": "2020"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "590", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/590_europa-league.png", "league_name": "Europa League", "league_season": "2020/2021"}, {"country_id": "32", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/32_cyprus.png", "country_name": "Cyprus", "league_id": "114", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/114_first-division.png", "league_name": "First Division", "league_season": "2020/2021"}, {"country_id": "130", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/130_slovakia.png", "country_name": "Slovakia", "league_id": "443", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/443_fortuna-liga.png", "league_name": "Fortuna liga", "league_season": "2020/2021"}, {"country_id": "13", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/13_belgium.png", "country_name": "Belgium", "league_id": "51", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/51_jupiler-league.png", "league_name": "Jupiler League", "league_season": "2020/2021"}, {"country_id": "135", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/135_spain.png", "country_name": "Spain", "league_id": "468", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/468_laliga.png", "league_name": "LaLiga", "league_season": "2020/2021"}, {"country_id": "67", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/67_israel.png", "country_name": "Israel", "league_id": "258", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/258_leumit-league.png", "league_name": "Leumit League", "league_season": "2020/2021"}, {"country_id": "119", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/119_romania.png", "country_name": "Romania", "league_id": "400", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/400_liga-1.png", "league_name": "Liga 1", "league_season": "2020/2021"}, {"country_id": "67", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/67_israel.png", "country_name": "Israel", "league_id": "10087", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/10087_ligat-haal.png", "league_name": "Ligat ha'Al", "league_season": "2020/2021"}, {"country_id": "46", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/46_france.png", "country_name": "France", "league_id": "176", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/176_ligue-1.png", "league_name": "Ligue 1", "league_season": "2020/2021"}, {"country_id": "42", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/42_estonia.png", "country_name": "Estonia", "league_id": "158", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/158_meistriliiga.png", "league_name": "Meistriliiga", "league_season": "2020"}, {"country_id": "85", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/85_luxembourg.png", "country_name": "Luxembourg", "league_id": "310", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/310_national-division.png", "league_name": "National Division", "league_season": "2020/2021"}, {"country_id": "105", "country_logo": "", "country_name": "Northern Ireland", "league_id": "354", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/354_nifl-premiership.png", "league_name": "NIFL Premiership", "league_season": "2020/2021"}, {"country_id": "60", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/60_hungary.png", "country_name": "Hungary", "league_id": "224", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/224_otp-bank-liga.png", "league_name": "OTP Bank Liga", "league_season": "2020/2021"}, {"country_id": "20", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/20_bulgaria.png", "country_name": "Bulgaria", "league_id": "78", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/78_parva-liga.png", "league_name": "Parva liga", "league_season": "2020/2021"}, {"country_id": "61", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/61_iceland.png", "country_name": "Iceland", "league_id": "232", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/232_pepsideild.png", "league_name": "Pepsideild", "league_season": "2020"}, {"country_id": "66", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/66_ireland.png", "country_name": "Ireland", "league_id": "253", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/253_premier-division.png", "league_name": "Premier Division", "league_season": "2020"}, {"country_id": "151", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/151_ukraine.png", "country_name": "Ukraine", "league_id": "523", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/523_premier-league.png", "league_name": "Premier League", "league_season": "2020/2021"}, {"country_id": "17", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/17_bosnia-and-herzegovina.png", "country_name": "Bosnia and Herzegovina", "league_id": "63", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/63_premier-league.png", "league_name": "Premier League", "league_season": "2020/2021"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "league_season": "2020/2021"}, {"country_id": "120", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/120_russia.png", "country_name": "Russia", "league_id": "407", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/407_premier-league.png", "league_name": "Premier League", "league_season": "2020/2021"}, {"country_id": "124", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/124_scotland.png", "country_name": "Scotland", "league_id": "423", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/423_premiership.png", "league_name": "Premiership", "league_season": "2020/2021"}, {"country_id": "115", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/115_portugal.png", "country_name": "Portugal", "league_id": "391", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/391_primeira-liga.png", "league_name": "Primeira Liga", "league_season": "2020/2021"}, {"country_id": "95", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/95_montenegro.png", "country_name": "Montenegro", "league_id": "334", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/334_prva-crnogorska-liga.png", "league_name": "Prva Crnogorska Liga", "league_season": "2020/2021"}, {"country_id": "131", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/131_slovenia.png", "country_name": "Slovenia", "league_id": "453", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/453_prva-liga.png", "league_name": "Prva liga", "league_season": "2020/2021"}, {"country_id": "68", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/68_italy.png", "country_name": "Italy", "league_id": "262", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/262_serie-a.png", "league_name": "Serie A", "league_season": "2020/2021"}, {"country_id": "54", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/54_greece.png", "country_name": "Greece", "league_id": "209", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/209_super-league.png", "league_name": "Super League", "league_season": "2020/2021"}, {"country_id": "140", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/140_switzerland.png", "country_name": "Switzerland", "league_id": "491", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/491_super-league.png", "league_name": "Super League", "league_season": "2020/2021"}, {"country_id": "148", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/148_turkey.png", "country_name": "Turkey", "league_id": "511", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/511_super-lig.png", "league_name": "Super Lig", "league_season": "2020/2021"}, {"country_id": "126", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/126_serbia.png", "country_name": "Serbia", "league_id": "434", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/434_super-liga.png", "league_name": "Super Liga", "league_season": "2020/2021"}, {"country_id": "34", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/34_denmark.png", "country_name": "Denmark", "league_id": "130", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/130_superliga.png", "league_name": "Superliga", "league_season": "2020/2021"}, {"country_id": "8", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/8_austria.png", "country_name": "Austria", "league_id": "33", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/33_tipico-bundesliga.png", "league_name": "Tipico Bundesliga", "league_season": "2020/2021"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "9489", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/9489_uefa-nations-league.png", "league_name": "UEFA Nations League", "league_season": "2020/2021"}, {"country_id": "45", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/45_finland.png", "country_name": "Finland", "league_id": "166", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/166_veikkausliiga.png", "league_name": "Veikkausliiga", "league_season": "2020"}, {"country_id": "12", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/12_belarus.png", "country_name": "Belarus", "league_id": "47", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/47_vysshaya-liga.png", "league_name": "Vysshaya Liga", "league_season": "2020"}] | {"items": {"properties": {"country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}, "league_id": {"type": "string"}, "league_logo": {"type": "string"}, "league_name": {"type": "string"}, "league_season": {"type": "string"}}, "type": "object"}, "type": "array"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/6f6adb68-2b81-4e2a-961f-28782354858c/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Events (Results / Fixtures) | Returns events included in your current subscription plan | 200 | Response | [{"cards": [{"away_fault": "Faucher J.", "card": "yellow card", "home_fault": "", "info": "", "time": "25"}, {"away_fault": "Kovacevic A.", "card": "yellow card", "home_fault": "", "info": "", "time": "38"}, {"away_fault": "", "card": "yellow card", "home_fault": "Velez F.", "info": "", "time": "49"}, {"away_fault": "Baxevanidis D.", "card": "yellow card", "home_fault": "", "info": "", "time": "56"}, {"away_fault": "", "card": "yellow card", "home_fault": "Rose L.", "info": "", "time": "60"}, {"away_fault": "", "card": "yellow card", "home_fault": "Korhut M.", "info": "", "time": "71"}, {"away_fault": "Djurickovic P.", "card": "yellow card", "home_fault": "", "info": "", "time": "75"}], "country_id": "54", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/54_greece.png", "country_name": "Greece", "goalscorer": [{"away_assist": "", "away_assist_id": "", "away_scorer": "", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "Gama B.", "home_scorer_id": "", "info": "Penalty", "score": "1 - 0", "time": "59"}], "league_id": "209", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/209_super-league.png", "league_name": "Super League", "lineup": {"away": {"coach": [{"lineup_number": "-1", "lineup_player": "Paraschos G.", "lineup_position": "", "player_key": "2515505614"}], "missing_players": [], "starting_lineups": [{"lineup_number": "5", "lineup_player": "Baxevanidis D.", "lineup_position": "5", "player_key": "1257441169"}, {"lineup_number": "22", "lineup_player": "Casado J.", "lineup_position": "2", "player_key": "3669631077"}, {"lineup_number": "87", "lineup_player": "Castro M.", "lineup_position": "9", "player_key": "3959617300"}, {"lineup_number": "10", "lineup_player": "Djurickovic P.", "lineup_position": "10", "player_key": "3469623425"}, {"lineup_number": "27", "lineup_player": "Fasidis V.", "lineup_position": "8", "player_key": "2431961197"}, {"lineup_number": "11", "lineup_player": "Faucher J.", "lineup_position": "11", "player_key": "3613365680"}, {"lineup_number": "9", "lineup_player": "Kovacevic A.", "lineup_position": "6", "player_key": "2502396524"}, {"lineup_number": "31", "lineup_player": "Lisgaras C.", "lineup_position": "4", "player_key": "3705927984"}, {"lineup_number": "25", "lineup_player": "Sosa L.", "lineup_position": "3", "player_key": "864570289"}, {"lineup_number": "28", "lineup_player": "Terki M.", "lineup_position": "7", "player_key": "2700213900"}, {"lineup_number": "1", "lineup_player": "Trujillo Hernandez A. C. (G)", "lineup_position": "1", "player_key": "3642229658"}], "substitutes": [{"lineup_number": "8", "lineup_player": "Camara K.", "lineup_position": "", "player_key": "434368753"}, {"lineup_number": "91", "lineup_player": "William", "lineup_position": "", "player_key": "793524725"}, {"lineup_number": "12", "lineup_player": "Eduardo", "lineup_position": "", "player_key": "4112112389"}, {"lineup_number": "23", "lineup_player": "Malezas S.", "lineup_position": "", "player_key": "1235795273"}, {"lineup_number": "92", "lineup_player": "Sao Bento V. (G)", "lineup_position": "", "player_key": "1699040780"}, {"lineup_number": "7", "lineup_player": "Sturgeon F.", "lineup_position": "", "player_key": "2957765966"}, {"lineup_number": "18", "lineup_player": "Thymianis K.", "lineup_position": "", "player_key": "3430539667"}]}, "home": {"coach": [{"lineup_number": "-1", "lineup_player": "Oenning M.", "lineup_position": "", "player_key": "1265268448"}], "missing_players": [], "starting_lineups": [{"lineup_number": "5", "lineup_player": "Delizisis G.", "lineup_position": "4", "player_key": "1599313685"}, {"lineup_number": "28", "lineup_player": "Fetfatzidis G.", "lineup_position": "8", "player_key": "3112240834"}, {"lineup_number": "16", "lineup_player": "Gama B.", "lineup_position": "10", "player_key": "2968679657"}, {"lineup_number": "23", "lineup_player": "Julian (G)", "lineup_position": "1", "player_key": "2580093240"}, {"lineup_number": "69", "lineup_player": "Korhut M.", "lineup_position": "5", "player_key": "423613559"}, {"lineup_number": "10", "lineup_player": "Larsson D.", "lineup_position": "9", "player_key": "817176844"}, {"lineup_number": "24", "lineup_player": "Mancini D.", "lineup_position": "11", "player_key": "2096857347"}, {"lineup_number": "26", "lineup_player": "Matilla J.", "lineup_position": "6", "player_key": "1183090026"}, {"lineup_number": "92", "lineup_player": "Rose L.", "lineup_position": "2", "player_key": "1961973473"}, {"lineup_number": "88", "lineup_player": "Sasha", "lineup_position": "7", "player_key": "3389299776"}, {"lineup_number": "44", "lineup_player": "Velez F.", "lineup_position": "3", "player_key": "1023787549"}], "substitutes": [{"lineup_number": "98", "lineup_player": "Ba A.", "lineup_position": "", "player_key": "1193241985"}, {"lineup_number": "38", "lineup_player": "Bakoutsis P.", "lineup_position": "", "player_key": "3979985431"}, {"lineup_number": "7", "lineup_player": "Diguiny N.", "lineup_position": "", "player_key": "3975950514"}, {"lineup_number": "1", "lineup_player": "Ehmann F. (G)", "lineup_position": "", "player_key": "1854453602"}, {"lineup_number": "18", "lineup_player": "Martinez N.", "lineup_position": "", "player_key": "4060103221"}, {"lineup_number": "3", "lineup_player": "Sousa H.", "lineup_position": "", "player_key": "54434122"}, {"lineup_number": "19", "lineup_player": "Tonso M.", "lineup_position": "", "player_key": "928571490"}]}}, "match_awayteam_extra_score": "", "match_awayteam_ft_score": "", "match_awayteam_halftime_score": "0", "match_awayteam_id": "3431", "match_awayteam_name": "Xanthi FC", "match_awayteam_penalty_score": "", "match_awayteam_score": "0", "match_awayteam_system": "4 - 2 - 3 - 1", "match_date": "2020-01-23", "match_hometeam_extra_score": "", "match_hometeam_ft_score": "", "match_hometeam_halftime_score": "0", "match_hometeam_id": "3455", "match_hometeam_name": "Aris", "match_hometeam_penalty_score": "", "match_hometeam_score": "1", "match_hometeam_system": "4 - 2 - 3 - 1", "match_id": "258427", "match_live": "0", "match_referee": "Fotiadis F. (Gre)", "match_round": "Round 20", "match_stadium": "Kleanthis Vikelidis Stadium (Thessaloniki)", "match_status": "Finished", "match_time": "18:30", "statistics": [{"away": "45%", "home": "55%", "type": "Ball Possession"}, {"away": "3", "home": "12", "type": "Goal Attempts"}, {"away": "1", "home": "7", "type": "Shots on Goal"}, {"away": "2", "home": "5", "type": "Shots off Goal"}, {"away": "17", "home": "23", "type": "Free Kicks"}, {"away": "2", "home": "4", "type": "Corner Kicks"}, {"away": "1", "home": "3", "type": "Offsides"}, {"away": "29", "home": "32", "type": "Throw-in"}, {"away": "6", "home": "1", "type": "Goalkeeper Saves"}, {"away": "23", "home": "15", "type": "Fouls"}, {"away": "4", "home": "3", "type": "Yellow Cards"}, {"away": "86", "home": "87", "type": "Attacks"}, {"away": "28", "home": "42", "type": "Dangerous Attacks"}], "substitutions": {"away": [{"substitution": "Faucher J. | Eduardo", "time": "59"}, {"substitution": "Fasidis V. | Sturgeon F.", "time": "63"}, {"substitution": "Kovacevic A. | William", "time": "81"}], "home": [{"substitution": "Mancini D. | Diguiny N.", "time": "54"}, {"substitution": "Larsson D. | Martinez N.", "time": "85"}, {"substitution": "Matilla J. | Ba A.", "time": "90+3"}]}, "team_away_badge": "https://apiv2.apifootball.com/badges/3431_xanthi-fc.png", "team_home_badge": "https://apiv2.apifootball.com/badges/3455_aris.png"}, {"cards": [{"away_fault": "", "card": "yellow card", "home_fault": "Iglesias W.", "info": "", "time": "41"}, {"away_fault": "", "card": "yellow card", "home_fault": "Matricardi P.", "info": "", "time": "45+2"}, {"away_fault": "", "card": "yellow card", "home_fault": "Pasalidis T.", "info": "", "time": "60"}, {"away_fault": "", "card": "yellow card", "home_fault": "Barrales J.", "info": "", "time": "63"}, {"away_fault": "", "card": "yellow card", "home_fault": "Kotsiras G.", "info": "", "time": "74"}, {"away_fault": "Papanikolaou G.", "card": "yellow card", "home_fault": "", "info": "", "time": "82"}, {"away_fault": "", "card": "red card", "home_fault": "Barrales J.", "info": "", "time": "90+3"}], "country_id": "54", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/54_greece.png", "country_name": "Greece", "goalscorer": [{"away_assist": "", "away_assist_id": "", "away_scorer": "", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "Barrales J.", "home_scorer_id": "", "info": "Penalty", "score": "1 - 0", "time": "35"}, {"away_assist": "", "away_assist_id": "", "away_scorer": "", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "Iglesias W.", "home_scorer_id": "", "info": "", "score": "2 - 0", "time": "52"}], "league_id": "209", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/209_super-league.png", "league_name": "Super League", "lineup": {"away": {"coach": [{"lineup_number": "-1", "lineup_player": "Papavasiliou N.", "lineup_position": "", "player_key": "112516247"}], "missing_players": [], "starting_lineups": [{"lineup_number": "10", "lineup_player": "Arabuli B.", "lineup_position": "10", "player_key": "1610943584"}, {"lineup_number": "5", "lineup_player": "Domingues", "lineup_position": "3", "player_key": "3402835352"}, {"lineup_number": "77", "lineup_player": "Emmanouilidis D.", "lineup_position": "11", "player_key": "876755903"}, {"lineup_number": "4", "lineup_player": "Evangelou S.", "lineup_position": "2", "player_key": "434716539"}, {"lineup_number": "19", "lineup_player": "Kiakos G.", "lineup_position": "6", "player_key": "627981103"}, {"lineup_number": "7", "lineup_player": "Korbos P.", "lineup_position": "7", "player_key": "1811161975"}, {"lineup_number": "12", "lineup_player": "Kotnik M. (G)", "lineup_position": "1", "player_key": "3510695574"}, {"lineup_number": "31", "lineup_player": "Masouras G.", "lineup_position": "8", "player_key": "2200114141"}, {"lineup_number": "44", "lineup_player": "Milogevits N.", "lineup_position": "9", "player_key": "3730674992"}, {"lineup_number": "22", "lineup_player": "Papageorgiou A.", "lineup_position": "5", "player_key": "3006262111"}, {"lineup_number": "14", "lineup_player": "Stavropoulos D.", "lineup_position": "4", "player_key": "1443306851"}], "substitutes": [{"lineup_number": "28", "lineup_player": "Bergstrom A.", "lineup_position": "", "player_key": "0"}, {"lineup_number": "9", "lineup_player": "Doumtsios K.", "lineup_position": "", "player_key": "2319385862"}, {"lineup_number": "67", "lineup_player": "Malherbe J. (G)", "lineup_position": "", "player_key": "503694917"}, {"lineup_number": "16", "lineup_player": "Oikonomidis I.", "lineup_position": "", "player_key": "1955410298"}, {"lineup_number": "27", "lineup_player": "Papanikolaou G.", "lineup_position": "", "player_key": "2303424351"}, {"lineup_number": "18", "lineup_player": "Rentzas V.", "lineup_position": "", "player_key": "1890991257"}, {"lineup_number": "3", "lineup_player": "Saramantas G.", "lineup_position": "", "player_key": "3963849646"}]}, "home": {"coach": [{"lineup_number": "-1", "lineup_player": "Rastavac M.", "lineup_position": "", "player_key": "3657019975"}], "missing_players": [], "starting_lineups": [{"lineup_number": "30", "lineup_player": "Barrales J.", "lineup_position": "11", "player_key": "60155103"}, {"lineup_number": "7", "lineup_player": "Fernandez M.", "lineup_position": "6", "player_key": "3504703481"}, {"lineup_number": "17", "lineup_player": "Iglesias W.", "lineup_position": "7", "player_key": "1953512907"}, {"lineup_number": "27", "lineup_player": "Kotsiras G.", "lineup_position": "2", "player_key": "2603345609"}, {"lineup_number": "34", "lineup_player": "Matricardi P.", "lineup_position": "3", "player_key": "1092352296"}, {"lineup_number": "12", "lineup_player": "Munafo J.", "lineup_position": "8", "player_key": "976078366"}, {"lineup_number": "1", "lineup_player": "Papadopoulos N. (G)", "lineup_position": "1", "player_key": "3060864309"}, {"lineup_number": "4", "lineup_player": "Pasalidis T.", "lineup_position": "4", "player_key": "2796043436"}, {"lineup_number": "40", "lineup_player": "Sito", "lineup_position": "9", "player_key": "3658279202"}, {"lineup_number": "11", "lineup_player": "Xesc", "lineup_position": "10", "player_key": "4021419330"}, {"lineup_number": "3", "lineup_player": "Tasoulis C.", "lineup_position": "5", "player_key": "929687350"}], "substitutes": [{"lineup_number": "8", "lineup_player": "Fernandez B.", "lineup_position": "", "player_key": "126005790"}, {"lineup_number": "10", "lineup_player": "Fernandez L.", "lineup_position": "", "player_key": "4054397299"}, {"lineup_number": "33", "lineup_player": "Martinez A.", "lineup_position": "", "player_key": "1545876102"}, {"lineup_number": "93", "lineup_player": "Neofytos M. (G)", "lineup_position": "", "player_key": "16930870"}, {"lineup_number": "23", "lineup_player": "Riera A.", "lineup_position": "", "player_key": "4115839052"}, {"lineup_number": "6", "lineup_player": "Valiente J.", "lineup_position": "", "player_key": "1438831622"}, {"lineup_number": "37", "lineup_player": "Vlachos V.", "lineup_position": "", "player_key": "580802665"}]}}, "match_awayteam_extra_score": "", "match_awayteam_ft_score": "", "match_awayteam_halftime_score": "0", "match_awayteam_id": "3425", "match_awayteam_name": "Panionios", "match_awayteam_penalty_score": "", "match_awayteam_score": "0", "match_awayteam_system": "4 - 4 - 2", "match_date": "2020-01-23", "match_hometeam_extra_score": "", "match_hometeam_ft_score": "", "match_hometeam_halftime_score": "1", "match_hometeam_id": "3424", "match_hometeam_name": "Asteras Tripolis", "match_hometeam_penalty_score": "", "match_hometeam_score": "2", "match_hometeam_system": "4 - 4 - 2", "match_id": "258428", "match_live": "0", "match_referee": "Kominis G. (Gre)", "match_round": "Round 20", "match_stadium": "Theodoros Kolokotronis Stadium (Tripoli)", "match_status": "Finished", "match_time": "16:15", "statistics": [{"away": "41%", "home": "59%", "type": "Ball Possession"}, {"away": "4", "home": "7", "type": "Goal Attempts"}, {"away": "2", "home": "4", "type": "Shots on Goal"}, {"away": "2", "home": "3", "type": "Shots off Goal"}, {"away": "22", "home": "10", "type": "Free Kicks"}, {"away": "5", "home": "7", "type": "Corner Kicks"}, {"away": "2", "home": "2", "type": "Offsides"}, {"away": "26", "home": "18", "type": "Throw-in"}, {"away": "2", "home": "2", "type": "Goalkeeper Saves"}, {"away": "8", "home": "21", "type": "Fouls"}, {"away": "0", "home": "1", "type": "Red Cards"}, {"away": "1", "home": "6", "type": "Yellow Cards"}, {"away": "105", "home": "130", "type": "Attacks"}, {"away": "59", "home": "70", "type": "Dangerous Attacks"}], "substitutions": {"away": [{"substitution": "Kiakos G. | Saramantas G.", "time": "46"}, {"substitution": "Milogevits N. | Papanikolaou G.", "time": "46"}, {"substitution": "Papageorgiou A. | Doumtsios K.", "time": "80"}], "home": [{"substitution": "Sito | Riera A.", "time": "18"}, {"substitution": "Iglesias W. | Valiente J.", "time": "66"}, {"substitution": "Xesc | Fernandez L.", "time": "78"}]}, "team_away_badge": "https://apiv2.apifootball.com/badges/3425_panionios.png", "team_home_badge": "https://apiv2.apifootball.com/badges/3424_asteras-tripolis.png"}, {"cards": [{"away_fault": "Akpom Ch.", "card": "yellow card", "home_fault": "", "info": "", "time": "13"}, {"away_fault": "Mauricio", "card": "yellow card", "home_fault": "", "info": "", "time": "23"}, {"away_fault": "", "card": "yellow card", "home_fault": "Wanderson", "info": "", "time": "32"}, {"away_fault": "", "card": "yellow card", "home_fault": "Adejo D.", "info": "", "time": "79"}, {"away_fault": "", "card": "yellow card", "home_fault": "Sassi I.", "info": "", "time": "88"}, {"away_fault": "Douglas", "card": "yellow card", "home_fault": "", "info": "", "time": "90+1"}, {"away_fault": "Matos L.", "card": "yellow card", "home_fault": "", "info": "", "time": "90+5"}], "country_id": "54", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/54_greece.png", "country_name": "Greece", "goalscorer": [{"away_assist": "", "away_assist_id": "", "away_scorer": "Matos L.", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "", "home_scorer_id": "", "info": "", "score": "0 - 1", "time": "33"}], "league_id": "209", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/209_super-league.png", "league_name": "Super League", "lineup": {"away": {"coach": [{"lineup_number": "-1", "lineup_player": "Ferreira A.", "lineup_position": "", "player_key": "3934628537"}], "missing_players": [], "starting_lineups": [{"lineup_number": "47", "lineup_player": "Akpom Ch.", "lineup_position": "11", "player_key": "3052715348"}, {"lineup_number": "24", "lineup_player": "Esiti A.", "lineup_position": "6", "player_key": "772805357"}, {"lineup_number": "23", "lineup_player": "Giannoulis D.", "lineup_position": "5", "player_key": "250782534"}, {"lineup_number": "4", "lineup_player": "Ingason S.", "lineup_position": "3", "player_key": "1854396916"}, {"lineup_number": "18", "lineup_player": "Limnios D.", "lineup_position": "8", "player_key": "2682668602"}, {"lineup_number": "3", "lineup_player": "Matos L.", "lineup_position": "2", "player_key": "1041841537"}, {"lineup_number": "8", "lineup_player": "Mauricio", "lineup_position": "7", "player_key": "4122582819"}, {"lineup_number": "27", "lineup_player": "Misic J.", "lineup_position": "9", "player_key": "138451319"}, {"lineup_number": "5", "lineup_player": "Varela F.", "lineup_position": "4", "player_key": "1352394757"}, {"lineup_number": "20", "lineup_player": "Vieirinha", "lineup_position": "10", "player_key": "2402844502"}, {"lineup_number": "88", "lineup_player": "Zivkovic Z. (G)", "lineup_position": "1", "player_key": "1184111174"}], "substitutes": [{"lineup_number": "21", "lineup_player": "Biseswar D.", "lineup_position": "", "player_key": "2479375112"}, {"lineup_number": "15", "lineup_player": "Crespo J. A.", "lineup_position": "", "player_key": "3986354395"}, {"lineup_number": "33", "lineup_player": "Douglas", "lineup_position": "", "player_key": "2882259443"}, {"lineup_number": "22", "lineup_player": "Lamprou L.", "lineup_position": "", "player_key": "3471793286"}, {"lineup_number": "31", "lineup_player": "Paschalakis A. (G)", "lineup_position": "", "player_key": "467577545"}, {"lineup_number": "10", "lineup_player": "Pelkas D.", "lineup_position": "", "player_key": "3257322030"}, {"lineup_number": "9", "lineup_player": "Swiderski K.", "lineup_position": "", "player_key": "1307371908"}]}, "home": {"coach": [{"lineup_number": "-1", "lineup_player": "Mantzios A.", "lineup_position": "", "player_key": "2004411472"}], "missing_players": [], "starting_lineups": [{"lineup_number": "4", "lineup_player": "Adejo D.", "lineup_position": "7", "player_key": "3254546186"}, {"lineup_number": "50", "lineup_player": "Asigba M.", "lineup_position": "3", "player_key": "3572610962"}, {"lineup_number": "16", "lineup_player": "Bejarano Da.", "lineup_position": "6", "player_key": "4251198268"}, {"lineup_number": "21", "lineup_player": "Dimoutsos E.", "lineup_position": "8", "player_key": "1570964027"}, {"lineup_number": "11", "lineup_player": "Karamanos A.", "lineup_position": "10", "player_key": "2937205985"}, {"lineup_number": "8", "lineup_player": "Pliatsikas V.", "lineup_position": "5", "player_key": "2932431862"}, {"lineup_number": "18", "lineup_player": "Romanic L.", "lineup_position": "4", "player_key": "1228944050"}, {"lineup_number": "23", "lineup_player": "Skondras G.", "lineup_position": "11", "player_key": "1073848243"}, {"lineup_number": "30", "lineup_player": "Theodoropoulos K. (G)", "lineup_position": "1", "player_key": "1560143462"}, {"lineup_number": "24", "lineup_player": "Vyntra L.", "lineup_position": "9", "player_key": "4173677805"}, {"lineup_number": "27", "lineup_player": "Wanderson", "lineup_position": "2", "player_key": "1926578260"}], "substitutes": [{"lineup_number": "9", "lineup_player": "Miguel", "lineup_position": "", "player_key": "2121283351"}, {"lineup_number": "61", "lineup_player": "Bouloulis K.", "lineup_position": "", "player_key": "3431663179"}, {"lineup_number": "13", "lineup_player": "Kahriman D. (G)", "lineup_position": "", "player_key": "1434632700"}, {"lineup_number": "34", "lineup_player": "Saliakas M.", "lineup_position": "", "player_key": "2826812773"}, {"lineup_number": "19", "lineup_player": "Sassi I.", "lineup_position": "", "player_key": "453323535"}, {"lineup_number": "7", "lineup_player": "Vasilogiannis A.", "lineup_position": "", "player_key": "3896153117"}, {"lineup_number": "17", "lineup_player": "Vlachomitros A.", "lineup_position": "", "player_key": "2056892317"}]}}, "match_awayteam_extra_score": "", "match_awayteam_ft_score": "", "match_awayteam_halftime_score": "1", "match_awayteam_id": "3423", "match_awayteam_name": "PAOK", "match_awayteam_penalty_score": "", "match_awayteam_score": "1", "match_awayteam_system": "4 - 2 - 3 - 1", "match_date": "2020-01-23", "match_hometeam_extra_score": "", "match_hometeam_ft_score": "", "match_hometeam_halftime_score": "0", "match_hometeam_id": "3427", "match_hometeam_name": "Lamia", "match_hometeam_penalty_score": "", "match_hometeam_score": "0", "match_hometeam_system": "4 - 3 - 3", "match_id": "258429", "match_live": "0", "match_referee": "Sezos A. (Gre)", "match_round": "Round 20", "match_stadium": "Lamia Municipal Stadium (Lamia)", "match_status": "Finished", "match_time": "18:00", "statistics": [{"away": "55%", "home": "45%", "type": "Ball Possession"}, {"away": "7", "home": "5", "type": "Goal Attempts"}, {"away": "4", "home": "3", "type": "Shots on Goal"}, {"away": "3", "home": "2", "type": "Shots off Goal"}, {"away": "18", "home": "21", "type": "Free Kicks"}, {"away": "1", "home": "3", "type": "Corner Kicks"}, {"away": "1", "home": "2", "type": "Offsides"}, {"away": "29", "home": "29", "type": "Throw-in"}, {"away": "3", "home": "3", "type": "Goalkeeper Saves"}, {"away": "20", "home": "17", "type": "Fouls"}, {"away": "4", "home": "3", "type": "Yellow Cards"}, {"away": "133", "home": "127", "type": "Attacks"}, {"away": "75", "home": "69", "type": "Dangerous Attacks"}], "substitutions": {"away": [{"substitution": "Akpom Ch. | Swiderski K.", "time": "63"}, {"substitution": "Giannoulis D. | Crespo J. A.", "time": "69"}, {"substitution": "Vieirinha | Douglas", "time": "86"}], "home": [{"substitution": "Karamanos A. | Miguel", "time": "69"}, {"substitution": "Asigba M. | Vasilogiannis A.", "time": "73"}, {"substitution": "Skondras G. | Sassi I.", "time": "86"}]}, "team_away_badge": "https://apiv2.apifootball.com/badges/3423_paok.png", "team_home_badge": "https://apiv2.apifootball.com/badges/3427_lamia.png"}, {"cards": [{"away_fault": "Robertson A.", "card": "yellow card", "home_fault": "", "info": "Tripping", "time": "55"}], "country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "goalscorer": [{"away_assist": "", "away_assist_id": "", "away_scorer": "Henderson J.", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "", "home_scorer_id": "", "info": "", "score": "0 - 1", "time": "8"}, {"away_assist": "", "away_assist_id": "", "away_scorer": "", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "Jimenez R.", "home_scorer_id": "", "info": "", "score": "1 - 1", "time": "51"}, {"away_assist": "", "away_assist_id": "", "away_scorer": "Firmino R.", "away_scorer_id": "", "home_assist": "", "home_assist_id": "", "home_scorer": "", "home_scorer_id": "", "info": "", "score": "1 - 2", "time": "84"}], "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "lineup": {"away": {"coach": [{"lineup_number": "-1", "lineup_player": "Klopp J.", "lineup_position": "", "player_key": "4095832479"}], "missing_players": [{"lineup_number": "-1", "lineup_player": "Clyne N.", "lineup_position": "", "player_key": "3166479667"}, {"lineup_number": "-1", "lineup_player": "Keita N.", "lineup_position": "", "player_key": "689311334"}, {"lineup_number": "-1", "lineup_player": "Lovren D.", "lineup_position": "", "player_key": "893257830"}, {"lineup_number": "-1", "lineup_player": "Milner J.", "lineup_position": "", "player_key": "4112265669"}, {"lineup_number": "-1", "lineup_player": "Shaqiri X.", "lineup_position": "", "player_key": "3058191157"}], "starting_lineups": [{"lineup_number": "66", "lineup_player": "Alexander-Arnold T.", "lineup_position": "2", "player_key": "1018331370"}, {"lineup_number": "1", "lineup_player": "Alisson (G)", "lineup_position": "1", "player_key": "503326791"}, {"lineup_number": "9", "lineup_player": "Firmino R.", "lineup_position": "10", "player_key": "3652053569"}, {"lineup_number": "12", "lineup_player": "Gomez J.", "lineup_position": "3", "player_key": "2225654945"}, {"lineup_number": "14", "lineup_player": "Henderson J. (C)", "lineup_position": "7", "player_key": "208452255"}, {"lineup_number": "10", "lineup_player": "Mane S.", "lineup_position": "11", "player_key": "2451319040"}, {"lineup_number": "15", "lineup_player": "Oxlade-Chamberlain A.", "lineup_position": "6", "player_key": "2355488071"}, {"lineup_number": "26", "lineup_player": "Robertson A.", "lineup_position": "5", "player_key": "14745637"}, {"lineup_number": "11", "lineup_player": "Salah M.", "lineup_position": "9", "player_key": "1855570634"}, {"lineup_number": "4", "lineup_player": "van Dijk V.", "lineup_position": "4", "player_key": "67832899"}, {"lineup_number": "5", "lineup_player": "Wijnaldum G.", "lineup_position": "8", "player_key": "4132430976"}], "substitutes": [{"lineup_number": "3", "lineup_player": "Fabinho", "lineup_position": "", "player_key": "311875558"}, {"lineup_number": "48", "lineup_player": "Jones C.", "lineup_position": "", "player_key": "2999814083"}, {"lineup_number": "32", "lineup_player": "Matip J.", "lineup_position": "", "player_key": "1397652711"}, {"lineup_number": "18", "lineup_player": "Minamino T.", "lineup_position": "", "player_key": "3734784180"}, {"lineup_number": "27", "lineup_player": "Origi D.", "lineup_position": "", "player_key": "4003162055"}, {"lineup_number": "13", "lineup_player": "Adrian (G)", "lineup_position": "", "player_key": "2528777291"}, {"lineup_number": "76", "lineup_player": "Williams N.", "lineup_position": "", "player_key": "1574479869"}]}, "home": {"coach": [{"lineup_number": "-1", "lineup_player": "Espirito S.", "lineup_position": "", "player_key": "3263269780"}], "missing_players": [{"lineup_number": "-1", "lineup_player": "Vinagre R.", "lineup_position": "", "player_key": "1029522287"}], "starting_lineups": [{"lineup_number": "19", "lineup_player": "Jonny", "lineup_position": "8", "player_key": "2265754567"}, {"lineup_number": "16", "lineup_player": "Coady C. (C)", "lineup_position": "3", "player_key": "728596892"}, {"lineup_number": "32", "lineup_player": "Dendoncker L.", "lineup_position": "2", "player_key": "429926236"}, {"lineup_number": "2", "lineup_player": "Doherty M.", "lineup_position": "5", "player_key": "3073525171"}, {"lineup_number": "9", "lineup_player": "Jimenez R.", "lineup_position": "11", "player_key": "2952805373"}, {"lineup_number": "28", "lineup_player": "Moutinho J.", "lineup_position": "7", "player_key": "3512125926"}, {"lineup_number": "7", "lineup_player": "Neto P.", "lineup_position": "10", "player_key": "2043743427"}, {"lineup_number": "8", "lineup_player": "Neves R.", "lineup_position": "6", "player_key": "677919557"}, {"lineup_number": "11", "lineup_player": "Patricio R. (G)", "lineup_position": "1", "player_key": "186925331"}, {"lineup_number": "27", "lineup_player": "Saiss R.", "lineup_position": "4", "player_key": "250641447"}, {"lineup_number": "37", "lineup_player": "Traore A.", "lineup_position": "9", "player_key": "1615039153"}], "substitutes": [{"lineup_number": "56", "lineup_player": "Ashley-Seal B.", "lineup_position": "", "player_key": "167336224"}, {"lineup_number": "15", "lineup_player": "Boly W.", "lineup_position": "", "player_key": "2016206421"}, {"lineup_number": "17", "lineup_player": "Gibbs-White M.", "lineup_position": "", "player_key": "3396069535"}, {"lineup_number": "33", "lineup_player": "Giles R.", "lineup_position": "", "player_key": "2534561120"}, {"lineup_number": "18", "lineup_player": "Jota D.", "lineup_position": "", "player_key": "2942792628"}, {"lineup_number": "49", "lineup_player": "Kilman M.", "lineup_position": "", "player_key": "365818769"}, {"lineup_number": "21", "lineup_player": "Ruddy J. (G)", "lineup_position": "", "player_key": "456331764"}]}}, "match_awayteam_extra_score": "", "match_awayteam_ft_score": "", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2621", "match_awayteam_name": "Liverpool", "match_awayteam_penalty_score": "", "match_awayteam_score": "2", "match_awayteam_system": "4 - 3 - 3", "match_date": "2020-01-23", "match_hometeam_extra_score": "", "match_hometeam_ft_score": "", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2646", "match_hometeam_name": "Wolves", "match_hometeam_penalty_score": "", "match_hometeam_score": "1", "match_hometeam_system": "3 - 4 - 3", "match_id": "273336", "match_live": "0", "match_referee": "Oliver M. (Eng)", "match_round": "Round 24", "match_stadium": "Molineux Stadium (Wolverhampton)", "match_status": "Finished", "match_time": "21:00", "statistics": [{"away": "54%", "home": "46%", "type": "Ball Possession"}, {"away": "13", "home": "10", "type": "Goal Attempts"}, {"away": "6", "home": "3", "type": "Shots on Goal"}, {"away": "1", "home": "5", "type": "Shots off Goal"}, {"away": "6", "home": "2", "type": "Blocked Shots"}, {"away": "8", "home": "11", "type": "Free Kicks"}, {"away": "4", "home": "2", "type": "Corner Kicks"}, {"away": "0", "home": "2", "type": "Offsides"}, {"away": "2", "home": "4", "type": "Goalkeeper Saves"}, {"away": "11", "home": "6", "type": "Fouls"}, {"away": "1", "home": "0", "type": "Yellow Cards"}, {"away": "585", "home": "502", "type": "Total Passes"}, {"away": "11", "home": "11", "type": "Tackles"}, {"away": "139", "home": "108", "type": "Attacks"}, {"away": "36", "home": "47", "type": "Dangerous Attacks"}], "substitutions": {"away": [{"substitution": "Mane S. | Minamino T.", "time": "33"}, {"substitution": "Oxlade-Chamberlain A. | Fabinho", "time": "70"}, {"substitution": "Salah M. | Origi D.", "time": "85"}], "home": [{"substitution": "Neto P. | Jota D.", "time": "77"}, {"substitution": "Moutinho J. | Gibbs-White M.", "time": "87"}]}, "team_away_badge": "https://apiv2.apifootball.com/badges/2621_liverpool.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2646_wolves.png"}] | {"items": {"properties": {"cards": {"items": {"properties": {"away_fault": {"type": "string"}, "card": {"type": "string"}, "home_fault": {"type": "string"}, "info": {"type": "string"}, "time": {"type": "string"}}, "type": "object"}, "type": "array"}, "country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}, "goalscorer": {"items": {"properties": {"away_assist": {"type": "string"}, "away_assist_id": {"type": "string"}, "away_scorer": {"type": "string"}, "away_scorer_id": {"type": "string"}, "home_assist": {"type": "string"}, "home_assist_id": {"type": "string"}, "home_scorer": {"type": "string"}, "home_scorer_id": {"type": "string"}, "info": {"type": "string"}, "score": {"type": "string"}, "time": {"type": "string"}}, "type": "object"}, "type": "array"}, "league_id": {"type": "string"}, "league_logo": {"type": "string"}, "league_name": {"type": "string"}, "lineup": {"properties": {"away": {"properties": {"coach": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "missing_players": {"type": "array"}, "starting_lineups": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "substitutes": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "home": {"properties": {"coach": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "missing_players": {"type": "array"}, "starting_lineups": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "substitutes": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}}, "type": "object"}, "match_awayteam_extra_score": {"type": "string"}, "match_awayteam_ft_score": {"type": "string"}, "match_awayteam_halftime_score": {"type": "string"}, "match_awayteam_id": {"type": "string"}, "match_awayteam_name": {"type": "string"}, "match_awayteam_penalty_score": {"type": "string"}, "match_awayteam_score": {"type": "string"}, "match_awayteam_system": {"type": "string"}, "match_date": {"type": "string"}, "match_hometeam_extra_score": {"type": "string"}, "match_hometeam_ft_score": {"type": "string"}, "match_hometeam_halftime_score": {"type": "string"}, "match_hometeam_id": {"type": "string"}, "match_hometeam_name": {"type": "string"}, "match_hometeam_penalty_score": {"type": "string"}, "match_hometeam_score": {"type": "string"}, "match_hometeam_system": {"type": "string"}, "match_id": {"type": "string"}, "match_live": {"type": "string"}, "match_referee": {"type": "string"}, "match_round": {"type": "string"}, "match_stadium": {"type": "string"}, "match_status": {"type": "string"}, "match_time": {"type": "string"}, "statistics": {"items": {"properties": {"away": {"type": "string"}, "home": {"type": "string"}, "type": {"type": "string"}}, "type": "object"}, "type": "array"}, "substitutions": {"properties": {"away": {"items": {"properties": {"substitution": {"type": "string"}, "time": {"type": "string"}}, "type": "object"}, "type": "array"}, "home": {"items": {"properties": {"substitution": {"type": "string"}, "time": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "team_away_badge": {"type": "string"}, "team_home_badge": {"type": "string"}}, "type": "object"}, "type": "array"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/bc60910d-0552-4190-8ad1-b0b3ac47eef3/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Lineups | Returns lineups of one event | 200 | Response | {"24562": {"lineup": {"away": {"coach": [{"lineup_number": "-1", "lineup_player": "Inzaghi S.", "lineup_position": "", "player_key": "232473475"}], "missing_players": [{"lineup_number": "-1", "lineup_player": "Anderson F.", "lineup_position": "", "player_key": "1150205776"}, {"lineup_number": "-1", "lineup_player": "Basta D.", "lineup_position": "", "player_key": "131119161"}, {"lineup_number": "-1", "lineup_player": "Lukaku J.", "lineup_position": "", "player_key": "713461830"}, {"lineup_number": "-1", "lineup_player": "Marchetti F.", "lineup_position": "", "player_key": "3440007181"}, {"lineup_number": "-1", "lineup_player": "Wallace", "lineup_position": "", "player_key": "100577107"}], "starting_lineups": [{"lineup_number": "18", "lineup_player": "Alberto L.", "lineup_position": "10", "player_key": "2312280603"}, {"lineup_number": "3", "lineup_player": "de Vrij S.", "lineup_position": "3", "player_key": "3144892192"}, {"lineup_number": "17", "lineup_player": "Immobile C.", "lineup_position": "11", "player_key": "2050189678"}, {"lineup_number": "6", "lineup_player": "Lucas Leiva", "lineup_position": "7", "player_key": "3829742283"}, {"lineup_number": "19", "lineup_player": "Lulic S. (C)", "lineup_position": "9", "player_key": "2922111397"}, {"lineup_number": "77", "lineup_player": "Marusic A.", "lineup_position": "5", "player_key": "2852689596"}, {"lineup_number": "21", "lineup_player": "Milinkovic-Savic S.", "lineup_position": "8", "player_key": "2666431726"}, {"lineup_number": "16", "lineup_player": "Parolo M.", "lineup_position": "6", "player_key": "1507514178"}, {"lineup_number": "15", "lineup_player": "Bastos", "lineup_position": "2", "player_key": "543008777"}, {"lineup_number": "26", "lineup_player": "Radu S.", "lineup_position": "4", "player_key": "2906861486"}, {"lineup_number": "1", "lineup_player": "Strakosha T. (G)", "lineup_position": "1", "player_key": "1745736608"}], "substitutes": [{"lineup_number": "7", "lineup_player": "Nani", "lineup_position": "", "player_key": "2171101131"}, {"lineup_number": "20", "lineup_player": "Caicedo F.", "lineup_position": "", "player_key": "2957862719"}, {"lineup_number": "88", "lineup_player": "Di Gennaro D.", "lineup_position": "", "player_key": "1811815744"}, {"lineup_number": "33", "lineup_player": "Mauricio", "lineup_position": "", "player_key": "2687672540"}, {"lineup_number": "4", "lineup_player": "Patric", "lineup_position": "", "player_key": "4006614733"}, {"lineup_number": "23", "lineup_player": "Guerrieri G. (G)", "lineup_position": "", "player_key": "2444247892"}, {"lineup_number": "66", "lineup_player": "Jordao B.", "lineup_position": "", "player_key": "455097438"}, {"lineup_number": "96", "lineup_player": "Murgia A.", "lineup_position": "", "player_key": "3217364310"}, {"lineup_number": "27", "lineup_player": "Ramos Marchi L. F.", "lineup_position": "", "player_key": "3575867534"}, {"lineup_number": "25", "lineup_player": "Vargic I. (G)", "lineup_position": "", "player_key": "1748758511"}]}, "home": {"coach": [{"lineup_number": "-1", "lineup_player": "Allegri M.", "lineup_position": "", "player_key": "2087184715"}], "missing_players": [{"lineup_number": "-1", "lineup_player": "De Sciglio M.", "lineup_position": "", "player_key": "3483321948"}, {"lineup_number": "-1", "lineup_player": "Howedes B.", "lineup_position": "", "player_key": "3282909944"}], "starting_lineups": [{"lineup_number": "22", "lineup_player": "Asamoah K.", "lineup_position": "5", "player_key": "3044177013"}, {"lineup_number": "15", "lineup_player": "Barzagli A.", "lineup_position": "3", "player_key": "3934163681"}, {"lineup_number": "30", "lineup_player": "Bentancur R.", "lineup_position": "7", "player_key": "3110329267"}, {"lineup_number": "1", "lineup_player": "Buffon G. (G) (C)", "lineup_position": "1", "player_key": "2297041149"}, {"lineup_number": "3", "lineup_player": "Chiellini G.", "lineup_position": "4", "player_key": "937735812"}, {"lineup_number": "11", "lineup_player": "Costa D.", "lineup_position": "9", "player_key": "1304107152"}, {"lineup_number": "9", "lineup_player": "Higuain G.", "lineup_position": "10", "player_key": "2750053762"}, {"lineup_number": "6", "lineup_player": "Khedira S.", "lineup_position": "6", "player_key": "137331092"}, {"lineup_number": "26", "lineup_player": "Lichtsteiner S.", "lineup_position": "2", "player_key": "3457595219"}, {"lineup_number": "17", "lineup_player": "Mandzukic M.", "lineup_position": "11", "player_key": "2614948354"}, {"lineup_number": "14", "lineup_player": "Matuidi B.", "lineup_position": "8", "player_key": "3428523187"}], "substitutes": [{"lineup_number": "12", "lineup_player": "Alex Sandro", "lineup_position": "", "player_key": "3391263085"}, {"lineup_number": "4", "lineup_player": "Benatia M.", "lineup_position": "", "player_key": "568814835"}, {"lineup_number": "33", "lineup_player": "Bernardeschi F.", "lineup_position": "", "player_key": "4282433555"}, {"lineup_number": "7", "lineup_player": "Cuadrado J.", "lineup_position": "", "player_key": "3809980350"}, {"lineup_number": "10", "lineup_player": "Dybala P.", "lineup_position": "", "player_key": "1168142555"}, {"lineup_number": "16", "lineup_player": "Pinsoglio C. (G)", "lineup_position": "", "player_key": "949208764"}, {"lineup_number": "24", "lineup_player": "Rugani D.", "lineup_position": "", "player_key": "432501547"}, {"lineup_number": "27", "lineup_player": "Sturaro S.", "lineup_position": "", "player_key": "3096214493"}, {"lineup_number": "23", "lineup_player": "Szczesny W. (G)", "lineup_position": "", "player_key": "3653658522"}]}}}} | {"properties": {"24562": {"properties": {"lineup": {"properties": {"away": {"properties": {"coach": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "missing_players": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "starting_lineups": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "substitutes": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}, "home": {"properties": {"coach": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "missing_players": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "starting_lineups": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}, "substitutes": {"items": {"properties": {"lineup_number": {"type": "string"}, "lineup_player": {"type": "string"}, "lineup_position": {"type": "string"}, "player_key": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}}, "type": "object"}}, "type": "object"}}, "type": "object"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/143309d7-526f-41dc-b9fe-6e6f6fc5a80c/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Statistics | Returns statistics of one event | 200 | Response | {"24562": {"statistics": [{"away": "40%", "home": "60%", "type": "Ball Possession"}, {"away": "10", "home": "18", "type": "Goal Attempts"}, {"away": "5", "home": "6", "type": "Shots on Goal"}, {"away": "1", "home": "5", "type": "Shots off Goal"}, {"away": "4", "home": "7", "type": "Blocked Shots"}, {"away": "11", "home": "15", "type": "Free Kicks"}, {"away": "2", "home": "4", "type": "Corner Kicks"}, {"away": "1", "home": "2", "type": "Offsides"}, {"away": "5", "home": "3", "type": "Goalkeeper Saves"}, {"away": "14", "home": "10", "type": "Fouls"}, {"away": "1", "home": "2", "type": "Yellow Cards"}]}} | {"properties": {"24562": {"properties": {"statistics": {"items": {"properties": {"away": {"type": "string"}, "home": {"type": "string"}, "type": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"}}, "type": "object"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/fb34abfb-cd3f-4389-ac6c-64030e758939/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | H2H | Returns the last games between submiteted teams and the last games of each team | 200 | Response | {"firstTeam_VS_secondTeam": [{"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "2", "match_date": "2020-01-21", "match_hometeam_halftime_score": "1", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "2", "match_id": "273338", "match_live": "0", "match_status": "Finished", "match_time": "21:15", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "2", "match_date": "2019-12-29", "match_hometeam_halftime_score": "1", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "1", "match_id": "273291", "match_live": "0", "match_status": "Finished", "match_time": "15:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "590", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/590_europa-league.png", "league_name": "Europa League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "1", "match_date": "2019-05-29", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "4", "match_id": "218349", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "ENGLAND", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "0", "match_date": "2019-01-19", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "2", "match_id": "167631", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "ENGLAND", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "2", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "2", "match_date": "2018-08-18", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "3", "match_id": "114836", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "ENGLAND", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "2", "match_date": "2018-01-03", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "2", "match_id": "68013", "match_live": "0", "match_status": "Finished", "match_time": "20:45", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "ENGLAND", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "0", "match_date": "2017-09-17", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "0", "match_id": "13324", "match_live": "0", "match_status": "Finished", "match_time": "14:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}], "firstTeam_lastResults": [{"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "2", "match_date": "2020-11-21", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2630", "match_hometeam_name": "Newcastle", "match_hometeam_score": "0", "match_id": "411263", "match_live": "0", "match_status": "Finished", "match_time": "13:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2630_newcastle.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2654", "match_awayteam_name": "Sheffield Utd", "match_awayteam_score": "1", "match_date": "2020-11-07", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "4", "match_id": "411249", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2654_sheffield-utd.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "589", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/589_champions-league.png", "league_name": "Champions League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "3035", "match_awayteam_name": "Rennes", "match_awayteam_score": "0", "match_date": "2020-11-04", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "3", "match_id": "443179", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/3035_rennes.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "3", "match_date": "2020-10-31", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2629", "match_hometeam_name": "Burnley", "match_hometeam_score": "0", "match_id": "411238", "match_live": "0", "match_status": "Finished", "match_time": "16:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2629_burnley.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "589", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/589_champions-league.png", "league_name": "Champions League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "4", "match_date": "2020-10-28", "match_hometeam_halftime_score": "0", "match_hometeam_id": "6416", "match_hometeam_name": "Krasnodar", "match_hometeam_score": "0", "match_id": "443161", "match_live": "0", "match_status": "Finished", "match_time": "18:55", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/6416_krasnodar.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "0", "match_date": "2020-10-24", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2627", "match_hometeam_name": "Manchester Utd", "match_hometeam_score": "0", "match_id": "411233", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2627_manchester-united.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "589", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/589_champions-league.png", "league_name": "Champions League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "7102", "match_awayteam_name": "Sevilla", "match_awayteam_score": "0", "match_date": "2020-10-20", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "0", "match_id": "443139", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/7102_sevilla.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2614", "match_awayteam_name": "Southampton", "match_awayteam_score": "3", "match_date": "2020-10-17", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "3", "match_id": "411217", "match_live": "0", "match_status": "Finished", "match_time": "16:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2614_southampton.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2619", "match_awayteam_name": "Crystal Palace", "match_awayteam_score": "0", "match_date": "2020-10-03", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2616", "match_hometeam_name": "Chelsea", "match_hometeam_score": "4", "match_id": "411209", "match_live": "0", "match_status": "Finished", "match_time": "13:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2619_crystal-palace.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2616", "match_awayteam_name": "Chelsea", "match_awayteam_score": "3", "match_date": "2020-09-26", "match_hometeam_halftime_score": "3", "match_hometeam_id": "2625", "match_hometeam_name": "West Brom", "match_hometeam_score": "3", "match_id": "411205", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2616_chelsea.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2625_west-brom.png"}], "secondTeam_lastResults": [{"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "0", "match_date": "2020-11-22", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2653", "match_hometeam_name": "Leeds", "match_hometeam_score": "0", "match_id": "411260", "match_live": "0", "match_status": "Finished", "match_time": "17:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2653_leeds.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2632", "match_awayteam_name": "Aston Villa", "match_awayteam_score": "3", "match_date": "2020-11-08", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "0", "match_id": "411247", "match_live": "0", "match_status": "Finished", "match_time": "20:15", "team_away_badge": "https://apiv2.apifootball.com/badges/2632_aston-villa.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "590", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/590_europa-league.png", "league_name": "Europa League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "5371", "match_awayteam_name": "Molde", "match_awayteam_score": "1", "match_date": "2020-11-05", "match_hometeam_halftime_score": "1", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "4", "match_id": "444768", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/5371_molde.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "1", "match_date": "2020-11-01", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2627", "match_hometeam_name": "Manchester Utd", "match_hometeam_score": "0", "match_id": "411242", "match_live": "0", "match_status": "Finished", "match_time": "17:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2627_manchester-united.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "590", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/590_europa-league.png", "league_name": "Europa League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "4086", "match_awayteam_name": "Dundalk", "match_awayteam_score": "0", "match_date": "2020-10-29", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "3", "match_id": "444742", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/4086_dundalk.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2611", "match_awayteam_name": "Leicester", "match_awayteam_score": "1", "match_date": "2020-10-25", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "0", "match_id": "411227", "match_live": "0", "match_status": "Finished", "match_time": "20:15", "team_away_badge": "https://apiv2.apifootball.com/badges/2611_leicester.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "165", "country_logo": "", "country_name": "Europe", "league_id": "590", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/590_europa-league.png", "league_name": "Europa League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "2", "match_date": "2020-10-22", "match_hometeam_halftime_score": "0", "match_hometeam_id": "932", "match_hometeam_name": "Rapid Vienna", "match_hometeam_score": "1", "match_id": "444250", "match_live": "0", "match_status": "Finished", "match_time": "18:55", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/932_rapid-vienna.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "0", "match_date": "2020-10-17", "match_hometeam_halftime_score": "1", "match_hometeam_id": "2626", "match_hometeam_name": "Manchester City", "match_hometeam_score": "1", "match_id": "411222", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2626_manchester-city.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "0", "match_awayteam_id": "2654", "match_awayteam_name": "Sheffield Utd", "match_awayteam_score": "1", "match_date": "2020-10-04", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2617", "match_hometeam_name": "Arsenal", "match_hometeam_score": "2", "match_id": "411207", "match_live": "0", "match_status": "Finished", "match_time": "15:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2654_sheffield-utd.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png"}, {"country_id": "41", "country_logo": "https://apiv2.apifootball.com/badges/logo_country/41_england.png", "country_name": "England", "league_id": "148", "league_logo": "https://apiv2.apifootball.com/badges/logo_leagues/148_premier-league.png", "league_name": "Premier League", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2617", "match_awayteam_name": "Arsenal", "match_awayteam_score": "1", "match_date": "2020-09-28", "match_hometeam_halftime_score": "2", "match_hometeam_id": "2621", "match_hometeam_name": "Liverpool", "match_hometeam_score": "3", "match_id": "411201", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "team_away_badge": "https://apiv2.apifootball.com/badges/2617_arsenal.png", "team_home_badge": "https://apiv2.apifootball.com/badges/2621_liverpool.png"}]} | {"properties": {"firstTeam_VS_secondTeam": {"items": {"properties": {"country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}, "league_id": {"type": "string"}, "league_logo": {"type": "string"}, "league_name": {"type": "string"}, "match_awayteam_halftime_score": {"type": "string"}, "match_awayteam_id": {"type": "string"}, "match_awayteam_name": {"type": "string"}, "match_awayteam_score": {"type": "string"}, "match_date": {"type": "string"}, "match_hometeam_halftime_score": {"type": "string"}, "match_hometeam_id": {"type": "string"}, "match_hometeam_name": {"type": "string"}, "match_hometeam_score": {"type": "string"}, "match_id": {"type": "string"}, "match_live": {"type": "string"}, "match_status": {"type": "string"}, "match_time": {"type": "string"}, "team_away_badge": {"type": "string"}, "team_home_badge": {"type": "string"}}, "type": "object"}, "type": "array"}, "firstTeam_lastResults": {"items": {"properties": {"country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}, "league_id": {"type": "string"}, "league_logo": {"type": "string"}, "league_name": {"type": "string"}, "match_awayteam_halftime_score": {"type": "string"}, "match_awayteam_id": {"type": "string"}, "match_awayteam_name": {"type": "string"}, "match_awayteam_score": {"type": "string"}, "match_date": {"type": "string"}, "match_hometeam_halftime_score": {"type": "string"}, "match_hometeam_id": {"type": "string"}, "match_hometeam_name": {"type": "string"}, "match_hometeam_score": {"type": "string"}, "match_id": {"type": "string"}, "match_live": {"type": "string"}, "match_status": {"type": "string"}, "match_time": {"type": "string"}, "team_away_badge": {"type": "string"}, "team_home_badge": {"type": "string"}}, "type": "object"}, "type": "array"}, "secondTeam_lastResults": {"items": {"properties": {"country_id": {"type": "string"}, "country_logo": {"type": "string"}, "country_name": {"type": "string"}, "league_id": {"type": "string"}, "league_logo": {"type": "string"}, "league_name": {"type": "string"}, "match_awayteam_halftime_score": {"type": "string"}, "match_awayteam_id": {"type": "string"}, "match_awayteam_name": {"type": "string"}, "match_awayteam_score": {"type": "string"}, "match_date": {"type": "string"}, "match_hometeam_halftime_score": {"type": "string"}, "match_hometeam_id": {"type": "string"}, "match_hometeam_name": {"type": "string"}, "match_hometeam_score": {"type": "string"}, "match_id": {"type": "string"}, "match_live": {"type": "string"}, "match_status": {"type": "string"}, "match_time": {"type": "string"}, "team_away_badge": {"type": "string"}, "team_home_badge": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"} |
a87d44fe-af6a-4695-b008-0fe0ace3642e/b2c39420-9703-43d4-bfbe-946e5394319a/0/0 | ApiFootball | Get reliable and accurate Football Livescore API feed from us. We allow developers to integrate Football Livescore API’s to mobile applications and websites | null | Predictions | Returns mathematical calculated predictions for the events included in your current subscription plan | 200 | Response | [{"country_id": "54", "country_name": "Greece", "league_id": "209", "league_name": "Super League", "match_awayteam_extra_score": "0", "match_awayteam_halftime_score": "0", "match_awayteam_id": "3431", "match_awayteam_name": "Xanthi FC", "match_awayteam_penalty_score": "", "match_awayteam_score": "\u00a00", "match_awayteam_system": "4 - 2 - 3 - 1", "match_date": "2020-01-23", "match_hometeam_extra_score": "0", "match_hometeam_halftime_score": "0", "match_hometeam_id": "3455", "match_hometeam_name": "Aris", "match_hometeam_penalty_score": "", "match_hometeam_score": "1\u00a0", "match_hometeam_system": "4 - 2 - 3 - 1", "match_id": "258427", "match_live": "0", "match_status": "Finished", "match_time": "18:30", "prob_AW": "12.00", "prob_AW_D": "34.00", "prob_D": "22.00", "prob_HW": "66.00", "prob_HW_AW": "79.00", "prob_HW_D": "88.00", "prob_O": "45.00", "prob_O_1": "71.00", "prob_O_3": "24.00", "prob_U": "55.00", "prob_U_1": "29.00", "prob_U_3": "76.00", "prob_ah_a_-05": "34.00", "prob_ah_a_-15": "60.00", "prob_ah_a_-25": "81.00", "prob_ah_a_-35": "92.00", "prob_ah_a_-45": "97.00", "prob_ah_a_05": "12.00", "prob_ah_a_15": "3.00", "prob_ah_a_25": "1.00", "prob_ah_a_35": "0.00", "prob_ah_a_45": "0.00", "prob_ah_h_-05": "66.00", "prob_ah_h_-15": "40.00", "prob_ah_h_-25": "19.00", "prob_ah_h_-35": "8.00", "prob_ah_h_-45": "3.00", "prob_ah_h_05": "88.00", "prob_ah_h_15": "97.00", "prob_ah_h_25": "99.00", "prob_ah_h_35": "100.00", "prob_ah_h_45": "100.00", "prob_bts": "39.00", "prob_ots": "61.00"}, {"country_id": "54", "country_name": "Greece", "league_id": "209", "league_name": "Super League", "match_awayteam_extra_score": "0", "match_awayteam_halftime_score": "0", "match_awayteam_id": "3425", "match_awayteam_name": "Panionios", "match_awayteam_penalty_score": "", "match_awayteam_score": "\u00a00", "match_awayteam_system": "4 - 4 - 2", "match_date": "2020-01-23", "match_hometeam_extra_score": "1", "match_hometeam_halftime_score": "1", "match_hometeam_id": "3424", "match_hometeam_name": "Asteras Tripolis", "match_hometeam_penalty_score": "", "match_hometeam_score": "2\u00a0", "match_hometeam_system": "4 - 4 - 2", "match_id": "258428", "match_live": "0", "match_status": "Finished", "match_time": "16:15", "prob_AW": "9.00", "prob_AW_D": "25.00", "prob_D": "16.00", "prob_HW": "75.00", "prob_HW_AW": "84.00", "prob_HW_D": "91.00", "prob_O": "57.00", "prob_O_1": "80.00", "prob_O_3": "35.00", "prob_U": "43.00", "prob_U_1": "20.00", "prob_U_3": "65.00", "prob_ah_a_-05": "25.00", "prob_ah_a_-15": "48.00", "prob_ah_a_-25": "71.00", "prob_ah_a_-35": "86.00", "prob_ah_a_-45": "94.00", "prob_ah_a_05": "9.00", "prob_ah_a_15": "2.00", "prob_ah_a_25": "0.00", "prob_ah_a_35": "0.00", "prob_ah_a_45": "0.00", "prob_ah_h_-05": "75.00", "prob_ah_h_-15": "52.00", "prob_ah_h_-25": "29.00", "prob_ah_h_-35": "14.00", "prob_ah_h_-45": "6.00", "prob_ah_h_05": "91.00", "prob_ah_h_15": "98.00", "prob_ah_h_25": "100.00", "prob_ah_h_35": "100.00", "prob_ah_h_45": "100.00", "prob_bts": "43.00", "prob_ots": "57.00"}, {"country_id": "54", "country_name": "Greece", "league_id": "209", "league_name": "Super League", "match_awayteam_extra_score": "1", "match_awayteam_halftime_score": "1", "match_awayteam_id": "3423", "match_awayteam_name": "PAOK", "match_awayteam_penalty_score": "", "match_awayteam_score": "\u00a01", "match_awayteam_system": "4 - 2 - 3 - 1", "match_date": "2020-01-23", "match_hometeam_extra_score": "0", "match_hometeam_halftime_score": "0", "match_hometeam_id": "3427", "match_hometeam_name": "Lamia", "match_hometeam_penalty_score": "", "match_hometeam_score": "0\u00a0", "match_hometeam_system": "4 - 3 - 3", "match_id": "258429", "match_live": "0", "match_status": "Finished", "match_time": "18:00", "prob_AW": "62.00", "prob_AW_D": "85.00", "prob_D": "24.00", "prob_HW": "15.00", "prob_HW_AW": "76.00", "prob_HW_D": "38.00", "prob_O": "41.00", "prob_O_1": "68.00", "prob_O_3": "21.00", "prob_U": "59.00", "prob_U_1": "32.00", "prob_U_3": "79.00", "prob_ah_a_-05": "85.00", "prob_ah_a_-15": "96.00", "prob_ah_a_-25": "99.00", "prob_ah_a_-35": "100.00", "prob_ah_a_-45": "100.00", "prob_ah_a_05": "62.00", "prob_ah_a_15": "35.00", "prob_ah_a_25": "15.00", "prob_ah_a_35": "6.00", "prob_ah_a_45": "2.00", "prob_ah_h_-05": "15.00", "prob_ah_h_-15": "4.00", "prob_ah_h_-25": "1.00", "prob_ah_h_-35": "0.00", "prob_ah_h_-45": "0.00", "prob_ah_h_05": "38.00", "prob_ah_h_15": "65.00", "prob_ah_h_25": "85.00", "prob_ah_h_35": "94.00", "prob_ah_h_45": "98.00", "prob_bts": "40.00", "prob_ots": "60.00"}, {"country_id": "41", "country_name": "England", "league_id": "148", "league_name": "Premier League", "match_awayteam_extra_score": "1", "match_awayteam_halftime_score": "1", "match_awayteam_id": "2621", "match_awayteam_name": "Liverpool", "match_awayteam_penalty_score": "", "match_awayteam_score": "\u00a02", "match_awayteam_system": "4 - 3 - 3", "match_date": "2020-01-23", "match_hometeam_extra_score": "0", "match_hometeam_halftime_score": "0", "match_hometeam_id": "2646", "match_hometeam_name": "Wolves", "match_hometeam_penalty_score": "", "match_hometeam_score": "1\u00a0", "match_hometeam_system": "3 - 4 - 3", "match_id": "273336", "match_live": "0", "match_status": "Finished", "match_time": "21:00", "prob_AW": "68.00", "prob_AW_D": "88.00", "prob_D": "20.00", "prob_HW": "12.00", "prob_HW_AW": "80.00", "prob_HW_D": "32.00", "prob_O": "51.00", "prob_O_1": "75.00", "prob_O_3": "29.00", "prob_U": "49.00", "prob_U_1": "25.00", "prob_U_3": "71.00", "prob_ah_a_-05": "88.00", "prob_ah_a_-15": "97.00", "prob_ah_a_-25": "99.00", "prob_ah_a_-35": "100.00", "prob_ah_a_-45": "100.00", "prob_ah_a_05": "68.00", "prob_ah_a_15": "43.00", "prob_ah_a_25": "22.00", "prob_ah_a_35": "9.00", "prob_ah_a_45": "3.00", "prob_ah_h_-05": "12.00", "prob_ah_h_-15": "3.00", "prob_ah_h_-25": "1.00", "prob_ah_h_-35": "0.00", "prob_ah_h_-45": "0.00", "prob_ah_h_05": "32.00", "prob_ah_h_15": "57.00", "prob_ah_h_25": "78.00", "prob_ah_h_35": "91.00", "prob_ah_h_45": "97.00", "prob_bts": "44.00", "prob_ots": "56.00"}] | {"items": {"properties": {"country_id": {"type": "string"}, "country_name": {"type": "string"}, "league_id": {"type": "string"}, "league_name": {"type": "string"}, "match_awayteam_extra_score": {"type": "string"}, "match_awayteam_halftime_score": {"type": "string"}, "match_awayteam_id": {"type": "string"}, "match_awayteam_name": {"type": "string"}, "match_awayteam_penalty_score": {"type": "string"}, "match_awayteam_score": {"type": "string"}, "match_awayteam_system": {"type": "string"}, "match_date": {"type": "string"}, "match_hometeam_extra_score": {"type": "string"}, "match_hometeam_halftime_score": {"type": "string"}, "match_hometeam_id": {"type": "string"}, "match_hometeam_name": {"type": "string"}, "match_hometeam_penalty_score": {"type": "string"}, "match_hometeam_score": {"type": "string"}, "match_hometeam_system": {"type": "string"}, "match_id": {"type": "string"}, "match_live": {"type": "string"}, "match_status": {"type": "string"}, "match_time": {"type": "string"}, "prob_AW": {"type": "string"}, "prob_AW_D": {"type": "string"}, "prob_D": {"type": "string"}, "prob_HW": {"type": "string"}, "prob_HW_AW": {"type": "string"}, "prob_HW_D": {"type": "string"}, "prob_O": {"type": "string"}, "prob_O_1": {"type": "string"}, "prob_O_3": {"type": "string"}, "prob_U": {"type": "string"}, "prob_U_1": {"type": "string"}, "prob_U_3": {"type": "string"}, "prob_ah_a_-05": {"type": "string"}, "prob_ah_a_-15": {"type": "string"}, "prob_ah_a_-25": {"type": "string"}, "prob_ah_a_-35": {"type": "string"}, "prob_ah_a_-45": {"type": "string"}, "prob_ah_a_05": {"type": "string"}, "prob_ah_a_15": {"type": "string"}, "prob_ah_a_25": {"type": "string"}, "prob_ah_a_35": {"type": "string"}, "prob_ah_a_45": {"type": "string"}, "prob_ah_h_-05": {"type": "string"}, "prob_ah_h_-15": {"type": "string"}, "prob_ah_h_-25": {"type": "string"}, "prob_ah_h_-35": {"type": "string"}, "prob_ah_h_-45": {"type": "string"}, "prob_ah_h_05": {"type": "string"}, "prob_ah_h_15": {"type": "string"}, "prob_ah_h_25": {"type": "string"}, "prob_ah_h_35": {"type": "string"}, "prob_ah_h_45": {"type": "string"}, "prob_bts": {"type": "string"}, "prob_ots": {"type": "string"}}, "type": "object"}, "type": "array"} |
7fb87771-243b-4eb1-9428-d34fa635710d/006c7cc4-3816-4901-80e0-3fbe7a985054/0/0 | tennisprodata | API for accessing professional tennis data | 8.6 | Get Live Scores | API to get live scores for an active tournament. | 200 | Response | {"scores": [{"tournament": "paris", "draw": "singles", "player_1": "D. Altmaier", "player_2": "H. Rune", "player_1_game_score": "15", "player_2_game_score": "15", "player_1_set_1_score": "2", "player_2_set_1_score": "1", "player_1_set_2_score": "", "player_2_set_2_score": ""}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"scores": {"type": "array", "items": {"type": "object", "properties": {"tournament": {"type": "string"}, "draw": {"type": "string"}, "player_1": {"type": "string"}, "player_2": {"type": "string"}, "player_1_game_score": {"type": "string"}, "player_2_game_score": {"type": "string"}, "player_1_set_1_score": {"type": "string"}, "player_2_set_1_score": {"type": "string"}, "player_1_set_2_score": {"type": "string"}, "player_2_set_2_score": {"type": "string"}}, "required": ["draw", "player_1", "player_1_game_score", "player_1_set_1_score", "player_1_set_2_score", "player_2", "player_2_game_score", "player_2_set_1_score", "player_2_set_2_score", "tournament"]}}}, "required": ["scores"]} |
7fb87771-243b-4eb1-9428-d34fa635710d/bcbcd939-4490-476e-a4ed-4f83fe35f5d7/0/0 | tennisprodata | API for accessing professional tennis data | 8.6 | Get Tournament Results | API for getting tournament results for a given tournament. | 200 | Response | {"results": [{"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Finals", "winner": "Holger Rune", "winner_designation": "", "loser": "Novak Djokovic", "loser_designation": "6", "score": "366375", "is_match_completed": true, "first_set_score": "36", "second_set_score": "63", "third_set_score": "75", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Semi-Finals", "winner": "Novak Djokovic", "winner_designation": "6", "loser": "Stefanos Tsitsipas", "loser_designation": "5", "score": "6236764", "is_match_completed": true, "first_set_score": "62", "second_set_score": "36", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Semi-Finals", "winner": "Holger Rune", "winner_designation": "", "loser": "Felix Auger-Aliassime", "loser_designation": "8", "score": "6462", "is_match_completed": true, "first_set_score": "64", "second_set_score": "62", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Quarter-Finals", "winner": "Holger Rune", "winner_designation": "", "loser": "Carlos Alcaraz", "loser_designation": "1", "score": "6366(RET)", "is_match_completed": false, "first_set_score": "63", "second_set_score": "66", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 21}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Quarter-Finals", "winner": "Stefanos Tsitsipas", "winner_designation": "5", "loser": "Tommy Paul", "loser_designation": "", "score": "6264", "is_match_completed": true, "first_set_score": "62", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Quarter-Finals", "winner": "Novak Djokovic", "winner_designation": "6", "loser": "Lorenzo Musetti", "loser_designation": "", "score": "6063", "is_match_completed": true, "first_set_score": "60", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 15}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Quarter-Finals", "winner": "Felix Auger-Aliassime", "winner_designation": "8", "loser": "Frances Tiafoe", "loser_designation": "16", "score": "6164", "is_match_completed": true, "first_set_score": "61", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 17}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Carlos Alcaraz", "winner_designation": "1", "loser": "Grigor Dimitrov", "loser_designation": "", "score": "6163", "is_match_completed": true, "first_set_score": "61", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 16}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Lorenzo Musetti", "winner_designation": "", "loser": "Casper Ruud", "loser_designation": "3", "score": "466464", "is_match_completed": true, "first_set_score": "46", "second_set_score": "64", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Stefanos Tsitsipas", "winner_designation": "5", "loser": "Corentin Moutet", "loser_designation": "Q", "score": "63763", "is_match_completed": true, "first_set_score": "63", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Novak Djokovic", "winner_designation": "6", "loser": "Karen Khachanov", "loser_designation": "", "score": "6461", "is_match_completed": true, "first_set_score": "64", "second_set_score": "61", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 17}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Holger Rune", "winner_designation": "", "loser": "Andrey Rublev", "loser_designation": "7", "score": "6475", "is_match_completed": true, "first_set_score": "64", "second_set_score": "75", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Felix Auger-Aliassime", "winner_designation": "8", "loser": "Gilles Simon", "loser_designation": "WC", "score": "6163", "is_match_completed": true, "first_set_score": "61", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 16}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Tommy Paul", "winner_designation": "", "loser": "Pablo Carreno Busta", "loser_designation": "14", "score": "6464", "is_match_completed": true, "first_set_score": "64", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 16", "winner": "Frances Tiafoe", "winner_designation": "16", "loser": "Alex de Minaur", "loser_designation": "", "score": "63765", "is_match_completed": true, "first_set_score": "63", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Carlos Alcaraz", "winner_designation": "1", "loser": "Yoshihito Nishioka", "loser_designation": "", "score": "6464", "is_match_completed": true, "first_set_score": "64", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Tommy Paul", "winner_designation": "", "loser": "Rafael Nadal", "loser_designation": "2", "score": "3676461", "is_match_completed": true, "first_set_score": "36", "second_set_score": "76", "third_set_score": "61", "fourth_set_score": null, "fifth_set_score": null, "total_games": 29}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Casper Ruud", "winner_designation": "3", "loser": "Richard Gasquet", "loser_designation": "WC", "score": "61767", "is_match_completed": true, "first_set_score": "61", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Alex de Minaur", "winner_designation": "", "loser": "Daniil Medvedev", "loser_designation": "4", "score": "642675", "is_match_completed": true, "first_set_score": "64", "second_set_score": "26", "third_set_score": "75", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Stefanos Tsitsipas", "winner_designation": "5", "loser": "Daniel Evans", "loser_designation": "", "score": "6364", "is_match_completed": true, "first_set_score": "63", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Novak Djokovic", "winner_designation": "6", "loser": "Maxime Cressy", "loser_designation": "", "score": "76164", "is_match_completed": true, "first_set_score": "76", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 23}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Andrey Rublev", "winner_designation": "7", "loser": "John Isner", "loser_designation": "", "score": "6263", "is_match_completed": true, "first_set_score": "62", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 17}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Felix Auger-Aliassime", "winner_designation": "8", "loser": "Mikael Ymer", "loser_designation": "Q", "score": "67664766", "is_match_completed": true, "first_set_score": "67", "second_set_score": "64", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 36}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Gilles Simon", "winner_designation": "WC", "loser": "Taylor Fritz", "loser_designation": "9", "score": "755764", "is_match_completed": true, "first_set_score": "75", "second_set_score": "57", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 34}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Holger Rune", "winner_designation": "", "loser": "Hubert Hurkacz", "loser_designation": "10", "score": "7561", "is_match_completed": true, "first_set_score": "75", "second_set_score": "61", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Corentin Moutet", "winner_designation": "Q", "loser": "Cameron Norrie", "loser_designation": "12", "score": "6357763", "is_match_completed": true, "first_set_score": "63", "second_set_score": "57", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 34}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Pablo Carreno Busta", "winner_designation": "14", "loser": "Denis Shapovalov", "loser_designation": "", "score": "7622664", "is_match_completed": true, "first_set_score": "76", "second_set_score": "26", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 31}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Frances Tiafoe", "winner_designation": "16", "loser": "Jack Draper", "loser_designation": "", "score": "6375", "is_match_completed": true, "first_set_score": "63", "second_set_score": "75", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 21}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Grigor Dimitrov", "winner_designation": "", "loser": "Fabio Fognini", "loser_designation": "LL", "score": "6075", "is_match_completed": true, "first_set_score": "60", "second_set_score": "75", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Karen Khachanov", "winner_designation": "", "loser": "Marc-Andrea Huesler", "loser_designation": "Q", "score": "634664", "is_match_completed": true, "first_set_score": "63", "second_set_score": "46", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 29}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 32", "winner": "Lorenzo Musetti", "winner_designation": "", "loser": "Nikoloz Basilashvili", "loser_designation": "", "score": "6462", "is_match_completed": true, "first_set_score": "64", "second_set_score": "62", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Carlos Alcaraz", "winner_designation": "1", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Rafael Nadal", "winner_designation": "2", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Casper Ruud", "winner_designation": "3", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Daniil Medvedev", "winner_designation": "4", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Stefanos Tsitsipas", "winner_designation": "5", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Novak Djokovic", "winner_designation": "6", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Andrey Rublev", "winner_designation": "7", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Felix Auger-Aliassime", "winner_designation": "8", "loser": "Bye", "loser_designation": "", "score": "", "is_match_completed": true, "first_set_score": null, "second_set_score": null, "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 0}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Taylor Fritz", "winner_designation": "9", "loser": "Alejandro Davidovich Fokina", "loser_designation": "", "score": "7562", "is_match_completed": true, "first_set_score": "75", "second_set_score": "62", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Hubert Hurkacz", "winner_designation": "10", "loser": "Adrian Mannarino", "loser_designation": "WC", "score": "76564", "is_match_completed": true, "first_set_score": "76", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 23}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Marc-Andrea Huesler", "winner_designation": "Q", "loser": "Jannik Sinner", "loser_designation": "11", "score": "6263", "is_match_completed": true, "first_set_score": "62", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 17}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Cameron Norrie", "winner_designation": "12", "loser": "Miomir Kecmanovic", "loser_designation": "", "score": "6264", "is_match_completed": true, "first_set_score": "62", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Pablo Carreno Busta", "winner_designation": "14", "loser": "Albert Ramos-Vinolas", "loser_designation": "", "score": "6363", "is_match_completed": true, "first_set_score": "63", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Lorenzo Musetti", "winner_designation": "", "loser": "Marin Cilic", "loser_designation": "15", "score": "6464", "is_match_completed": true, "first_set_score": "64", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Frances Tiafoe", "winner_designation": "16", "loser": "Lorenzo Sonego", "loser_designation": "Q", "score": "6464", "is_match_completed": true, "first_set_score": "64", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Nikoloz Basilashvili", "winner_designation": "", "loser": "Quentin Halys", "loser_designation": "Q", "score": "6364", "is_match_completed": true, "first_set_score": "63", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Maxime Cressy", "winner_designation": "", "loser": "Diego Schwartzman", "loser_designation": "", "score": "6363", "is_match_completed": true, "first_set_score": "63", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Alex de Minaur", "winner_designation": "", "loser": "Sebastian Korda", "loser_designation": "", "score": "644664", "is_match_completed": true, "first_set_score": "64", "second_set_score": "46", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Grigor Dimitrov", "winner_designation": "", "loser": "Botic van de Zandschulp", "loser_designation": "", "score": "765765", "is_match_completed": true, "first_set_score": "76", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 26}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Jack Draper", "winner_designation": "", "loser": "Arthur Rinderknech", "loser_designation": "WC", "score": "6364", "is_match_completed": true, "first_set_score": "63", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Daniel Evans", "winner_designation": "", "loser": "Brandon Nakashima", "loser_designation": "", "score": "633664", "is_match_completed": true, "first_set_score": "63", "second_set_score": "36", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 28}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Fabio Fognini", "winner_designation": "LL", "loser": "Arthur Fils", "loser_designation": "Q", "score": "76567462", "is_match_completed": true, "first_set_score": "76", "second_set_score": "67", "third_set_score": "62", "fourth_set_score": null, "fifth_set_score": null, "total_games": 34}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Richard Gasquet", "winner_designation": "WC", "loser": "Alex Molcan", "loser_designation": "", "score": "6361", "is_match_completed": true, "first_set_score": "63", "second_set_score": "61", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 16}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "John Isner", "winner_designation": "", "loser": "Oscar Otte", "loser_designation": "Q", "score": "64763", "is_match_completed": true, "first_set_score": "64", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 23}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Karen Khachanov", "winner_designation": "", "loser": "Sebastian Baez", "loser_designation": "", "score": "6161", "is_match_completed": true, "first_set_score": "61", "second_set_score": "61", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 14}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Corentin Moutet", "winner_designation": "Q", "loser": "Borna Coric", "loser_designation": "", "score": "366364", "is_match_completed": true, "first_set_score": "36", "second_set_score": "63", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 28}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Yoshihito Nishioka", "winner_designation": "", "loser": "Aslan Karatsev", "loser_designation": "", "score": "6364", "is_match_completed": true, "first_set_score": "63", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Tommy Paul", "winner_designation": "", "loser": "Roberto Bautista Agut", "loser_designation": "", "score": "6464", "is_match_completed": true, "first_set_score": "64", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 20}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Holger Rune", "winner_designation": "", "loser": "Stan Wawrinka", "loser_designation": "PR", "score": "4675763", "is_match_completed": true, "first_set_score": "46", "second_set_score": "75", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 35}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Denis Shapovalov", "winner_designation": "", "loser": "Francisco Cerundolo", "loser_designation": "", "score": "6726364", "is_match_completed": true, "first_set_score": "67", "second_set_score": "63", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 32}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Gilles Simon", "winner_designation": "WC", "loser": "Andy Murray", "loser_designation": "", "score": "467563", "is_match_completed": true, "first_set_score": "46", "second_set_score": "75", "third_set_score": "63", "fourth_set_score": null, "fifth_set_score": null, "total_games": 31}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "Round of 64", "winner": "Mikael Ymer", "winner_designation": "Q", "loser": "Alexander Bublik", "loser_designation": "", "score": "6167264", "is_match_completed": true, "first_set_score": "61", "second_set_score": "67", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 30}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Lorenzo Sonego", "winner_designation": "2", "loser": "Tallon Griekspoor", "loser_designation": "", "score": "3664763", "is_match_completed": true, "first_set_score": "36", "second_set_score": "64", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 32}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Oscar Otte", "winner_designation": "4", "loser": "Bernabe Zapata Miralles", "loser_designation": "", "score": "6461", "is_match_completed": true, "first_set_score": "64", "second_set_score": "61", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 17}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Arthur Fils", "winner_designation": "WC", "loser": "Fabio Fognini", "loser_designation": "8", "score": "633664", "is_match_completed": true, "first_set_score": "63", "second_set_score": "36", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 28}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Marc-Andrea Huesler", "winner_designation": "10", "loser": "Laslo Djere", "loser_designation": "", "score": "76575", "is_match_completed": true, "first_set_score": "76", "second_set_score": "75", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 25}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Corentin Moutet", "winner_designation": "11", "loser": "Geoffrey Blancaneaux", "loser_designation": "WC", "score": "623664", "is_match_completed": true, "first_set_score": "62", "second_set_score": "36", "third_set_score": "64", "fourth_set_score": null, "fifth_set_score": null, "total_games": 27}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Quentin Halys", "winner_designation": "", "loser": "Thiago Monteiro", "loser_designation": "13", "score": "6375", "is_match_completed": true, "first_set_score": "63", "second_set_score": "75", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 21}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "2nd Round Qualifying", "winner": "Mikael Ymer", "winner_designation": "AL", "loser": "Jiri Lehecka", "loser_designation": "", "score": "76662", "is_match_completed": true, "first_set_score": "76", "second_set_score": "62", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 21}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Geoffrey Blancaneaux", "winner_designation": "WC", "loser": "Emil Ruusuvuori", "loser_designation": "1", "score": "366362", "is_match_completed": true, "first_set_score": "36", "second_set_score": "63", "third_set_score": "62", "fourth_set_score": null, "fifth_set_score": null, "total_games": 26}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Lorenzo Sonego", "winner_designation": "2", "loser": "Joao Sousa", "loser_designation": "", "score": "64769", "is_match_completed": true, "first_set_score": "64", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 23}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Laslo Djere", "winner_designation": "", "loser": "David Goffin", "loser_designation": "3", "score": "63761", "is_match_completed": true, "first_set_score": "63", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Oscar Otte", "winner_designation": "4", "loser": "Ilya Ivashka", "loser_designation": "", "score": "6262", "is_match_completed": true, "first_set_score": "62", "second_set_score": "62", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 16}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Quentin Halys", "winner_designation": "", "loser": "Pedro Cachin", "loser_designation": "5", "score": "76763", "is_match_completed": true, "first_set_score": "76", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Arthur Fils", "winner_designation": "WC", "loser": "Jaume Munar", "loser_designation": "6", "score": "6363", "is_match_completed": true, "first_set_score": "63", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 18}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Jiri Lehecka", "winner_designation": "", "loser": "Marcos Giron", "loser_designation": "7", "score": "7563", "is_match_completed": true, "first_set_score": "75", "second_set_score": "63", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 21}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Fabio Fognini", "winner_designation": "8", "loser": "Daniel Elahi Galan", "loser_designation": "", "score": "63766", "is_match_completed": true, "first_set_score": "63", "second_set_score": "76", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Bernabe Zapata Miralles", "winner_designation": "", "loser": "Pedro Martinez", "loser_designation": "9", "score": "604660", "is_match_completed": true, "first_set_score": "60", "second_set_score": "46", "third_set_score": "60", "fourth_set_score": null, "fifth_set_score": null, "total_games": 22}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Marc-Andrea Huesler", "winner_designation": "10", "loser": "Hugo Gaston", "loser_designation": "", "score": "6336765", "is_match_completed": true, "first_set_score": "63", "second_set_score": "36", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 31}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Corentin Moutet", "winner_designation": "11", "loser": "Ugo Humbert", "loser_designation": "WC", "score": "6364", "is_match_completed": true, "first_set_score": "63", "second_set_score": "64", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 19}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Tallon Griekspoor", "winner_designation": "", "loser": "Mackenzie McDonald", "loser_designation": "12 AL", "score": "6336764", "is_match_completed": true, "first_set_score": "63", "second_set_score": "36", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 31}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Thiago Monteiro", "winner_designation": "13", "loser": "Hugo Grenier", "loser_designation": "WC", "score": "4662761", "is_match_completed": true, "first_set_score": "46", "second_set_score": "62", "third_set_score": "76", "fourth_set_score": null, "fifth_set_score": null, "total_games": 31}, {"tournament": "paris", "tournament_id": "352", "year": "2022", "round": "1st Round Qualifying", "winner": "Mikael Ymer", "winner_designation": "AL", "loser": "Constant Lestienne", "loser_designation": "14", "score": "4642(RET)", "is_match_completed": false, "first_set_score": "46", "second_set_score": "42", "third_set_score": null, "fourth_set_score": null, "fifth_set_score": null, "total_games": 16}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tournament": {"type": "string"}, "tournament_id": {"type": "string"}, "year": {"type": "string"}, "round": {"type": "string"}, "winner": {"type": "string"}, "winner_designation": {"type": "string"}, "loser": {"type": "string"}, "loser_designation": {"type": "string"}, "score": {"type": "string"}, "is_match_completed": {"type": "boolean"}, "first_set_score": {"type": ["null", "string"]}, "second_set_score": {"type": ["null", "string"]}, "third_set_score": {"type": ["null", "string"]}, "fourth_set_score": {"type": "null"}, "fifth_set_score": {"type": "null"}, "total_games": {"type": "integer"}}, "required": ["fifth_set_score", "first_set_score", "fourth_set_score", "is_match_completed", "loser", "loser_designation", "round", "score", "second_set_score", "third_set_score", "total_games", "tournament", "tournament_id", "winner", "winner_designation", "year"]}}}, "required": ["results"]} |
7fb87771-243b-4eb1-9428-d34fa635710d/fa2af788-12ea-4d7f-82b1-5bf4c2c72957/0/0 | tennisprodata | API for accessing professional tennis data | 8.6 | Get Annual Tournaments | API for finding all tournaments in a given year. | 200 | Response | {"tournaments": [{"tournament_id": "9900", "tournament_title": "United Cup", "tournament_name": "brisbane-perth-sydney", "location": "Brisbane-Perth-Sydney, Australia", "dates": "2022.12.29", "link": "/en/tournaments/brisbane-perth-sydney/9900/overview"}, {"tournament_id": "2843", "tournament_title": "Adelaide International 1", "tournament_name": "adelaide", "location": "Adelaide, Australia", "dates": "2023.01.01", "link": "/en/tournaments/adelaide/2843/overview"}, {"tournament_id": "891", "tournament_title": "Tata Open Maharashtra", "tournament_name": "pune", "location": "Pune, India", "dates": "2023.01.02", "link": "/en/tournaments/pune/891/overview"}, {"tournament_id": "301", "tournament_title": "ASB Classic", "tournament_name": "auckland", "location": "Auckland, New Zealand", "dates": "2023.01.09", "link": "/en/tournaments/auckland/301/overview"}, {"tournament_id": "8998", "tournament_title": "Adelaide International 2", "tournament_name": "adelaide", "location": "Adelaide, Australia", "dates": "2023.01.09", "link": "/en/tournaments/adelaide/8998/overview"}, {"tournament_id": "580", "tournament_title": "Australian Open", "tournament_name": "australian-open", "location": "Melbourne, Australia", "dates": "2023.01.16", "link": "/en/tournaments/australian-open/580/overview"}, {"tournament_id": "424", "tournament_title": "Dallas Open", "tournament_name": "dallas", "location": "Dallas, United States", "dates": "2023.02.06", "link": "/en/tournaments/dallas/424/overview"}, {"tournament_id": "9158", "tournament_title": "Cordoba Open", "tournament_name": "cordoba", "location": "Cordoba, Argentina", "dates": "2023.02.06", "link": "/en/tournaments/cordoba/9158/overview"}, {"tournament_id": "375", "tournament_title": "Open Sud de France \u2013 Montpellier", "tournament_name": "montpellier", "location": "Montpellier, France", "dates": "2023.02.06", "link": "/en/tournaments/montpellier/375/overview"}, {"tournament_id": "407", "tournament_title": "ABN AMRO Open", "tournament_name": "rotterdam", "location": "Rotterdam, Netherlands", "dates": "2023.02.13", "link": "/en/tournaments/rotterdam/407/overview"}, {"tournament_id": "499", "tournament_title": "Delray Beach Open", "tournament_name": "delray-beach", "location": "Delray Beach, United States", "dates": "2023.02.13", "link": "/en/tournaments/delray-beach/499/overview"}, {"tournament_id": "506", "tournament_title": "IEB+ ARGENTINA OPEN", "tournament_name": "buenos-aires", "location": "Buenos Aires, Argentina", "dates": "2023.02.13", "link": "/en/tournaments/buenos-aires/506/overview"}, {"tournament_id": "6932", "tournament_title": "Rio Open presented by Claro", "tournament_name": "rio-de-janeiro", "location": "Rio de Janeiro, Brazil", "dates": "2023.02.20", "link": "/en/tournaments/rio-de-janeiro/6932/overview"}, {"tournament_id": "451", "tournament_title": "Qatar ExxonMobil Open", "tournament_name": "doha", "location": "Doha, Qatar", "dates": "2023.02.20", "link": "/en/tournaments/doha/451/overview"}, {"tournament_id": "496", "tournament_title": "Open 13 Provence", "tournament_name": "marseille", "location": "Marseille, France", "dates": "2023.02.20", "link": "/en/tournaments/marseille/496/overview"}, {"tournament_id": "495", "tournament_title": "Dubai Duty Free Tennis Championships", "tournament_name": "dubai", "location": "Dubai, United Arab Emirates", "dates": "2023.02.27", "link": "/en/tournaments/dubai/495/overview"}, {"tournament_id": "807", "tournament_title": "Abierto Mexicano Telcel presentado por HSBC", "tournament_name": "acapulco", "location": "Acapulco, Mexico", "dates": "2023.02.27", "link": "/en/tournaments/acapulco/807/overview"}, {"tournament_id": "8996", "tournament_title": "Movistar Chile Open", "tournament_name": "santiago", "location": "Santiago, Chile", "dates": "2023.02.27", "link": "/en/tournaments/santiago/8996/overview"}, {"tournament_id": "404", "tournament_title": "BNP Paribas Open", "tournament_name": "indian-wells", "location": "Indian Wells, United States", "dates": "2023.03.08", "link": "/en/tournaments/indian-wells/404/overview"}, {"tournament_id": "403", "tournament_title": "Miami Open presented by Itau", "tournament_name": "miami", "location": "Miami, United States", "dates": "2023.03.22", "link": "/en/tournaments/miami/403/overview"}, {"tournament_id": "717", "tournament_title": "Fayez Sarofim & Co. U.S. Men's Clay Court Championship", "tournament_name": "houston", "location": "Houston, United States", "dates": "2023.04.03", "link": "/en/tournaments/houston/717/overview"}, {"tournament_id": "360", "tournament_title": "Grand Prix Hassan II", "tournament_name": "marrakech", "location": "Marrakech, Morocco", "dates": "2023.04.03", "link": "/en/tournaments/marrakech/360/overview"}, {"tournament_id": "7290", "tournament_title": "Millennium Estoril Open", "tournament_name": "estoril", "location": "Estoril, Portugal", "dates": "2023.04.03", "link": "/en/tournaments/estoril/7290/overview"}, {"tournament_id": "410", "tournament_title": "Rolex Monte-Carlo Masters", "tournament_name": "monte-carlo", "location": "Monte-Carlo, Monaco", "dates": "2023.04.09", "link": "/en/tournaments/monte-carlo/410/overview"}, {"tournament_id": "425", "tournament_title": "Barcelona Open Banc Sabadell", "tournament_name": "barcelona", "location": "Barcelona, Spain", "dates": "2023.04.17", "link": "/en/tournaments/barcelona/425/overview"}, {"tournament_id": "308", "tournament_title": "BMW Open by American Express", "tournament_name": "munich", "location": "Munich, Germany", "dates": "2023.04.17", "link": "/en/tournaments/munich/308/overview"}, {"tournament_id": "2841", "tournament_title": "Srpska Open", "tournament_name": "banja-luka", "location": "Banja Luka, Bosnia-Herzegovina", "dates": "2023.04.17", "link": "/en/tournaments/banja-luka/2841/overview"}, {"tournament_id": "1536", "tournament_title": "Mutua Madrid Open", "tournament_name": "madrid", "location": "Madrid, Spain", "dates": "2023.04.26", "link": "/en/tournaments/madrid/1536/overview"}, {"tournament_id": "416", "tournament_title": "Internazionali BNL d'Italia", "tournament_name": "rome", "location": "Rome, Italy", "dates": "2023.05.10", "link": "/en/tournaments/rome/416/overview"}, {"tournament_id": "322", "tournament_title": "Gonet Geneva Open", "tournament_name": "geneva", "location": "Geneva, Switzerland", "dates": "2023.05.21", "link": "/en/tournaments/geneva/322/overview"}, {"tournament_id": "7694", "tournament_title": "Open Parc Auvergne-Rhone-Alpes Lyon", "tournament_name": "lyon", "location": "Lyon, France", "dates": "2023.05.21", "link": "/en/tournaments/lyon/7694/overview"}, {"tournament_id": "520", "tournament_title": "Roland Garros", "tournament_name": "roland-garros", "location": "Paris, France", "dates": "2023.05.28", "link": "/en/tournaments/roland-garros/520/overview"}, {"tournament_id": "321", "tournament_title": "BOSS OPEN", "tournament_name": "stuttgart", "location": "Stuttgart, Germany", "dates": "2023.06.12", "link": "/en/tournaments/stuttgart/321/overview"}, {"tournament_id": "440", "tournament_title": "Libema Open", "tournament_name": "s-hertogenbosch", "location": "'s-Hertogenbosch, Netherlands", "dates": "2023.06.12", "link": "/en/tournaments/s-hertogenbosch/440/overview"}, {"tournament_id": "311", "tournament_title": "Cinch Championships", "tournament_name": "london", "location": "London, Great Britain", "dates": "2023.06.19", "link": "/en/tournaments/london/311/overview"}, {"tournament_id": "500", "tournament_title": "Terra Wortmann Open", "tournament_name": "halle", "location": "Halle, Germany", "dates": "2023.06.19", "link": "/en/tournaments/halle/500/overview"}, {"tournament_id": "8994", "tournament_title": "Mallorca Championships", "tournament_name": "mallorca", "location": "Mallorca, Spain", "dates": "2023.06.24", "link": "/en/tournaments/mallorca/8994/overview"}, {"tournament_id": "741", "tournament_title": "Rothesay International", "tournament_name": "eastbourne", "location": "Eastbourne, Great Britain", "dates": "2023.06.26", "link": "/en/tournaments/eastbourne/741/overview"}, {"tournament_id": "540", "tournament_title": "Wimbledon", "tournament_name": "wimbledon", "location": "London, Great Britain", "dates": "2023.07.03", "link": "/en/tournaments/wimbledon/540/overview"}, {"tournament_id": "315", "tournament_title": "Infosys Hall of Fame Open", "tournament_name": "newport", "location": "Newport, United States", "dates": "2023.07.17", "link": "/en/tournaments/newport/315/overview"}, {"tournament_id": "314", "tournament_title": "EFG Swiss Open Gstaad", "tournament_name": "gstaad", "location": "Gstaad, Switzerland", "dates": "2023.07.17", "link": "/en/tournaments/gstaad/314/overview"}, {"tournament_id": "316", "tournament_title": "Nordea Open", "tournament_name": "bastad", "location": "Bastad, Sweden", "dates": "2023.07.17", "link": "/en/tournaments/bastad/316/overview"}, {"tournament_id": "414", "tournament_title": "Hamburg European Open", "tournament_name": "hamburg", "location": "Hamburg, Germany", "dates": "2023.07.24", "link": "/en/tournaments/hamburg/414/overview"}, {"tournament_id": "6116", "tournament_title": "Atlanta Open", "tournament_name": "atlanta", "location": "Atlanta, United States", "dates": "2023.07.24", "link": "/en/tournaments/atlanta/6116/overview"}, {"tournament_id": "439", "tournament_title": "Plava Laguna Croatia Open Umag", "tournament_name": "umag", "location": "Umag, Croatia", "dates": "2023.07.24", "link": "/en/tournaments/umag/439/overview"}, {"tournament_id": "418", "tournament_title": "Mubadala Citi DC Open", "tournament_name": "washington", "location": "Washington, United States", "dates": "2023.07.31", "link": "/en/tournaments/washington/418/overview"}, {"tournament_id": "7480", "tournament_title": "Mifel Tennis Open by Telcel Oppo", "tournament_name": "los-cabos", "location": "Los Cabos, Mexico", "dates": "2023.07.31", "link": "/en/tournaments/los-cabos/7480/overview"}, {"tournament_id": "319", "tournament_title": "Generali Open", "tournament_name": "kitzbuhel", "location": "Kitzbuhel, Austria", "dates": "2023.07.31", "link": "/en/tournaments/kitzbuhel/319/overview"}, {"tournament_id": "421", "tournament_title": "National Bank Open Presented by Rogers", "tournament_name": "toronto", "location": "Toronto, Canada", "dates": "2023.08.07", "link": "/en/tournaments/toronto/421/overview"}, {"tournament_id": "422", "tournament_title": "Western & Southern Open", "tournament_name": "cincinnati", "location": "Cincinnati, United States", "dates": "2023.08.13", "link": "/en/tournaments/cincinnati/422/overview"}, {"tournament_id": "6242", "tournament_title": "Winston-Salem Open", "tournament_name": "winston-salem", "location": "Winston-Salem, United States", "dates": "2023.08.20", "link": "/en/tournaments/winston-salem/6242/overview"}, {"tournament_id": "560", "tournament_title": "US Open", "tournament_name": "us-open", "location": "New York, United States", "dates": "2023.08.28", "link": "/en/tournaments/us-open/560/overview"}, {"tournament_id": "7581", "tournament_title": "Chengdu Open", "tournament_name": "chengdu", "location": "Chengdu, China", "dates": "2023.09.20", "link": "/en/tournaments/chengdu/7581/overview"}, {"tournament_id": "9164", "tournament_title": "Huafa Properties Zhuhai Championships", "tournament_name": "zhuhai", "location": "Zhuhai, China", "dates": "2023.09.20", "link": "/en/tournaments/zhuhai/9164/overview"}, {"tournament_id": "9210", "tournament_title": "Laver Cup", "tournament_name": "laver-cup", "location": "Vancouver, Canada", "dates": "2023.09.22", "link": "/en/tournaments/laver-cup/9210/overview"}, {"tournament_id": "9410", "tournament_title": "Astana Open", "tournament_name": "astana", "location": "Astana, Kazakhstan", "dates": "2023.09.27", "link": "/en/tournaments/astana/9410/overview"}, {"tournament_id": "747", "tournament_title": "China Open", "tournament_name": "beijing", "location": "Beijing, China", "dates": "2023.09.28", "link": "/en/tournaments/beijing/747/overview"}, {"tournament_id": "5014", "tournament_title": "Rolex Shanghai Masters", "tournament_name": "shanghai", "location": "Shanghai, China", "dates": "2023.10.04", "link": "/en/tournaments/shanghai/5014/overview"}, {"tournament_id": "329", "tournament_title": "Kinoshita Group Japan Open Tennis Championships", "tournament_name": "tokyo", "location": "Tokyo, Japan", "dates": "2023.10.16", "link": "/en/tournaments/tokyo/329/overview"}, {"tournament_id": "429", "tournament_title": "BNP Paribas Nordic Open", "tournament_name": "stockholm", "location": "Stockholm, Sweden", "dates": "2023.10.16", "link": "/en/tournaments/stockholm/429/overview"}, {"tournament_id": "7485", "tournament_title": "European Open", "tournament_name": "antwerp", "location": "Antwerp, Belgium", "dates": "2023.10.16", "link": "/en/tournaments/antwerp/7485/overview"}, {"tournament_id": "337", "tournament_title": "Erste Bank Open", "tournament_name": "vienna", "location": "Vienna, Austria", "dates": "2023.10.23", "link": "/en/tournaments/vienna/337/overview"}, {"tournament_id": "328", "tournament_title": "Swiss Indoors Basel", "tournament_name": "basel", "location": "Basel, Switzerland", "dates": "2023.10.23", "link": "/en/tournaments/basel/328/overview"}, {"tournament_id": "352", "tournament_title": "Rolex Paris Masters", "tournament_name": "paris", "location": "Paris, France", "dates": "2023.10.30", "link": "/en/tournaments/paris/352/overview"}, {"tournament_id": "341", "tournament_title": "Moselle Open", "tournament_name": "metz", "location": "Metz, France", "dates": "2023.11.05", "link": "/en/tournaments/metz/341/overview"}, {"tournament_id": "7434", "tournament_title": "Sofia Open", "tournament_name": "sofia", "location": "Sofia, Bulgaria", "dates": "2023.11.06", "link": "/en/tournaments/sofia/7434/overview"}, {"tournament_id": "605", "tournament_title": "Nitto ATP Finals", "tournament_name": "nitto-atp-finals", "location": "Turin, Italy", "dates": "2023.11.12", "link": "/en/tournaments/nitto-atp-finals/605/overview"}, {"tournament_id": "7696", "tournament_title": "Next Gen ATP Finals", "tournament_name": "next-gen-atp-finals", "location": "Jeddah, Saudi Arabia", "dates": "2023.11.28", "link": "/en/tournaments/next-gen-atp-finals/7696/overview"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"tournaments": {"type": "array", "items": {"type": "object", "properties": {"tournament_id": {"type": "string"}, "tournament_title": {"type": "string"}, "tournament_name": {"type": "string"}, "location": {"type": "string"}, "dates": {"type": "string"}, "link": {"type": "string"}}, "required": ["dates", "link", "location", "tournament_id", "tournament_name", "tournament_title"]}}}, "required": ["tournaments"]} |
7fb87771-243b-4eb1-9428-d34fa635710d/7e153ef0-552f-4ee8-8e91-cb99e85550be/0/0 | tennisprodata | API for accessing professional tennis data | 8.6 | Get Player Info | Endpoint for retrieving data for specific players. | 200 | Response | {"bio": [{"player_name": "Tommy Paul", "age": "26", "dob": "(1997.05.17)", "turned_pro": "2015", "weight": "180lbs(82kg)", "height": "6'1\"(185cm)", "birthplace": "Voorhees, NJ, USA", "plays": "Right-Handed, Two-Handed Backhand", "coach": "Brad Stine"}], "current": [{"singles_rank": "12", "doubles_rank": "339", "singles_wl": "40-27", "doubles_wl": "4-6", "singles_titles": "0", "doubles_titles": "0", "singles_prize_money": "$2,489,171", "doubles_prize_money": "$64,920"}], "career": [{"singles_rank": "12", "doubles_rank": "97", "singles_wl": "130-105", "doubles_wl": "33-43", "singles_titles": "1", "doubles_titles": "0", "singles_and_doubles_prize_money": "$6,264,062"}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"bio": {"type": "array", "items": {"type": "object", "properties": {"player_name": {"type": "string"}, "age": {"type": "string"}, "dob": {"type": "string"}, "turned_pro": {"type": "string"}, "weight": {"type": "string"}, "height": {"type": "string"}, "birthplace": {"type": "string"}, "plays": {"type": "string"}, "coach": {"type": "string"}}, "required": ["age", "birthplace", "coach", "dob", "height", "player_name", "plays", "turned_pro", "weight"]}}, "current": {"type": "array", "items": {"type": "object", "properties": {"singles_rank": {"type": "string"}, "doubles_rank": {"type": "string"}, "singles_wl": {"type": "string"}, "doubles_wl": {"type": "string"}, "singles_titles": {"type": "string"}, "doubles_titles": {"type": "string"}, "singles_prize_money": {"type": "string"}, "doubles_prize_money": {"type": "string"}}, "required": ["doubles_prize_money", "doubles_rank", "doubles_titles", "doubles_wl", "singles_prize_money", "singles_rank", "singles_titles", "singles_wl"]}}, "career": {"type": "array", "items": {"type": "object", "properties": {"singles_rank": {"type": "string"}, "doubles_rank": {"type": "string"}, "singles_wl": {"type": "string"}, "doubles_wl": {"type": "string"}, "singles_titles": {"type": "string"}, "doubles_titles": {"type": "string"}, "singles_and_doubles_prize_money": {"type": "string"}}, "required": ["doubles_rank", "doubles_titles", "doubles_wl", "singles_and_doubles_prize_money", "singles_rank", "singles_titles", "singles_wl"]}}}, "required": ["bio", "career", "current"]} |
940c4b2c-cd52-4d71-8623-c2b663fa09f9/30fbb13c-4ee6-4523-bbd7-aef25364c6b8/0/0 | Chelsea FC News Live | API showing all the news surrounding Chelsea Football Club | 0.2 | Get Single Source Chelsea FC News | This will return the Chelsea FC news from a specific source. | 200 | New Example | [{"title": "Chelsea FC Starting Xi Prediction at Brentford", "url": "https://c.newsnow.co.uk/A/1099847555?-11199:832", "sourceName": "NewsNow"}, {"title": "Chelsea social media jibe against Arsenal backfires to expose lack of awareness of club history", "url": "https://c.newsnow.co.uk/A/1099847439?-11199:832", "sourceName": "NewsNow"}, {"title": "Chelsea join EPL rivals in collective effort to bring South American stars back home for\u2026", "url": "https://c.newsnow.co.uk/A/1099846361?-11199:832", "sourceName": "NewsNow"}, {"title": "Report: Chelsea stunned as Ancelotti eyes \u00a3100,000-a-week star, contract offer rejected", "url": "https://c.newsnow.co.uk/A/1099845243?-11199:832", "sourceName": "NewsNow"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "sourceName": {"type": "string"}}, "required": ["sourceName", "title", "url"]}} |
4c920f6c-7727-4c6c-9892-5fe4acc6bee1/dee8675d-77f4-4d11-92b6-de7ec472e65a/0/0 | Today Football Prediction | Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $4.99/mo | 9.2 | VIP Prediction Scores | This VIP endpoint returns match score predictions with average goal stats. Same query strings and pagination functionality is supported with /predictions/list
Use /predictions/list endpoint to get market bet predictions.
| 200 | Response | {"pagination": {"no_of_docs_total": 7, "no_of_docs_in_page": 7, "page": 1}, "matches": [{"id": "62fb54c82c9a2e8d643c7965", "home_team": "Aston Villa", "away_team": "Everton", "date": "2022-08-13", "date_time": "2022-08-13T11:30:00.000Z", "league": "1", "prediction_score": "3 - 1", "average_goals": 3.01, "result_score": "2 - 1", "is_finished": true}, {"id": "62fb54cf2c9a2e8d643c7b12", "home_team": "Arsenal", "away_team": "Leicester City", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction_score": "2 - 1", "average_goals": 3.04, "result_score": "4 - 2", "is_finished": true}, {"id": "62fb54cf2c9a2e8d643c7b15", "home_team": "Brighton", "away_team": "Newcastle United", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction_score": "0 - 1", "average_goals": 2.08, "result_score": "0 - 0", "is_finished": true}, {"id": "62fb54cf2c9a2e8d643c7b18", "home_team": "Manchester City", "away_team": "Bournemouth", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction_score": "2 - 1", "average_goals": 3.65, "result_score": "4 - 0", "is_finished": true}, {"id": "62fb54cf2c9a2e8d643c7b1b", "home_team": "Southampton", "away_team": "Leeds United", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction_score": "0 - 3", "average_goals": 2.63, "result_score": "2 - 2", "is_finished": true}, {"id": "62fb54cf2c9a2e8d643c7b1e", "home_team": "Wolverhampton", "away_team": "Fulham", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction_score": "1 - 1", "average_goals": 2.43, "result_score": "0 - 0", "is_finished": true}, {"id": "62fb54de2c9a2e8d643c7ebd", "home_team": "Brentford", "away_team": "Manchester United", "date": "2022-08-13", "date_time": "2022-08-13T16:30:00.000Z", "league": "1", "prediction_score": "2 - 1", "average_goals": 3.17, "result_score": "4 - 0", "is_finished": true}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"pagination": {"type": "object", "properties": {"no_of_docs_total": {"type": "integer"}, "no_of_docs_in_page": {"type": "integer"}, "page": {"type": "integer"}}, "required": ["no_of_docs_in_page", "no_of_docs_total", "page"]}, "matches": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "home_team": {"type": "string"}, "away_team": {"type": "string"}, "date": {"type": "string"}, "date_time": {"type": "string"}, "league": {"type": "string"}, "prediction_score": {"type": "string"}, "average_goals": {"type": "number"}, "result_score": {"type": "string"}, "is_finished": {"type": "boolean"}}, "required": ["average_goals", "away_team", "date", "date_time", "home_team", "id", "is_finished", "league", "prediction_score", "result_score"]}}}, "required": ["matches", "pagination"]} |
4c920f6c-7727-4c6c-9892-5fe4acc6bee1/8b4d9771-a747-4f36-b5f8-3686d6f30c36/0/0 | Today Football Prediction | Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $4.99/mo | 9.2 | Daily Predictions | Returns Daily Football Predictions with pagination support.
Search/filter can be used by date, league, market-type.
Use predictions/{matchId}/details endpoint to see more information about any particular match prediction.
Use predictions/scores endpoint to get score prediction and average goals.
| 200 | Response | {"pagination": {"no_of_docs_total": 7, "no_of_docs_in_page": 7, "page": 1}, "matches": [{"id": "62fb54c82c9a2e8d643c7965", "home_team": "Aston Villa", "away_team": "Everton", "date": "2022-08-13", "date_time": "2022-08-13T11:30:00.000Z", "league": "1", "prediction": "O", "prediction_odd": 2, "prediction_probability": 60, "is_finished": true, "result_score": "2 - 1", "is_prediction_correct": true}, {"id": "62fb54cf2c9a2e8d643c7b12", "home_team": "Arsenal", "away_team": "Leicester City", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction": "O", "prediction_odd": 1.73, "prediction_probability": 61, "is_finished": true, "result_score": "4 - 2", "is_prediction_correct": true}, {"id": "62fb54cf2c9a2e8d643c7b15", "home_team": "Brighton", "away_team": "Newcastle United", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction": "U", "prediction_odd": 1.73, "prediction_probability": 58, "is_finished": true, "result_score": "0 - 0", "is_prediction_correct": true}, {"id": "62fb54cf2c9a2e8d643c7b18", "home_team": "Manchester City", "away_team": "Bournemouth", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction": "O", "prediction_odd": 1.4, "prediction_probability": 73, "is_finished": true, "result_score": "4 - 0", "is_prediction_correct": true}, {"id": "62fb54cf2c9a2e8d643c7b1b", "home_team": "Southampton", "away_team": "Leeds United", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction": "O", "prediction_odd": 1.73, "prediction_probability": 53, "is_finished": true, "result_score": "2 - 2", "is_prediction_correct": true}, {"id": "62fb54cf2c9a2e8d643c7b1e", "home_team": "Wolverhampton", "away_team": "Fulham", "date": "2022-08-13", "date_time": "2022-08-13T14:00:00.000Z", "league": "1", "prediction": "U", "prediction_odd": 1.73, "prediction_probability": 51, "is_finished": true, "result_score": "0 - 0", "is_prediction_correct": true}, {"id": "62fb54de2c9a2e8d643c7ebd", "home_team": "Brentford", "away_team": "Manchester United", "date": "2022-08-13", "date_time": "2022-08-13T16:30:00.000Z", "league": "1", "prediction": "O", "prediction_odd": 1.8, "prediction_probability": 63, "is_finished": true, "result_score": "4 - 0", "is_prediction_correct": true}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"pagination": {"type": "object", "properties": {"no_of_docs_total": {"type": "integer"}, "no_of_docs_in_page": {"type": "integer"}, "page": {"type": "integer"}}, "required": ["no_of_docs_in_page", "no_of_docs_total", "page"]}, "matches": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "home_team": {"type": "string"}, "away_team": {"type": "string"}, "date": {"type": "string"}, "date_time": {"type": "string"}, "league": {"type": "string"}, "prediction": {"type": "string"}, "prediction_odd": {"type": "number"}, "prediction_probability": {"type": "integer"}, "is_finished": {"type": "boolean"}, "result_score": {"type": "string"}, "is_prediction_correct": {"type": "boolean"}}, "required": ["away_team", "date", "date_time", "home_team", "id", "is_finished", "is_prediction_correct", "league", "prediction", "prediction_odd", "prediction_probability", "result_score"]}}}, "required": ["matches", "pagination"]} |
4c920f6c-7727-4c6c-9892-5fe4acc6bee1/c6f2138f-b666-46cf-a29a-9a2fb2a0fa5f/0/0 | Today Football Prediction | Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $4.99/mo | 9.2 | VIP Featured Predictions | Returns Daily Featured Prediction results which have higher probability and better odds than others. More efficient selections.
Compare its performance from stats/performance endpoint. | 200 | Response | {"date": "2022-08-18", "matches": [{"id": "62fdee58de641a4a1dd2887b", "home_team": "Fluminense RJ", "away_team": "Fortaleza", "date": "2022-08-18", "date_time": "2022-08-17T23:00:00.000Z", "league": "476", "prediction": "1", "prediction_odd": 1.65, "prediction_probability": 54, "is_finished": true, "result_score": "2 - 2", "is_prediction_correct": false}, {"id": "62fdee72de641a4a1dd28c2a", "home_team": "Corinthians", "away_team": "Atl\u00e9tico GO", "date": "2022-08-18", "date_time": "2022-08-18T00:30:00.000Z", "league": "476", "prediction": "2", "prediction_odd": 6.5, "prediction_probability": 39, "is_finished": true, "result_score": "4 - 1", "is_prediction_correct": false}, {"id": "62fdee74de641a4a1dd28c9e", "home_team": "HJK Helsinki", "away_team": "Silkeborg IF", "date": "2022-08-18", "date_time": "2022-08-18T16:00:00.000Z", "league": "14", "prediction": "1", "prediction_odd": 3, "prediction_probability": 44, "is_finished": false}, {"id": "62fdee75de641a4a1dd28cb0", "home_team": "Ferencvaros TC", "away_team": "Shamrock Rovers", "date": "2022-08-18", "date_time": "2022-08-18T16:30:00.000Z", "league": "14", "prediction": "2", "prediction_odd": 6, "prediction_probability": 36, "is_finished": false}, {"id": "62fdee75de641a4a1dd28cbf", "home_team": "Malm\u00f6 FF", "away_team": "Sivasspor", "date": "2022-08-18", "date_time": "2022-08-18T17:00:00.000Z", "league": "14", "prediction": "1", "prediction_odd": 1.75, "prediction_probability": 56, "is_finished": false}, {"id": "62fdee75de641a4a1dd28cc2", "home_team": "Pyunik FC", "away_team": "Sheriff Tiraspol", "date": "2022-08-18", "date_time": "2022-08-18T17:00:00.000Z", "league": "14", "prediction": "2", "prediction_odd": 2.45, "prediction_probability": 37, "is_finished": false}, {"id": "62fdee75de641a4a1dd28cc5", "home_team": "Apollon Limassol", "away_team": "Olympiacos FC", "date": "2022-08-18", "date_time": "2022-08-18T17:00:00.000Z", "league": "14", "prediction": "2", "prediction_odd": 2.1, "prediction_probability": 35, "is_finished": false}, {"id": "62fdee75de641a4a1dd28cc8", "home_team": "FC Z\u00fcrich", "away_team": "Hearts FC", "date": "2022-08-18", "date_time": "2022-08-18T17:00:00.000Z", "league": "14", "prediction": "1", "prediction_odd": 1.8, "prediction_probability": 44, "is_finished": false}, {"id": "62fdee76de641a4a1dd28cfb", "home_team": "Ludogorets", "away_team": "VMFD Zalgiris", "date": "2022-08-18", "date_time": "2022-08-18T17:45:00.000Z", "league": "14", "prediction": "1", "prediction_odd": 1.4, "prediction_probability": 42, "is_finished": false}, {"id": "62fdee76de641a4a1dd28d01", "home_team": "SK Dnipro-1", "away_team": "AEK Larnaka", "date": "2022-08-18", "date_time": "2022-08-18T18:00:00.000Z", "league": "14", "prediction": "2", "prediction_odd": 2.7, "prediction_probability": 37, "is_finished": false}, {"id": "62fdee77de641a4a1dd28d25", "home_team": "KAA Gent", "away_team": "Omonia Nicosia", "date": "2022-08-18", "date_time": "2022-08-18T18:30:00.000Z", "league": "14", "prediction": "1", "prediction_odd": 1.3, "prediction_probability": 41, "is_finished": false}, {"id": "62fdee77de641a4a1dd28d31", "home_team": "Villarreal CF", "away_team": "Hajduk Split", "date": "2022-08-18", "date_time": "2022-08-18T18:45:00.000Z", "league": "571", "prediction": "1", "prediction_odd": 1.3, "prediction_probability": 50, "is_finished": false}, {"id": "62fdee77de641a4a1dd28d34", "home_team": "West Ham", "away_team": "Viborg FF", "date": "2022-08-18", "date_time": "2022-08-18T18:45:00.000Z", "league": "571", "prediction": "2", "prediction_odd": 11, "prediction_probability": 45, "is_finished": false}, {"id": "62fdee77de641a4a1dd28d37", "home_team": "Austria Wien", "away_team": "Fenerbah\u00e7e SK", "date": "2022-08-18", "date_time": "2022-08-18T19:00:00.000Z", "league": "14", "prediction": "2", "prediction_odd": 2.2, "prediction_probability": 41, "is_finished": false}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"date": {"type": "string"}, "matches": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "home_team": {"type": "string"}, "away_team": {"type": "string"}, "date": {"type": "string"}, "date_time": {"type": "string"}, "league": {"type": "string"}, "prediction": {"type": "string"}, "prediction_odd": {"type": "number"}, "prediction_probability": {"type": "integer"}, "is_finished": {"type": "boolean"}, "result_score": {"type": "string"}, "is_prediction_correct": {"type": "boolean"}}, "required": ["away_team", "date", "date_time", "home_team", "id", "is_finished", "league", "prediction", "prediction_odd", "prediction_probability"]}}}, "required": ["date", "matches"]} |
4c920f6c-7727-4c6c-9892-5fe4acc6bee1/2fc1200b-b214-41f6-8e60-a87739f9e972/0/0 | Today Football Prediction | Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $4.99/mo | 9.2 | Prediction Details | Shows all details about the match, its prediction and the prediction results. | 200 | Response | {"match": {"id": "62fb54c82c9a2e8d643c7965", "home_team": "Aston Villa", "away_team": "Everton", "date": "2022-08-13", "date_time": "2022-08-13T11:30:00.000Z", "league": "1", "predictions": {"1X2": {"prediction": "1", "probabilities": {"1": 47, "2": 20, "X": 33}}, "OU25": {"prediction": "O", "probabilities": {"U": 40, "O": 60}}, "bts": {"prediction": "YES", "probabilities": {"YES": 64, "NO": 36}}}, "odds": {"1X2": {"1": 1.8, "2": 4.5, "X": 3.5}, "OU25": {"U": 1.8, "O": 2}, "bts": {"YES": 1.8, "NO": 1.95}}, "is_finished": true, "result_score": "2 - 1", "prediction_results": {"1X2": {"prediction": "1", "result": "1", "status": true, "probability": 47, "odd": 1.8, "profitLoss": 0.8}, "OU25": {"prediction": "O", "result": "O", "status": true, "probability": 60, "odd": 2, "profitLoss": 1}, "bts": {"prediction": "YES", "result": "YES", "status": true, "probability": 64, "odd": 1.8, "profitLoss": 0.8}}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"match": {"type": "object", "properties": {"id": {"type": "string"}, "home_team": {"type": "string"}, "away_team": {"type": "string"}, "date": {"type": "string"}, "date_time": {"type": "string"}, "league": {"type": "string"}, "predictions": {"type": "object", "properties": {"1X2": {"type": "object", "properties": {"prediction": {"type": "string"}, "probabilities": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "X": {"type": "integer"}}, "required": ["1", "2", "X"]}}, "required": ["prediction", "probabilities"]}, "OU25": {"type": "object", "properties": {"prediction": {"type": "string"}, "probabilities": {"type": "object", "properties": {"U": {"type": "integer"}, "O": {"type": "integer"}}, "required": ["O", "U"]}}, "required": ["prediction", "probabilities"]}, "bts": {"type": "object", "properties": {"prediction": {"type": "string"}, "probabilities": {"type": "object", "properties": {"YES": {"type": "integer"}, "NO": {"type": "integer"}}, "required": ["NO", "YES"]}}, "required": ["prediction", "probabilities"]}}, "required": ["1X2", "OU25", "bts"]}, "odds": {"type": "object", "properties": {"1X2": {"type": "object", "properties": {"1": {"type": "number"}, "2": {"type": "number"}, "X": {"type": "number"}}, "required": ["1", "2", "X"]}, "OU25": {"type": "object", "properties": {"U": {"type": "number"}, "O": {"type": "integer"}}, "required": ["O", "U"]}, "bts": {"type": "object", "properties": {"YES": {"type": "number"}, "NO": {"type": "number"}}, "required": ["NO", "YES"]}}, "required": ["1X2", "OU25", "bts"]}, "is_finished": {"type": "boolean"}, "result_score": {"type": "string"}, "prediction_results": {"type": "object", "properties": {"1X2": {"type": "object", "properties": {"prediction": {"type": "string"}, "result": {"type": "string"}, "status": {"type": "boolean"}, "probability": {"type": "integer"}, "odd": {"type": "number"}, "profitLoss": {"type": "number"}}, "required": ["odd", "prediction", "probability", "profitLoss", "result", "status"]}, "OU25": {"type": "object", "properties": {"prediction": {"type": "string"}, "result": {"type": "string"}, "status": {"type": "boolean"}, "probability": {"type": "integer"}, "odd": {"type": "integer"}, "profitLoss": {"type": "integer"}}, "required": ["odd", "prediction", "probability", "profitLoss", "result", "status"]}, "bts": {"type": "object", "properties": {"prediction": {"type": "string"}, "result": {"type": "string"}, "status": {"type": "boolean"}, "probability": {"type": "integer"}, "odd": {"type": "number"}, "profitLoss": {"type": "number"}}, "required": ["odd", "prediction", "probability", "profitLoss", "result", "status"]}}, "required": ["1X2", "OU25", "bts"]}}, "required": ["away_team", "date", "date_time", "home_team", "id", "is_finished", "league", "odds", "prediction_results", "predictions", "result_score"]}}, "required": ["match"]} |
4c920f6c-7727-4c6c-9892-5fe4acc6bee1/41bc7f17-082f-4681-af5b-f624620dbdf8/0/0 | Today Football Prediction | Daily Football Prediction & Betting Tips with AI powered analysis and probability statistics. High efficiency, average bookie odds, profit-loss calculation, value betting. Limitted Time: Ultra Plan is only $4.99/mo | 9.2 | Stats - Performance | Returns statistics of AI prediction module with selected odds, prediction probabilities and profit-loss calculation.
Profit-Loss: calculated by considering only single bet is played from 1 unit amount. If the bet is won, gets prediction odd as positive number else -1. | 200 | Response | {"date": "2022-08-13", "featured": {"classic": {"profit_loss": 6.94, "winning_percentage": 58.33, "count": 24, "count_won": 14, "count_lost": 10, "avg_prob": 48.63, "avg_odd": 2.28}, "ou25": {"profit_loss": 2.63, "winning_percentage": 66.67, "count": 24, "count_won": 16, "count_lost": 8, "avg_prob": 58.83, "avg_odd": 1.72}, "both": {"profit_loss": 6.27, "winning_percentage": 70.83, "count": 24, "count_won": 17, "count_lost": 7, "avg_prob": 62.88, "avg_odd": 1.85}}, "all": {"classic": {"profit_loss": -69.56, "winning_percentage": 44.35, "count": 814, "count_won": 361, "count_lost": 453, "avg_prob": 47.32, "avg_odd": 2.46}, "ou25": {"profit_loss": -43.96, "winning_percentage": 54.3, "count": 814, "count_won": 442, "count_lost": 372, "avg_prob": 63.36, "avg_odd": 1.79}, "both": {"profit_loss": -41.7, "winning_percentage": 49.88, "count": 814, "count_won": 406, "count_lost": 408, "avg_prob": 62.28, "avg_odd": 1.84}}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"date": {"type": "string"}, "featured": {"type": "object", "properties": {"classic": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}, "ou25": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}, "both": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}}, "required": ["both", "classic", "ou25"]}, "all": {"type": "object", "properties": {"classic": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}, "ou25": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}, "both": {"type": "object", "properties": {"profit_loss": {"type": "number"}, "winning_percentage": {"type": "number"}, "count": {"type": "integer"}, "count_won": {"type": "integer"}, "count_lost": {"type": "integer"}, "avg_prob": {"type": "number"}, "avg_odd": {"type": "number"}}, "required": ["avg_odd", "avg_prob", "count", "count_lost", "count_won", "profit_loss", "winning_percentage"]}}, "required": ["both", "classic", "ou25"]}}, "required": ["all", "date", "featured"]} |
22f1be07-282b-45aa-8a8c-544c83b48fa6/f38f8832-d062-4b20-b55a-1bd0956fd3fe/0/0 | nba-all-in-api-jsdw | Api dinamica para una pagina de nba | null | Nba standings | this endpoint will return the actual position off all the nba teams | 200 | New Example | [{"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/chicago-bulls-v1000632.png", "NombreEquipo": "Chicago Bulls", "Posicionamiento": "1.", "PJ": "39", "PG": "27", "PP": "12", "Porcentaje": "0.692"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/brooklyn-nets-v1000632.png", "NombreEquipo": "Brooklyn Nets", "Posicionamiento": "2.", "PJ": "40", "PG": "26", "PP": "14", "Porcentaje": "0.65"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/miami-heat-v1000632.png", "NombreEquipo": "Miami Heat", "Posicionamiento": "3.", "PJ": "41", "PG": "26", "PP": "15", "Porcentaje": "0.634"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/milwaukee-bucks-v1000632.png", "NombreEquipo": "Milwaukee Bucks", "Posicionamiento": "4.", "PJ": "43", "PG": "26", "PP": "17", "Porcentaje": "0.605"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/philadelphia-76ers-v1000632.png", "NombreEquipo": "Philadelphia 76ers", "Posicionamiento": "5.", "PJ": "40", "PG": "23", "PP": "17", "Porcentaje": "0.575"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/cleveland-cavaliers-v1000632.png", "NombreEquipo": "Cleveland Cavaliers", "Posicionamiento": "6.", "PJ": "42", "PG": "24", "PP": "18", "Porcentaje": "0.571"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/charlotte-hornets-v1000632.png", "NombreEquipo": "Charlotte Hornets", "Posicionamiento": "7.", "PJ": "42", "PG": "23", "PP": "19", "Porcentaje": "0.548"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/toronto-raptors-v1000632.png", "NombreEquipo": "Toronto Raptors", "Posicionamiento": "8.", "PJ": "38", "PG": "20", "PP": "18", "Porcentaje": "0.526"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/washington-wizards-v1000632.png", "NombreEquipo": "Washington Wizards", "Posicionamiento": "9.", "PJ": "42", "PG": "22", "PP": "20", "Porcentaje": "0.524"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/boston-celtics-v1000632.png", "NombreEquipo": "Boston Celtics", "Posicionamiento": "10.", "PJ": "42", "PG": "21", "PP": "21", "Porcentaje": "0.5"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/new-york-knicks-v1000632.png", "NombreEquipo": "New York Knicks", "Posicionamiento": "11.", "PJ": "42", "PG": "21", "PP": "21", "Porcentaje": "0.5"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/atlanta-hawks-v1000632.png", "NombreEquipo": "Atlanta Hawks", "Posicionamiento": "12.", "PJ": "40", "PG": "17", "PP": "23", "Porcentaje": "0.425"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/indiana-pacers-v1000632.png", "NombreEquipo": "Indiana Pacers", "Posicionamiento": "13.", "PJ": "42", "PG": "15", "PP": "27", "Porcentaje": "0.357"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/detroit-pistons-v1000632.png", "NombreEquipo": "Detroit Pistons", "Posicionamiento": "14.", "PJ": "40", "PG": "9", "PP": "31", "Porcentaje": "0.225"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/orlando-magic-v1000632.png", "NombreEquipo": "Orlando Magic", "Posicionamiento": "15.", "PJ": "42", "PG": "7", "PP": "35", "Porcentaje": "0.167"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/phoenix-suns-v1000632.png", "NombreEquipo": "Phoenix Suns", "Posicionamiento": "1.", "PJ": "40", "PG": "31", "PP": "9", "Porcentaje": "0.775"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/golden-state-warriors-v1000632.png", "NombreEquipo": "Golden State Warriors", "Posicionamiento": "2.", "PJ": "40", "PG": "30", "PP": "10", "Porcentaje": "0.75"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/memphis-grizzlies-v1000632.png", "NombreEquipo": "Memphis Grizzlies", "Posicionamiento": "3.", "PJ": "43", "PG": "29", "PP": "14", "Porcentaje": "0.674"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/utah-jazz-v1000632.png", "NombreEquipo": "Utah Jazz", "Posicionamiento": "4.", "PJ": "42", "PG": "28", "PP": "14", "Porcentaje": "0.667"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/dallas-mavericks-v1000632.png", "NombreEquipo": "Dallas Mavericks", "Posicionamiento": "5.", "PJ": "41", "PG": "22", "PP": "19", "Porcentaje": "0.537"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/denver-nuggets-v1000632.png", "NombreEquipo": "Denver Nuggets", "Posicionamiento": "6.", "PJ": "39", "PG": "20", "PP": "19", "Porcentaje": "0.513"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/los-angeles-clippers-v1000632.png", "NombreEquipo": "Los Angeles Clippers", "Posicionamiento": "7.", "PJ": "42", "PG": "21", "PP": "21", "Porcentaje": "0.5"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/los-angeles-lakers-v1000632.png", "NombreEquipo": "Los Angeles Lakers", "Posicionamiento": "8.", "PJ": "42", "PG": "21", "PP": "21", "Porcentaje": "0.5"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/minnesota-timberwolves-v1000632.png", "NombreEquipo": "Minnesota Timberwolves", "Posicionamiento": "9.", "PJ": "41", "PG": "20", "PP": "21", "Porcentaje": "0.488"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/portland-trail-blazers-v1000632.png", "NombreEquipo": "Portland Trail Blazers", "Posicionamiento": "10.", "PJ": "40", "PG": "16", "PP": "24", "Porcentaje": "0.4"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/sacramento-kings-v1000632.png", "NombreEquipo": "Sacramento Kings", "Posicionamiento": "11.", "PJ": "44", "PG": "17", "PP": "27", "Porcentaje": "0.386"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/san-antonio-spurs-v1000632.png", "NombreEquipo": "San Antonio Spurs", "Posicionamiento": "12.", "PJ": "41", "PG": "15", "PP": "26", "Porcentaje": "0.366"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/new-orleans-pelicans-v1000632.png", "NombreEquipo": "New Orleans Pelicans", "Posicionamiento": "13.", "PJ": "41", "PG": "15", "PP": "26", "Porcentaje": "0.366"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/oklahoma-city-thunder-v1000632.png", "NombreEquipo": "Oklahoma City Thunder", "Posicionamiento": "14.", "PJ": "40", "PG": "13", "PP": "27", "Porcentaje": "0.325"}, {"LogoEquipo": "https://rsc.mundodeportivo.com/img/teams/houston-rockets-v1000632.png", "NombreEquipo": "Houston Rockets", "Posicionamiento": "15.", "PJ": "43", "PG": "12", "PP": "31", "Porcentaje": "0.279"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"LogoEquipo": {"type": "string"}, "NombreEquipo": {"type": "string"}, "Posicionamiento": {"type": "string"}, "PJ": {"type": "string"}, "PG": {"type": "string"}, "PP": {"type": "string"}, "Porcentaje": {"type": "string"}}, "required": ["LogoEquipo", "NombreEquipo", "PG", "PJ", "PP", "Porcentaje", "Posicionamiento"]}} |
22f1be07-282b-45aa-8a8c-544c83b48fa6/ad333eab-c74d-426a-8bbb-b72db306dbad/0/0 | nba-all-in-api-jsdw | Api dinamica para una pagina de nba | null | Get all NBA latest matches | This endpoint will return the latest matches of the nba. | 200 | New Example | [{"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/washington-wizards-v1000632.png", "score": "106"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/orlando-magic-v1000632.png", "score": "112"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/indiana-pacers-v1000632.png", "score": "119"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/boston-celtics-v1000632.png", "score": "100"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/philadelphia-76ers-v1000632.png", "score": "109"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/charlotte-hornets-v1000632.png", "score": "98"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/atlanta-hawks-v1000632.png", "score": "115"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/miami-heat-v1000632.png", "score": "91"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/new-york-knicks-v1000632.png", "score": "85"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/dallas-mavericks-v1000632.png", "score": "108"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/san-antonio-spurs-v1000632.png", "score": "128"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/houston-rockets-v1000632.png", "score": "124"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/utah-jazz-v1000632.png", "score": "111"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/cleveland-cavaliers-v1000632.png", "score": "91"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/chicago-bulls-v1000632.png", "score": "138"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/brooklyn-nets-v1000632.png", "score": "112"}, "EstadoPartido": "FINAL"}, {"team1": {"teams": "https://rsc.mundodeportivo.com/img/teams/sacramento-kings-v1000632.png", "score": "116"}, "team2": {"teams": "https://rsc.mundodeportivo.com/img/teams/los-angeles-lakers-v1000632.png", "score": "125"}, "EstadoPartido": "FINAL"}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"team1": {"type": "object", "properties": {"teams": {"type": "string"}, "score": {"type": "string"}}, "required": ["score", "teams"]}, "team2": {"type": "object", "properties": {"teams": {"type": "string"}, "score": {"type": "string"}}, "required": ["score", "teams"]}, "EstadoPartido": {"type": "string"}}, "required": ["EstadoPartido", "team1", "team2"]}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/89e1b70a-ea13-473e-a081-e21c1455d343/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Champion | Get championship team data for the given year. | 200 | Response | {"year": "1983", "season": "1982-1983", "champion": "NC State", "nickname": "Wolfpack", "coach": "Jim Valvano", "record": "26-10", "championship_score": "54-52", "seed": "6"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "champion": {"type": "string"}, "nickname": {"type": "string"}, "coach": {"type": "string"}, "record": {"type": "string"}, "championship_score": {"type": "string"}, "seed": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/a2bdcbcf-ce4d-469e-ae9e-3f18c6c420d4/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Most Outstanding Player | Get the tournament Most Outstanding Player for the given year. '*' indicates player was not on the championship team. | 200 | Response | {"year": "1961", "season": "1960-1961", "mop": "Jerry Lucas, Ohio State*"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "mop": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/f87d3de2-ca4c-4f41-a3d7-bb6537d12b74/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Seeds | Get the number 1 seeds for the given year (only available from 1979 onwards). | 200 | Response | {"year": "2011", "season": "2010-2011", "number_one_seeds": "Ohio State, Kansas, Pittsburgh, Duke"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "number_one_seeds": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/b9919b9b-60e1-4175-a9ad-ffa0bcb7f433/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of nicknames | Get a list of every Final Four team nickname sorted alphabetically. | 200 | Response | {"nicknames": ["49ers", "Aggies", "Badgers", "Bearcats", "Bears", "Beavers", "Big Green", "Blue Demons", "Blue Devils", "Boilermakers", "Bonnies", "Braves", "Broncos", "Bruins", "Buckeyes", "Buffaloes", "Bulldogs", "Cardinal", "Cardinals", "Cavaliers", "Cougars", "Cowboys", "Crusaders", "Cyclones", "Demon Deacons", "Dolphins", "Dons", "Ducks", "Dukes", "Explorers", "Fighting Illini", "Fighting Irish", "Flyers", "Friars", "Gamecocks", "Gators", "Golden Bears", "Golden Eagles", "Golden Gophers", "Hawkeyes", "Hawks", "Hilltoppers", "Hoosiers", "Hoyas", "Huskies", "Jayhawks", "Longhorns", "Miners", "Minutemen", "Mountaineers", "Mustangs", "Nittany Lions", "Orange", "Owls", "Panthers", "Patriots", "Pirates", "Quakers", "Ramblers", "Rams", "Razorbacks", "Rebels", "Red Raiders", "Red Storm", "Redhawks", "Scarlet Knights", "Seminoles", "Shockers", "Sooners", "Spartans", "Sycamores", "Tar Heels", "Terrapins", "Tigers", "Trojans", "Utes", "Violets", "Wildcats", "Wolfpack", "Wolverines", "Yellow Jackets"]} | {"type": "object", "properties": {"nicknames": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/c86425f8-338b-4ffb-8b19-9c72cc593772/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Team appearances | Get a list of every team and the years they appeared in the Final Four. | 200 | Response | {"team_appearances": {"Arizona": ["1988", "1994", "1997", "2001"], "Arkansas": ["1941", "1945", "1978", "1990", "1994", "1995"], "Auburn": ["2019"], "Baylor": ["1948", "1950", "2021"], "Bradley": ["1950", "1954"], "Butler": ["2010", "2011"], "CCNY": ["1947", "1950"], "California": ["1946", "1959", "1960"], "Charlotte": ["1977"], "Cincinnati": ["1959", "1960", "1961", "1962", "1963", "1992"], "Colorado": ["1942", "1955"], "Dartmouth": ["1942", "1944"], "Dayton": ["1967"], "DePaul": ["1943", "1979"], "Drake": ["1969"], "Duke": ["1963", "1964", "1966", "1978", "1986", "1988", "1989", "1990", "1991", "1992", "1994", "1999", "2001", "2004", "2010", "2015", "2022"], "Duquesne": ["1940"], "Florida": ["1994", "2000", "2006", "2007", "2014"], "Florida State": ["1972"], "George Mason": ["2006"], "Georgetown": ["1943", "1982", "1984", "1985", "2007"], "Georgia": ["1983"], "Georgia Tech": ["1990", "2004"], "Gonzaga": ["2017", "2021"], "Holy Cross": ["1947", "1948"], "Houston": ["1967", "1968", "1982", "1983", "1984", "2021"], "Illinois": ["1949", "1951", "1952", "1989", "2005"], "Indiana": ["1940", "1953", "1973", "1976", "1981", "1987", "1992", "2002"], "Indiana State": ["1979"], "Iowa": ["1955", "1956", "1980"], "Iowa State": ["1944"], "Jacksonville": ["1970"], "Kansas": ["1940", "1952", "1953", "1957", "1971", "1974", "1986", "1988", "1991", "1993", "2002", "2003", "2008", "2012", "2018", "2022"], "Kansas State": ["1948", "1951", "1958", "1964"], "Kentucky": ["1942", "1948", "1949", "1951", "1958", "1966", "1975", "1978", "1984", "1993", "1996", "1997", "1998", "2011", "2012", "2014", "2015"], "LSU": ["1953", "1981", "1986", "2006"], "La Salle": ["1954", "1955"], "Louisville": ["1959", "1972", "1975", "1980", "1982", "1983", "1986", "2005", "2012", "2013"], "Loyola Chicago": ["1963", "2018"], "Marquette": ["1974", "1977", "2003"], "Maryland": ["2001", "2002"], "Memphis": ["1973", "1985", "2008"], "Michigan": ["1964", "1965", "1976", "1989", "1992", "1993", "2013", "2018"], "Michigan State": ["1957", "1979", "1999", "2000", "2001", "2005", "2009", "2010", "2015", "2019"], "Minnesota": ["1997"], "Mississippi State": ["1996"], "NC State": ["1950", "1974", "1983"], "NYU": ["1945", "1960"], "New Mexico State": ["1970"], "North Carolina": ["1946", "1957", "1967", "1968", "1969", "1972", "1977", "1981", "1982", "1991", "1993", "1995", "1997", "1998", "2000", "2005", "2008", "2009", "2016", "2017", "2022"], "Notre Dame": ["1978"], "Ohio State": ["1939", "1944", "1945", "1946", "1960", "1961", "1962", "1968", "1999", "2007", "2012"], "Oklahoma": ["1939", "1947", "1988", "2002", "2016"], "Oklahoma State": ["1945", "1946", "1949", "1951", "1995", "2004"], "Oregon": ["1939", "2017"], "Oregon State": ["1949", "1963"], "Penn": ["1979"], "Penn State": ["1954"], "Pittsburgh": ["1941"], "Princeton": ["1965"], "Providence": ["1973", "1987"], "Purdue": ["1969", "1980"], "Rutgers": ["1976"], "SMU": ["1956"], "Saint Joseph's": ["1961"], "San Francisco": ["1955", "1956", "1957"], "Santa Clara": ["1952"], "Seattle": ["1958"], "Seton Hall": ["1989"], "South Carolina": ["2017"], "St. Bonaventure": ["1970"], "St. John's": ["1952", "1985"], "Stanford": ["1942", "1998"], "Syracuse": ["1975", "1987", "1996", "2003", "2013", "2016"], "Temple": ["1956", "1958"], "Texas": ["1943", "1947", "2003"], "Texas Tech": ["2019"], "UCLA": ["1962", "1964", "1965", "1967", "1968", "1969", "1970", "1971", "1972", "1973", "1974", "1975", "1976", "1980", "1995", "2006", "2007", "2008", "2021"], "UConn": ["1999", "2004", "2009", "2011", "2014"], "UMass": ["1996"], "UNLV": ["1977", "1987", "1990", "1991"], "USC": ["1940", "1954"], "UTEP": ["1966"], "Utah": ["1944", "1961", "1966", "1998"], "VCU": ["2011"], "Villanova": ["1939", "1971", "1985", "2009", "2016", "2018", "2022"], "Virginia": ["1981", "1984", "2019"], "Wake Forest": ["1962"], "Washington": ["1953"], "Washington State": ["1941"], "West Virginia": ["1959", "2010"], "Western Kentucky": ["1971"], "Wichita State": ["1965", "2013"], "Wisconsin": ["1941", "2000", "2014", "2015"], "Wyoming": ["1943"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"team_appearances": {"type": "object", "properties": {"Arizona": {"type": "array", "items": {"type": "string"}}, "Arkansas": {"type": "array", "items": {"type": "string"}}, "Auburn": {"type": "array", "items": {"type": "string"}}, "Baylor": {"type": "array", "items": {"type": "string"}}, "Bradley": {"type": "array", "items": {"type": "string"}}, "Butler": {"type": "array", "items": {"type": "string"}}, "CCNY": {"type": "array", "items": {"type": "string"}}, "California": {"type": "array", "items": {"type": "string"}}, "Charlotte": {"type": "array", "items": {"type": "string"}}, "Cincinnati": {"type": "array", "items": {"type": "string"}}, "Colorado": {"type": "array", "items": {"type": "string"}}, "Dartmouth": {"type": "array", "items": {"type": "string"}}, "Dayton": {"type": "array", "items": {"type": "string"}}, "DePaul": {"type": "array", "items": {"type": "string"}}, "Drake": {"type": "array", "items": {"type": "string"}}, "Duke": {"type": "array", "items": {"type": "string"}}, "Duquesne": {"type": "array", "items": {"type": "string"}}, "Florida": {"type": "array", "items": {"type": "string"}}, "Florida State": {"type": "array", "items": {"type": "string"}}, "George Mason": {"type": "array", "items": {"type": "string"}}, "Georgetown": {"type": "array", "items": {"type": "string"}}, "Georgia": {"type": "array", "items": {"type": "string"}}, "Georgia Tech": {"type": "array", "items": {"type": "string"}}, "Gonzaga": {"type": "array", "items": {"type": "string"}}, "Holy Cross": {"type": "array", "items": {"type": "string"}}, "Houston": {"type": "array", "items": {"type": "string"}}, "Illinois": {"type": "array", "items": {"type": "string"}}, "Indiana": {"type": "array", "items": {"type": "string"}}, "Indiana State": {"type": "array", "items": {"type": "string"}}, "Iowa": {"type": "array", "items": {"type": "string"}}, "Iowa State": {"type": "array", "items": {"type": "string"}}, "Jacksonville": {"type": "array", "items": {"type": "string"}}, "Kansas": {"type": "array", "items": {"type": "string"}}, "Kansas State": {"type": "array", "items": {"type": "string"}}, "Kentucky": {"type": "array", "items": {"type": "string"}}, "LSU": {"type": "array", "items": {"type": "string"}}, "La Salle": {"type": "array", "items": {"type": "string"}}, "Louisville": {"type": "array", "items": {"type": "string"}}, "Loyola Chicago": {"type": "array", "items": {"type": "string"}}, "Marquette": {"type": "array", "items": {"type": "string"}}, "Maryland": {"type": "array", "items": {"type": "string"}}, "Memphis": {"type": "array", "items": {"type": "string"}}, "Michigan": {"type": "array", "items": {"type": "string"}}, "Michigan State": {"type": "array", "items": {"type": "string"}}, "Minnesota": {"type": "array", "items": {"type": "string"}}, "Mississippi State": {"type": "array", "items": {"type": "string"}}, "NC State": {"type": "array", "items": {"type": "string"}}, "NYU": {"type": "array", "items": {"type": "string"}}, "New Mexico State": {"type": "array", "items": {"type": "string"}}, "North Carolina": {"type": "array", "items": {"type": "string"}}, "Notre Dame": {"type": "array", "items": {"type": "string"}}, "Ohio State": {"type": "array", "items": {"type": "string"}}, "Oklahoma": {"type": "array", "items": {"type": "string"}}, "Oklahoma State": {"type": "array", "items": {"type": "string"}}, "Oregon": {"type": "array", "items": {"type": "string"}}, "Oregon State": {"type": "array", "items": {"type": "string"}}, "Penn": {"type": "array", "items": {"type": "string"}}, "Penn State": {"type": "array", "items": {"type": "string"}}, "Pittsburgh": {"type": "array", "items": {"type": "string"}}, "Princeton": {"type": "array", "items": {"type": "string"}}, "Providence": {"type": "array", "items": {"type": "string"}}, "Purdue": {"type": "array", "items": {"type": "string"}}, "Rutgers": {"type": "array", "items": {"type": "string"}}, "SMU": {"type": "array", "items": {"type": "string"}}, "Saint Joseph's": {"type": "array", "items": {"type": "string"}}, "San Francisco": {"type": "array", "items": {"type": "string"}}, "Santa Clara": {"type": "array", "items": {"type": "string"}}, "Seattle": {"type": "array", "items": {"type": "string"}}, "Seton Hall": {"type": "array", "items": {"type": "string"}}, "South Carolina": {"type": "array", "items": {"type": "string"}}, "St. Bonaventure": {"type": "array", "items": {"type": "string"}}, "St. John's": {"type": "array", "items": {"type": "string"}}, "Stanford": {"type": "array", "items": {"type": "string"}}, "Syracuse": {"type": "array", "items": {"type": "string"}}, "Temple": {"type": "array", "items": {"type": "string"}}, "Texas": {"type": "array", "items": {"type": "string"}}, "Texas Tech": {"type": "array", "items": {"type": "string"}}, "UCLA": {"type": "array", "items": {"type": "string"}}, "UConn": {"type": "array", "items": {"type": "string"}}, "UMass": {"type": "array", "items": {"type": "string"}}, "UNLV": {"type": "array", "items": {"type": "string"}}, "USC": {"type": "array", "items": {"type": "string"}}, "UTEP": {"type": "array", "items": {"type": "string"}}, "Utah": {"type": "array", "items": {"type": "string"}}, "VCU": {"type": "array", "items": {"type": "string"}}, "Villanova": {"type": "array", "items": {"type": "string"}}, "Virginia": {"type": "array", "items": {"type": "string"}}, "Wake Forest": {"type": "array", "items": {"type": "string"}}, "Washington": {"type": "array", "items": {"type": "string"}}, "Washington State": {"type": "array", "items": {"type": "string"}}, "West Virginia": {"type": "array", "items": {"type": "string"}}, "Western Kentucky": {"type": "array", "items": {"type": "string"}}, "Wichita State": {"type": "array", "items": {"type": "string"}}, "Wisconsin": {"type": "array", "items": {"type": "string"}}, "Wyoming": {"type": "array", "items": {"type": "string"}}}, "required": ["Arizona", "Arkansas", "Auburn", "Baylor", "Bradley", "Butler", "CCNY", "California", "Charlotte", "Cincinnati", "Colorado", "Dartmouth", "Dayton", "DePaul", "Drake", "Duke", "Duquesne", "Florida", "Florida State", "George Mason", "Georgetown", "Georgia", "Georgia Tech", "Gonzaga", "Holy Cross", "Houston", "Illinois", "Indiana", "Indiana State", "Iowa", "Iowa State", "Jacksonville", "Kansas", "Kansas State", "Kentucky", "LSU", "La Salle", "Louisville", "Loyola Chicago", "Marquette", "Maryland", "Memphis", "Michigan", "Michigan State", "Minnesota", "Mississippi State", "NC State", "NYU", "New Mexico State", "North Carolina", "Notre Dame", "Ohio State", "Oklahoma", "Oklahoma State", "Oregon", "Oregon State", "Penn", "Penn State", "Pittsburgh", "Princeton", "Providence", "Purdue", "Rutgers", "SMU", "Saint Joseph's", "San Francisco", "Santa Clara", "Seattle", "Seton Hall", "South Carolina", "St. Bonaventure", "St. John's", "Stanford", "Syracuse", "Temple", "Texas", "Texas Tech", "UCLA", "UConn", "UMass", "UNLV", "USC", "UTEP", "Utah", "VCU", "Villanova", "Virginia", "Wake Forest", "Washington", "Washington State", "West Virginia", "Western Kentucky", "Wichita State", "Wisconsin", "Wyoming"]}}, "required": ["team_appearances"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/713ee068-238e-413a-9595-244987d2c678/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Team championships by count | Get a list of teams ranked by total number of championships. | 200 | Response | {"team_championships_by_count": {"1": ["Arizona", "Arkansas", "Baylor", "CCNY", "California", "Georgetown", "Holy Cross", "La Salle", "Loyola Chicago", "Marquette", "Maryland", "Michigan", "Ohio State", "Oregon", "Stanford", "Syracuse", "UNLV", "UTEP", "Utah", "Virginia", "Wisconsin", "Wyoming"], "2": ["Cincinnati", "Florida", "Michigan State", "NC State", "Oklahoma State", "San Francisco"], "3": ["Louisville", "Villanova"], "4": ["Kansas", "UConn"], "5": ["Duke", "Indiana"], "6": ["North Carolina"], "8": ["Kentucky"], "11": ["UCLA"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"team_championships_by_count": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}, "6": {"type": "array", "items": {"type": "string"}}, "8": {"type": "array", "items": {"type": "string"}}, "11": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "11", "2", "3", "4", "5", "6", "8"]}}, "required": ["team_championships_by_count"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/0768ba90-1269-450a-8e97-559880938a73/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Coach appearances | Get a list of every coach along with the team and year of each Final Four appearance. | 200 | Response | {"coach_appearances": {"Adolph Rupp": ["Kentucky, 1942", "Kentucky, 1948", "Kentucky, 1949", "Kentucky, 1951", "Kentucky, 1958", "Kentucky, 1966"], "Al McGuire": ["Marquette, 1974", "Marquette, 1977"], "Alex Severance": ["Villanova, 1939"], "Alvin Julian": ["Holy Cross, 1947"], "Bebe Lee": ["Colorado, 1955"], "Ben Carnevale": ["North Carolina, 1946"], "Ben Howland": ["UCLA, 2006", "UCLA, 2007", "UCLA, 2008"], "Bill E. Foster": ["Duke, 1978"], "Bill Guthridge": ["North Carolina, 1998", "North Carolina, 2000"], "Bill Henderson": ["Baylor, 1948", "Baylor, 1950"], "Bill Hodges": ["Indiana State, 1979"], "Bill Self": ["Kansas, 2008", "Kansas, 2012", "Kansas, 2018", "Kansas, 2022"], "Billy Donovan": ["Florida, 2000", "Florida, 2006", "Florida, 2007", "Florida, 2014"], "Billy Tubbs": ["Oklahoma, 1988"], "Bo Ryan": ["Wisconsin, 2014", "Wisconsin, 2015"], "Bob Feerick": ["Santa Clara, 1952"], "Bob Huggins": ["Cincinnati, 1992", "West Virginia, 2010"], "Bob Knight": ["Indiana, 1973", "Indiana, 1976", "Indiana, 1981", "Indiana, 1987", "Indiana, 1992"], "Bob Weinhauer": ["Penn, 1979"], "Bobby Cremins": ["Georgia Tech, 1990"], "Bones McKinney": ["Wake Forest, 1962"], "Brad Stevens": ["Butler, 2010", "Butler, 2011"], "Branch McCracken": ["Indiana, 1940", "Indiana, 1953"], "Bruce Drake": ["Oklahoma, 1939", "Oklahoma, 1947"], "Bruce Pearl": ["Auburn, 2019"], "Bruce Weber": ["Illinois, 2005"], "Bucky O'Connor": ["Iowa, 1955", "Iowa, 1956"], "Bully Gilstrap": ["Texas, 1943"], "Butch van Breda Kolff": ["Princeton, 1965"], "Chick Davies": ["Duquesne, 1940"], "Chris Beard": ["Texas Tech, 2019"], "Clem Haskins": ["Minnesota, 1997"], "Dale Brown": ["LSU, 1981", "LSU, 1986"], "Dana Altman": ["Oregon, 2017"], "Dana Kirk": ["Memphis, 1985"], "Dave Gavitt": ["Providence, 1973"], "Dave Strack": ["Michigan, 1964", "Michigan, 1965"], "Dean Smith": ["North Carolina, 1967", "North Carolina, 1968", "North Carolina, 1969", "North Carolina, 1972", "North Carolina, 1977", "North Carolina, 1981", "North Carolina, 1982", "North Carolina, 1991", "North Carolina, 1993", "North Carolina, 1995", "North Carolina, 1997"], "Denny Crum": ["Louisville, 1972", "Louisville, 1975", "Louisville, 1980", "Louisville, 1982", "Louisville, 1983", "Louisville, 1986"], "Dick Bennett": ["Wisconsin, 2000"], "Dick Harp": ["Kansas, 1957"], "Digger Phelps": ["Notre Dame, 1978"], "Doc Carlson": ["Pittsburgh, 1941"], "Doc Hayes": ["SMU, 1956"], "Doggie Julian": ["Holy Cross, 1948"], "Don Donoher": ["Dayton, 1967"], "Don Haskins": ["UTEP, 1966"], "Earl Brown": ["Dartmouth, 1944"], "Ed Jucker": ["Cincinnati, 1963"], "Eddie Sutton": ["Arkansas, 1978", "Oklahoma State, 1995", "Oklahoma State, 2004"], "Edwin Jucker": ["Cincinnati, 1961", "Cincinnati, 1962"], "Elmer Gross": ["Penn State, 1954"], "Elmer Ripley": ["Georgetown, 1943"], "Eugene Lambert": ["Arkansas, 1945"], "Everett Case": ["NC State, 1950"], "Everett Dean": ["Stanford, 1942"], "Everett Shelton": ["Wyoming, 1943"], "Forddy Anderson": ["Bradley, 1950", "Bradley, 1954", "Michigan State, 1957"], "Forrest Allen": ["Kansas, 1940", "Kansas, 1952", "Kansas, 1953"], "Forrest Twogood": ["USC, 1954"], "Frank Martin": ["South Carolina, 2017"], "Frank McGuire": ["St. John's, 1952", "North Carolina, 1957"], "Fred Schaus": ["West Virginia, 1959"], "Fred Taylor": ["Ohio State, 1960", "Ohio State, 1961", "Ohio State, 1962", "Ohio State, 1968"], "Frosty Cox": ["Colorado, 1942"], "Gary Thompson": ["Wichita State, 1965"], "Gary Williams": ["Maryland, 2001", "Maryland, 2002"], "Gene Bartow": ["Memphis, 1973", "UCLA, 1976"], "George Ireland": ["Loyola Chicago, 1963"], "George King": ["Purdue, 1969"], "George Smith": ["Cincinnati, 1959", "Cincinnati, 1960"], "Glen Rose": ["Arkansas, 1941"], "Gregg Marshall": ["Wichita State, 2013"], "Guy Lewis": ["Houston, 1967", "Houston, 1968", "Houston, 1982", "Houston, 1983", "Houston, 1984"], "Hank Iba": ["Oklahoma State, 1945", "Oklahoma State, 1946"], "Harold Foster": ["Wisconsin, 1941"], "Harold Olsen": ["Ohio State, 1939", "Ohio State, 1944", "Ohio State, 1945", "Ohio State, 1946"], "Harry Combes": ["Illinois, 1949", "Illinois, 1951", "Illinois, 1952"], "Harry Litwack": ["Temple, 1956", "Temple, 1958"], "Harry Rabenhorst": ["Washington, 1953"], "Henry Iba": ["Oklahoma State, 1949", "Oklahoma State, 1951"], "Howard Cann": ["NYU, 1945"], "Howard Hobson": ["Oregon, 1939"], "Hubert Davis": ["North Carolina, 2022"], "Hugh Durham": ["Florida State, 1972", "Georgia, 1983"], "Jack Friel": ["Washington State, 1941"], "Jack Gardner": ["Kansas State, 1948", "Kansas State, 1951", "Utah, 1961", "Utah, 1966"], "Jack Gray": ["Texas, 1947"], "Jack Kraft": ["Villanova, 1971"], "Jack Ramsay": ["Saint Joseph's, 1961"], "Jay Wright": ["Villanova, 2009", "Villanova, 2016", "Villanova, 2018", "Villanova, 2022"], "Jerry Tarkanian": ["UNLV, 1977", "UNLV, 1987", "UNLV, 1990", "UNLV, 1991"], "Jim Boeheim": ["Syracuse, 1987", "Syracuse, 1996", "Syracuse, 2003", "Syracuse, 2013", "Syracuse, 2016"], "Jim Calhoun": ["UConn, 1999", "UConn, 2004", "UConn, 2009", "UConn, 2011"], "Jim Harrick": ["UCLA, 1995"], "Jim Larranaga": ["George Mason, 2006"], "Jim O'Brien": ["Ohio State, 1999"], "Jim Valvano": ["NC State, 1983"], "Joe B. Hall": ["Kentucky, 1975", "Kentucky, 1984"], "Joe Hall": ["Kentucky, 1978"], "Joe Williams": ["Jacksonville, 1970"], "John Beilein": ["Michigan, 2013", "Michigan, 2018"], "John Brady": ["LSU, 2006"], "John Calipari": ["UMass, 1996", "Memphis, 2008", "Kentucky, 2011", "Kentucky, 2012", "Kentucky, 2014", "Kentucky, 2015"], "John Castellani": ["Seattle, 1958"], "John Oldham": ["Western Kentucky, 1971"], "John Thompson": ["Georgetown, 1982", "Georgetown, 1984", "Georgetown, 1985"], "John Thompson III": ["Georgetown, 2007"], "John Wooden": ["UCLA, 1962", "UCLA, 1964", "UCLA, 1965", "UCLA, 1967", "UCLA, 1968", "UCLA, 1969", "UCLA, 1970", "UCLA, 1971", "UCLA, 1972", "UCLA, 1973", "UCLA, 1974", "UCLA, 1975"], "Johnny Orr": ["Michigan, 1976"], "Jud Heathcote": ["Michigan State, 1979"], "Kelvin Sampson": ["Oklahoma, 2002", "Houston, 2021"], "Ken Loeffler": ["La Salle, 1955"], "Kenneth Loeffler": ["La Salle, 1954"], "Kevin Ollie": ["UConn, 2014"], "Larry Brown": ["UCLA, 1980", "Kansas, 1986", "Kansas, 1988"], "Larry Weise": ["St. Bonaventure, 1970"], "Lee Rose": ["Charlotte, 1977", "Purdue, 1980"], "Lon Kruger": ["Florida, 1994", "Oklahoma, 2016"], "Lou Carnesecca": ["St. John's, 1985"], "Lou Henson": ["New Mexico State, 1970", "Illinois, 1989"], "Lou Rossini": ["NYU, 1960"], "Louis Menze": ["Iowa State, 1944"], "Lute Olson": ["Iowa, 1980", "Arizona, 1988", "Arizona, 1994", "Arizona, 1997", "Arizona, 2001"], "Mark Few": ["Gonzaga, 2017", "Gonzaga, 2021"], "Maury John": ["Drake, 1969"], "Mick Cronin": ["UCLA, 2021"], "Mike Davis": ["Indiana, 2002"], "Mike Krzyzewski": ["Duke, 1986", "Duke, 1988", "Duke, 1989", "Duke, 1990", "Duke, 1991", "Duke, 1992", "Duke, 1994", "Duke, 1999", "Duke, 2001", "Duke, 2004", "Duke, 2010", "Duke, 2015", "Duke, 2022"], "Mike Montgomery": ["Stanford, 1998"], "Nat Holman": ["CCNY, 1947", "CCNY, 1950"], "Nibs Price": ["California, 1946"], "Nolan Richardson": ["Arkansas, 1990", "Arkansas, 1994", "Arkansas, 1995"], "Norm Sloan": ["NC State, 1974"], "Ozzie Cowles": ["Dartmouth, 1942"], "P. J. Carlesimo": ["Seton Hall, 1989"], "Paul Hewitt": ["Georgia Tech, 2004"], "Peck Hickman": ["Louisville, 1959"], "Pete Newell": ["California, 1959", "California, 1960"], "Phil Woolpert": ["San Francisco, 1955", "San Francisco, 1956", "San Francisco, 1957"], "Porter Moser": ["Loyola Chicago, 2018"], "Ray Meyer": ["DePaul, 1943", "DePaul, 1979"], "Richard Williams": ["Mississippi State, 1996"], "Rick Barnes": ["Texas, 2003"], "Rick Majerus": ["Utah, 1998"], "Rick Pitino": ["Providence, 1987", "Kentucky, 1993", "Kentucky, 1996", "Kentucky, 1997", "Louisville, 2005", "Louisville, 2012", "Louisville, 2013"], "Rollie Massimino": ["Villanova, 1985"], "Roy Danforth": ["Syracuse, 1975"], "Roy Williams": ["Kansas, 1991", "Kansas, 1993", "Kansas, 2002", "Kansas, 2003", "North Carolina, 2005", "North Carolina, 2008", "North Carolina, 2009", "North Carolina, 2016", "North Carolina, 2017"], "Sam Barry": ["USC, 1940"], "Scott Drew": ["Baylor, 2021"], "Shaka Smart": ["VCU, 2011"], "Slats Gill": ["Oregon State, 1949", "Oregon State, 1963"], "Steve Fisher": ["Michigan, 1989", "Michigan, 1992", "Michigan, 1993"], "Ted Owens": ["Kansas, 1971", "Kansas, 1974"], "Terry Holland": ["Virginia, 1981", "Virginia, 1984"], "Tex Winter": ["Kansas State, 1958", "Kansas State, 1964"], "Thad Matta": ["Ohio State, 2007", "Ohio State, 2012"], "Tippy Dye": ["LSU, 1953"], "Tom Crean": ["Marquette, 2003"], "Tom Izzo": ["Michigan State, 1999", "Michigan State, 2000", "Michigan State, 2001", "Michigan State, 2005", "Michigan State, 2009", "Michigan State, 2010", "Michigan State, 2015", "Michigan State, 2019"], "Tom Young": ["Rutgers, 1976"], "Tony Bennett": ["Virginia, 2019"], "Tubby Smith": ["Kentucky, 1998"], "Vadal Peterson": ["Utah, 1944"], "Vic Bubas": ["Duke, 1963", "Duke, 1964", "Duke, 1966"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"coach_appearances": {"type": "object", "properties": {"Adolph Rupp": {"type": "array", "items": {"type": "string"}}, "Al McGuire": {"type": "array", "items": {"type": "string"}}, "Alex Severance": {"type": "array", "items": {"type": "string"}}, "Alvin Julian": {"type": "array", "items": {"type": "string"}}, "Bebe Lee": {"type": "array", "items": {"type": "string"}}, "Ben Carnevale": {"type": "array", "items": {"type": "string"}}, "Ben Howland": {"type": "array", "items": {"type": "string"}}, "Bill E. Foster": {"type": "array", "items": {"type": "string"}}, "Bill Guthridge": {"type": "array", "items": {"type": "string"}}, "Bill Henderson": {"type": "array", "items": {"type": "string"}}, "Bill Hodges": {"type": "array", "items": {"type": "string"}}, "Bill Self": {"type": "array", "items": {"type": "string"}}, "Billy Donovan": {"type": "array", "items": {"type": "string"}}, "Billy Tubbs": {"type": "array", "items": {"type": "string"}}, "Bo Ryan": {"type": "array", "items": {"type": "string"}}, "Bob Feerick": {"type": "array", "items": {"type": "string"}}, "Bob Huggins": {"type": "array", "items": {"type": "string"}}, "Bob Knight": {"type": "array", "items": {"type": "string"}}, "Bob Weinhauer": {"type": "array", "items": {"type": "string"}}, "Bobby Cremins": {"type": "array", "items": {"type": "string"}}, "Bones McKinney": {"type": "array", "items": {"type": "string"}}, "Brad Stevens": {"type": "array", "items": {"type": "string"}}, "Branch McCracken": {"type": "array", "items": {"type": "string"}}, "Bruce Drake": {"type": "array", "items": {"type": "string"}}, "Bruce Pearl": {"type": "array", "items": {"type": "string"}}, "Bruce Weber": {"type": "array", "items": {"type": "string"}}, "Bucky O'Connor": {"type": "array", "items": {"type": "string"}}, "Bully Gilstrap": {"type": "array", "items": {"type": "string"}}, "Butch van Breda Kolff": {"type": "array", "items": {"type": "string"}}, "Chick Davies": {"type": "array", "items": {"type": "string"}}, "Chris Beard": {"type": "array", "items": {"type": "string"}}, "Clem Haskins": {"type": "array", "items": {"type": "string"}}, "Dale Brown": {"type": "array", "items": {"type": "string"}}, "Dana Altman": {"type": "array", "items": {"type": "string"}}, "Dana Kirk": {"type": "array", "items": {"type": "string"}}, "Dave Gavitt": {"type": "array", "items": {"type": "string"}}, "Dave Strack": {"type": "array", "items": {"type": "string"}}, "Dean Smith": {"type": "array", "items": {"type": "string"}}, "Denny Crum": {"type": "array", "items": {"type": "string"}}, "Dick Bennett": {"type": "array", "items": {"type": "string"}}, "Dick Harp": {"type": "array", "items": {"type": "string"}}, "Digger Phelps": {"type": "array", "items": {"type": "string"}}, "Doc Carlson": {"type": "array", "items": {"type": "string"}}, "Doc Hayes": {"type": "array", "items": {"type": "string"}}, "Doggie Julian": {"type": "array", "items": {"type": "string"}}, "Don Donoher": {"type": "array", "items": {"type": "string"}}, "Don Haskins": {"type": "array", "items": {"type": "string"}}, "Earl Brown": {"type": "array", "items": {"type": "string"}}, "Ed Jucker": {"type": "array", "items": {"type": "string"}}, "Eddie Sutton": {"type": "array", "items": {"type": "string"}}, "Edwin Jucker": {"type": "array", "items": {"type": "string"}}, "Elmer Gross": {"type": "array", "items": {"type": "string"}}, "Elmer Ripley": {"type": "array", "items": {"type": "string"}}, "Eugene Lambert": {"type": "array", "items": {"type": "string"}}, "Everett Case": {"type": "array", "items": {"type": "string"}}, "Everett Dean": {"type": "array", "items": {"type": "string"}}, "Everett Shelton": {"type": "array", "items": {"type": "string"}}, "Forddy Anderson": {"type": "array", "items": {"type": "string"}}, "Forrest Allen": {"type": "array", "items": {"type": "string"}}, "Forrest Twogood": {"type": "array", "items": {"type": "string"}}, "Frank Martin": {"type": "array", "items": {"type": "string"}}, "Frank McGuire": {"type": "array", "items": {"type": "string"}}, "Fred Schaus": {"type": "array", "items": {"type": "string"}}, "Fred Taylor": {"type": "array", "items": {"type": "string"}}, "Frosty Cox": {"type": "array", "items": {"type": "string"}}, "Gary Thompson": {"type": "array", "items": {"type": "string"}}, "Gary Williams": {"type": "array", "items": {"type": "string"}}, "Gene Bartow": {"type": "array", "items": {"type": "string"}}, "George Ireland": {"type": "array", "items": {"type": "string"}}, "George King": {"type": "array", "items": {"type": "string"}}, "George Smith": {"type": "array", "items": {"type": "string"}}, "Glen Rose": {"type": "array", "items": {"type": "string"}}, "Gregg Marshall": {"type": "array", "items": {"type": "string"}}, "Guy Lewis": {"type": "array", "items": {"type": "string"}}, "Hank Iba": {"type": "array", "items": {"type": "string"}}, "Harold Foster": {"type": "array", "items": {"type": "string"}}, "Harold Olsen": {"type": "array", "items": {"type": "string"}}, "Harry Combes": {"type": "array", "items": {"type": "string"}}, "Harry Litwack": {"type": "array", "items": {"type": "string"}}, "Harry Rabenhorst": {"type": "array", "items": {"type": "string"}}, "Henry Iba": {"type": "array", "items": {"type": "string"}}, "Howard Cann": {"type": "array", "items": {"type": "string"}}, "Howard Hobson": {"type": "array", "items": {"type": "string"}}, "Hubert Davis": {"type": "array", "items": {"type": "string"}}, "Hugh Durham": {"type": "array", "items": {"type": "string"}}, "Jack Friel": {"type": "array", "items": {"type": "string"}}, "Jack Gardner": {"type": "array", "items": {"type": "string"}}, "Jack Gray": {"type": "array", "items": {"type": "string"}}, "Jack Kraft": {"type": "array", "items": {"type": "string"}}, "Jack Ramsay": {"type": "array", "items": {"type": "string"}}, "Jay Wright": {"type": "array", "items": {"type": "string"}}, "Jerry Tarkanian": {"type": "array", "items": {"type": "string"}}, "Jim Boeheim": {"type": "array", "items": {"type": "string"}}, "Jim Calhoun": {"type": "array", "items": {"type": "string"}}, "Jim Harrick": {"type": "array", "items": {"type": "string"}}, "Jim Larranaga": {"type": "array", "items": {"type": "string"}}, "Jim O'Brien": {"type": "array", "items": {"type": "string"}}, "Jim Valvano": {"type": "array", "items": {"type": "string"}}, "Joe B. Hall": {"type": "array", "items": {"type": "string"}}, "Joe Hall": {"type": "array", "items": {"type": "string"}}, "Joe Williams": {"type": "array", "items": {"type": "string"}}, "John Beilein": {"type": "array", "items": {"type": "string"}}, "John Brady": {"type": "array", "items": {"type": "string"}}, "John Calipari": {"type": "array", "items": {"type": "string"}}, "John Castellani": {"type": "array", "items": {"type": "string"}}, "John Oldham": {"type": "array", "items": {"type": "string"}}, "John Thompson": {"type": "array", "items": {"type": "string"}}, "John Thompson III": {"type": "array", "items": {"type": "string"}}, "John Wooden": {"type": "array", "items": {"type": "string"}}, "Johnny Orr": {"type": "array", "items": {"type": "string"}}, "Jud Heathcote": {"type": "array", "items": {"type": "string"}}, "Kelvin Sampson": {"type": "array", "items": {"type": "string"}}, "Ken Loeffler": {"type": "array", "items": {"type": "string"}}, "Kenneth Loeffler": {"type": "array", "items": {"type": "string"}}, "Kevin Ollie": {"type": "array", "items": {"type": "string"}}, "Larry Brown": {"type": "array", "items": {"type": "string"}}, "Larry Weise": {"type": "array", "items": {"type": "string"}}, "Lee Rose": {"type": "array", "items": {"type": "string"}}, "Lon Kruger": {"type": "array", "items": {"type": "string"}}, "Lou Carnesecca": {"type": "array", "items": {"type": "string"}}, "Lou Henson": {"type": "array", "items": {"type": "string"}}, "Lou Rossini": {"type": "array", "items": {"type": "string"}}, "Louis Menze": {"type": "array", "items": {"type": "string"}}, "Lute Olson": {"type": "array", "items": {"type": "string"}}, "Mark Few": {"type": "array", "items": {"type": "string"}}, "Maury John": {"type": "array", "items": {"type": "string"}}, "Mick Cronin": {"type": "array", "items": {"type": "string"}}, "Mike Davis": {"type": "array", "items": {"type": "string"}}, "Mike Krzyzewski": {"type": "array", "items": {"type": "string"}}, "Mike Montgomery": {"type": "array", "items": {"type": "string"}}, "Nat Holman": {"type": "array", "items": {"type": "string"}}, "Nibs Price": {"type": "array", "items": {"type": "string"}}, "Nolan Richardson": {"type": "array", "items": {"type": "string"}}, "Norm Sloan": {"type": "array", "items": {"type": "string"}}, "Ozzie Cowles": {"type": "array", "items": {"type": "string"}}, "P. J. Carlesimo": {"type": "array", "items": {"type": "string"}}, "Paul Hewitt": {"type": "array", "items": {"type": "string"}}, "Peck Hickman": {"type": "array", "items": {"type": "string"}}, "Pete Newell": {"type": "array", "items": {"type": "string"}}, "Phil Woolpert": {"type": "array", "items": {"type": "string"}}, "Porter Moser": {"type": "array", "items": {"type": "string"}}, "Ray Meyer": {"type": "array", "items": {"type": "string"}}, "Richard Williams": {"type": "array", "items": {"type": "string"}}, "Rick Barnes": {"type": "array", "items": {"type": "string"}}, "Rick Majerus": {"type": "array", "items": {"type": "string"}}, "Rick Pitino": {"type": "array", "items": {"type": "string"}}, "Rollie Massimino": {"type": "array", "items": {"type": "string"}}, "Roy Danforth": {"type": "array", "items": {"type": "string"}}, "Roy Williams": {"type": "array", "items": {"type": "string"}}, "Sam Barry": {"type": "array", "items": {"type": "string"}}, "Scott Drew": {"type": "array", "items": {"type": "string"}}, "Shaka Smart": {"type": "array", "items": {"type": "string"}}, "Slats Gill": {"type": "array", "items": {"type": "string"}}, "Steve Fisher": {"type": "array", "items": {"type": "string"}}, "Ted Owens": {"type": "array", "items": {"type": "string"}}, "Terry Holland": {"type": "array", "items": {"type": "string"}}, "Tex Winter": {"type": "array", "items": {"type": "string"}}, "Thad Matta": {"type": "array", "items": {"type": "string"}}, "Tippy Dye": {"type": "array", "items": {"type": "string"}}, "Tom Crean": {"type": "array", "items": {"type": "string"}}, "Tom Izzo": {"type": "array", "items": {"type": "string"}}, "Tom Young": {"type": "array", "items": {"type": "string"}}, "Tony Bennett": {"type": "array", "items": {"type": "string"}}, "Tubby Smith": {"type": "array", "items": {"type": "string"}}, "Vadal Peterson": {"type": "array", "items": {"type": "string"}}, "Vic Bubas": {"type": "array", "items": {"type": "string"}}}, "required": ["Adolph Rupp", "Al McGuire", "Alex Severance", "Alvin Julian", "Bebe Lee", "Ben Carnevale", "Ben Howland", "Bill E. Foster", "Bill Guthridge", "Bill Henderson", "Bill Hodges", "Bill Self", "Billy Donovan", "Billy Tubbs", "Bo Ryan", "Bob Feerick", "Bob Huggins", "Bob Knight", "Bob Weinhauer", "Bobby Cremins", "Bones McKinney", "Brad Stevens", "Branch McCracken", "Bruce Drake", "Bruce Pearl", "Bruce Weber", "Bucky O'Connor", "Bully Gilstrap", "Butch van Breda Kolff", "Chick Davies", "Chris Beard", "Clem Haskins", "Dale Brown", "Dana Altman", "Dana Kirk", "Dave Gavitt", "Dave Strack", "Dean Smith", "Denny Crum", "Dick Bennett", "Dick Harp", "Digger Phelps", "Doc Carlson", "Doc Hayes", "Doggie Julian", "Don Donoher", "Don Haskins", "Earl Brown", "Ed Jucker", "Eddie Sutton", "Edwin Jucker", "Elmer Gross", "Elmer Ripley", "Eugene Lambert", "Everett Case", "Everett Dean", "Everett Shelton", "Forddy Anderson", "Forrest Allen", "Forrest Twogood", "Frank Martin", "Frank McGuire", "Fred Schaus", "Fred Taylor", "Frosty Cox", "Gary Thompson", "Gary Williams", "Gene Bartow", "George Ireland", "George King", "George Smith", "Glen Rose", "Gregg Marshall", "Guy Lewis", "Hank Iba", "Harold Foster", "Harold Olsen", "Harry Combes", "Harry Litwack", "Harry Rabenhorst", "Henry Iba", "Howard Cann", "Howard Hobson", "Hubert Davis", "Hugh Durham", "Jack Friel", "Jack Gardner", "Jack Gray", "Jack Kraft", "Jack Ramsay", "Jay Wright", "Jerry Tarkanian", "Jim Boeheim", "Jim Calhoun", "Jim Harrick", "Jim Larranaga", "Jim O'Brien", "Jim Valvano", "Joe B. Hall", "Joe Hall", "Joe Williams", "John Beilein", "John Brady", "John Calipari", "John Castellani", "John Oldham", "John Thompson", "John Thompson III", "John Wooden", "Johnny Orr", "Jud Heathcote", "Kelvin Sampson", "Ken Loeffler", "Kenneth Loeffler", "Kevin Ollie", "Larry Brown", "Larry Weise", "Lee Rose", "Lon Kruger", "Lou Carnesecca", "Lou Henson", "Lou Rossini", "Louis Menze", "Lute Olson", "Mark Few", "Maury John", "Mick Cronin", "Mike Davis", "Mike Krzyzewski", "Mike Montgomery", "Nat Holman", "Nibs Price", "Nolan Richardson", "Norm Sloan", "Ozzie Cowles", "P. J. Carlesimo", "Paul Hewitt", "Peck Hickman", "Pete Newell", "Phil Woolpert", "Porter Moser", "Ray Meyer", "Richard Williams", "Rick Barnes", "Rick Majerus", "Rick Pitino", "Rollie Massimino", "Roy Danforth", "Roy Williams", "Sam Barry", "Scott Drew", "Shaka Smart", "Slats Gill", "Steve Fisher", "Ted Owens", "Terry Holland", "Tex Winter", "Thad Matta", "Tippy Dye", "Tom Crean", "Tom Izzo", "Tom Young", "Tony Bennett", "Tubby Smith", "Vadal Peterson", "Vic Bubas"]}}, "required": ["coach_appearances"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/0449ae12-8a6a-4ca2-9aaf-dcc8626c0351/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Team appearances by count | Get a list of team appearances in the Final Four ranked by count. | 200 | Response | {"team_appearances_by_count": {"1": ["Auburn", "Charlotte", "Dayton", "Drake", "Duquesne", "Florida State", "George Mason", "Georgia", "Indiana State", "Iowa State", "Jacksonville", "Minnesota", "Mississippi State", "New Mexico State", "Notre Dame", "Penn", "Penn State", "Pittsburgh", "Princeton", "Rutgers", "SMU", "Saint Joseph's", "Santa Clara", "Seattle", "Seton Hall", "South Carolina", "St. Bonaventure", "Texas Tech", "UMass", "UTEP", "VCU", "Wake Forest", "Washington", "Washington State", "Western Kentucky", "Wyoming"], "2": ["Bradley", "Butler", "CCNY", "Colorado", "Dartmouth", "DePaul", "Georgia Tech", "Gonzaga", "Holy Cross", "La Salle", "Loyola Chicago", "Maryland", "NYU", "Oregon", "Oregon State", "Providence", "Purdue", "St. John's", "Stanford", "Temple", "USC", "West Virginia", "Wichita State"], "3": ["Baylor", "California", "Iowa", "Marquette", "Memphis", "NC State", "San Francisco", "Texas", "Virginia"], "4": ["Arizona", "Kansas State", "LSU", "UNLV", "Utah", "Wisconsin"], "5": ["Florida", "Georgetown", "Illinois", "Oklahoma", "UConn"], "6": ["Arkansas", "Cincinnati", "Houston", "Oklahoma State", "Syracuse"], "7": ["Villanova"], "8": ["Indiana", "Michigan"], "10": ["Louisville", "Michigan State"], "11": ["Ohio State"], "16": ["Kansas"], "17": ["Duke", "Kentucky"], "19": ["UCLA"], "21": ["North Carolina"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"team_appearances_by_count": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}, "6": {"type": "array", "items": {"type": "string"}}, "7": {"type": "array", "items": {"type": "string"}}, "8": {"type": "array", "items": {"type": "string"}}, "10": {"type": "array", "items": {"type": "string"}}, "11": {"type": "array", "items": {"type": "string"}}, "16": {"type": "array", "items": {"type": "string"}}, "17": {"type": "array", "items": {"type": "string"}}, "19": {"type": "array", "items": {"type": "string"}}, "21": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "10", "11", "16", "17", "19", "2", "21", "3", "4", "5", "6", "7", "8"]}}, "required": ["team_appearances_by_count"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/4644c059-fe54-4b89-bff1-8aa9cd1bca94/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Coach championships by count | Get a list of coaches ranked by total number of championships. | 200 | Response | {"coach_championships_by_count": {"1": ["Al McGuire", "Alvin Julian", "Don Haskins", "Everett Dean", "Everett Shelton", "Forrest Allen", "Frank McGuire", "Fred Taylor", "Gary Williams", "George Ireland", "Harold Foster", "Howard Hobson", "Jerry Tarkanian", "Jim Boeheim", "Jim Harrick", "Jim Valvano", "Joe Hall", "John Calipari", "John Thompson", "Jud Heathcote", "Kenneth Loeffler", "Kevin Ollie", "Larry Brown", "Lute Olson", "Nat Holman", "Nolan Richardson", "Norm Sloan", "Pete Newell", "Rollie Massimino", "Scott Drew", "Steve Fisher", "Tom Izzo", "Tony Bennett", "Tubby Smith", "Vadal Peterson"], "2": ["Bill Self", "Billy Donovan", "Branch McCracken", "Dean Smith", "Denny Crum", "Edwin Jucker", "Hank Iba", "Jay Wright", "Phil Woolpert", "Rick Pitino"], "3": ["Bob Knight", "Jim Calhoun", "Roy Williams"], "4": ["Adolph Rupp"], "5": ["Mike Krzyzewski"], "10": ["John Wooden"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"coach_championships_by_count": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}, "10": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "10", "2", "3", "4", "5"]}}, "required": ["coach_championships_by_count"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/12af50be-b86c-4e6b-b7cf-b7ce38055227/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Coach appearances by count | Get a list of coach appearances in the Final Four ranked by count. | 200 | Response | {"coach_appearances_by_count": {"1": ["Alex Severance", "Alvin Julian", "Bebe Lee", "Ben Carnevale", "Bill E. Foster", "Bill Hodges", "Billy Tubbs", "Bob Feerick", "Bob Weinhauer", "Bobby Cremins", "Bones McKinney", "Bruce Pearl", "Bruce Weber", "Bully Gilstrap", "Butch van Breda Kolff", "Chick Davies", "Chris Beard", "Clem Haskins", "Dana Altman", "Dana Kirk", "Dave Gavitt", "Dick Bennett", "Dick Harp", "Digger Phelps", "Doc Carlson", "Doc Hayes", "Doggie Julian", "Don Donoher", "Don Haskins", "Earl Brown", "Ed Jucker", "Elmer Gross", "Elmer Ripley", "Eugene Lambert", "Everett Case", "Everett Dean", "Everett Shelton", "Forrest Twogood", "Frank Martin", "Fred Schaus", "Frosty Cox", "Gary Thompson", "George Ireland", "George King", "Glen Rose", "Gregg Marshall", "Harold Foster", "Harry Rabenhorst", "Howard Cann", "Howard Hobson", "Hubert Davis", "Jack Friel", "Jack Gray", "Jack Kraft", "Jack Ramsay", "Jim Harrick", "Jim Larranaga", "Jim O'Brien", "Jim Valvano", "Joe Hall", "Joe Williams", "John Brady", "John Castellani", "John Oldham", "John Thompson III", "Johnny Orr", "Jud Heathcote", "Ken Loeffler", "Kenneth Loeffler", "Kevin Ollie", "Larry Weise", "Lou Carnesecca", "Lou Rossini", "Louis Menze", "Maury John", "Mick Cronin", "Mike Davis", "Mike Montgomery", "Nibs Price", "Norm Sloan", "Ozzie Cowles", "P. J. Carlesimo", "Paul Hewitt", "Peck Hickman", "Porter Moser", "Richard Williams", "Rick Barnes", "Rick Majerus", "Rollie Massimino", "Roy Danforth", "Sam Barry", "Scott Drew", "Shaka Smart", "Tippy Dye", "Tom Crean", "Tom Young", "Tony Bennett", "Tubby Smith", "Vadal Peterson"], "2": ["Al McGuire", "Bill Guthridge", "Bill Henderson", "Bo Ryan", "Bob Huggins", "Brad Stevens", "Branch McCracken", "Bruce Drake", "Bucky O'Connor", "Dale Brown", "Dave Strack", "Edwin Jucker", "Frank McGuire", "Gary Williams", "Gene Bartow", "George Smith", "Hank Iba", "Harry Litwack", "Henry Iba", "Hugh Durham", "Joe B. Hall", "John Beilein", "Kelvin Sampson", "Lee Rose", "Lon Kruger", "Lou Henson", "Mark Few", "Nat Holman", "Pete Newell", "Ray Meyer", "Slats Gill", "Ted Owens", "Terry Holland", "Tex Winter", "Thad Matta"], "3": ["Ben Howland", "Eddie Sutton", "Forddy Anderson", "Forrest Allen", "Harry Combes", "John Thompson", "Larry Brown", "Nolan Richardson", "Phil Woolpert", "Steve Fisher", "Vic Bubas"], "4": ["Bill Self", "Billy Donovan", "Fred Taylor", "Harold Olsen", "Jack Gardner", "Jay Wright", "Jerry Tarkanian", "Jim Calhoun"], "5": ["Bob Knight", "Guy Lewis", "Jim Boeheim", "Lute Olson"], "6": ["Adolph Rupp", "Denny Crum", "John Calipari"], "7": ["Rick Pitino"], "8": ["Tom Izzo"], "9": ["Roy Williams"], "11": ["Dean Smith"], "12": ["John Wooden"], "13": ["Mike Krzyzewski"]}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"coach_appearances_by_count": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}, "6": {"type": "array", "items": {"type": "string"}}, "7": {"type": "array", "items": {"type": "string"}}, "8": {"type": "array", "items": {"type": "string"}}, "9": {"type": "array", "items": {"type": "string"}}, "11": {"type": "array", "items": {"type": "string"}}, "12": {"type": "array", "items": {"type": "string"}}, "13": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "11", "12", "13", "2", "3", "4", "5", "6", "7", "8", "9"]}}, "required": ["coach_appearances_by_count"]} |
9e115a47-6d77-450e-aae2-0ff89633ec98/3865e6e8-f804-4948-bef7-25569819d290/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Detail | Get the full Final Four data set for the given year. | 200 | Response | {"year": "1999", "season": "1998-1999", "champion": "UConn", "champion_nickname": "Huskies", "champion_coach": "Jim Calhoun", "champion_record": "34-2", "championship_score": "77-74", "runner_up": "Duke", "runner_up_nickname": "Blue Devils", "runner_up_coach": "Mike Krzyzewski", "semifinalist_1": "Michigan State", "semifinalist_1_nickname": "Spartans", "semifinalist_1_coach": "Tom Izzo", "semifinalist_2": "Ohio State", "semifinalist_2_nickname": "Buckeyes", "semifinalist_2_coach": "Jim O'Brien", "mop": "Richard Hamilton, UConn", "location": "St. Petersburg, FL", "venue": "Tropicana Field"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "champion": {"type": "string"}, "champion_nickname": {"type": "string"}, "champion_coach": {"type": "string"}, "champion_record": {"type": "string"}, "championship_score": {"type": "string"}, "runner_up": {"type": "string"}, "runner_up_nickname": {"type": "string"}, "runner_up_coach": {"type": "string"}, "semifinalist_1": {"type": "string"}, "semifinalist_1_nickname": {"type": "string"}, "semifinalist_1_coach": {"type": "string"}, "semifinalist_2": {"type": "string"}, "semifinalist_2_nickname": {"type": "string"}, "semifinalist_2_coach": {"type": "string"}, "mop": {"type": "string"}, "location": {"type": "string"}, "venue": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/021102ed-cfb6-493b-a4f4-853de2ca5124/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of schools | Get a list of every Final Four school sorted alphabetically. | 200 | Response | {"schools": ["Arizona", "Arkansas", "Auburn", "Baylor", "Bradley", "Butler", "CCNY", "California", "Charlotte", "Cincinnati", "Colorado", "Dartmouth", "Dayton", "DePaul", "Drake", "Duke", "Duquesne", "Florida", "Florida State", "George Mason", "Georgetown", "Georgia", "Georgia Tech", "Gonzaga", "Holy Cross", "Houston", "Illinois", "Indiana", "Indiana State", "Iowa", "Iowa State", "Jacksonville", "Kansas", "Kansas State", "Kentucky", "LSU", "La Salle", "Louisville", "Loyola Chicago", "Marquette", "Maryland", "Memphis", "Michigan", "Michigan State", "Minnesota", "Mississippi State", "NC State", "NYU", "New Mexico State", "North Carolina", "Notre Dame", "Ohio State", "Oklahoma", "Oklahoma State", "Oregon", "Oregon State", "Penn", "Penn State", "Pittsburgh", "Princeton", "Providence", "Purdue", "Rutgers", "SMU", "Saint Joseph's", "San Francisco", "Santa Clara", "Seattle", "Seton Hall", "South Carolina", "St. Bonaventure", "St. John's", "Stanford", "Syracuse", "Temple", "Texas", "Texas Tech", "UCLA", "UConn", "UMass", "UNLV", "USC", "UTEP", "Uconn", "Utah", "VCU", "Villanova", "Virginia", "Wake Forest", "Washington", "Washington State", "West Virginia", "Western Kentucky", "Wichita State", "Wisconsin", "Wyoming"]} | {"type": "object", "properties": {"schools": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/b6c5eaa1-88f1-46fa-97ae-24ecf618604f/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of teams | Get a list of every Final Four team sorted alphabetically. | 200 | Response | {"teams": ["Arizona Wildcats", "Arkansas Razorbacks", "Auburn Tigers", "Baylor Bears", "Bradley Braves", "Butler Bulldogs", "CCNY Beavers", "California Golden Bears", "Charlotte 49ers", "Cincinnati Bearcats", "Colorado Buffaloes", "Dartmouth Big Green", "Dayton Flyers", "DePaul Blue Demons", "Drake Bulldogs", "Duke Blue Devils", "Duquesne Dukes", "Florida Gators", "Florida State Seminoles", "George Mason Patriots", "Georgetown Hoyas", "Georgia Bulldogs", "Georgia Tech Yellow Jackets", "Gonzaga Bulldogs", "Holy Cross Crusaders", "Houston Cougars", "Illinois Fighting Illini", "Indiana Hoosiers", "Indiana State Sycamores", "Iowa Hawkeyes", "Iowa State Cyclones", "Jacksonville Dolphins", "Kansas Jayhawks", "Kansas State Wildcats", "Kentucky Wildcats", "LSU Tigers", "La Salle Explorers", "Louisville Cardinals", "Loyola Chicago Ramblers", "Marquette Golden Eagles", "Maryland Terrapins", "Memphis Tigers", "Michigan State Spartans", "Michigan Wolverines", "Minnesota Golden Gophers", "Mississippi State Bulldogs", "NC State Wolfpack", "NYU Violets", "New Mexico State Aggies", "North Carolina Tar Heels", "Notre Dame Fighting Irish", "Ohio State Buckeyes", "Oklahoma Sooners", "Oklahoma State Cowboys", "Oregon Ducks", "Oregon State Beavers", "Penn Quakers", "Penn State Nittany Lions", "Pittsburgh Panthers", "Princeton Tigers", "Providence Friars", "Purdue Boilermakers", "Rutgers Scarlet Knights", "SMU Mustangs", "Saint Joseph's Hawks", "San Francisco Dons", "Santa Clara Broncos", "Seattle Redhawks", "Seton Hall Pirates", "South Carolina Gamecocks", "St. Bonaventure Bonnies", "St. John's Red Storm", "Stanford Cardinal", "Syracuse Orange", "Temple Owls", "Texas Longhorns", "Texas Tech Red Raiders", "UCLA Bruins", "UConn Huskies", "UMass Minutemen", "UNLV Rebels", "USC Trojans", "UTEP Miners", "Uconn Huskies", "Utah Utes", "VCU Rams", "Villanova Wildcats", "Virginia Cavaliers", "Wake Forest Demon Deacons", "Washington Huskies", "Washington State Cougars", "West Virginia Mountaineers", "Western Kentucky Hilltoppers", "Wichita State Shockers", "Wisconsin Badgers", "Wyoming Cowboys"]} | {"type": "object", "properties": {"teams": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/9c92bfc4-e6ed-4ad5-a808-cee85dde4c3e/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of locations | Get a list of every Final Four location sorted alphabetically. | 200 | Response | {"locations": ["Albuquerque, NM", "Arlington, TX", "Atlanta, GA", "Charlotte, NC", "College Park, MD", "Dallas, TX", "Denver, CO", "Detroit, MI", "East Rutherford, NJ", "Evanston, IL", "Greensboro, NC", "Houston, TX", "Indianapolis, IN", "Kansas City, MO", "Lexington, KY", "Los Angeles, CA", "Louisville, KY", "Minneapolis, MN", "New Orleans, LA", "New York, NY", "Philadelphia, PA", "Phoenix, AZ", "Portland, OR", "Salt Lake City, UT", "San Antonio, TX", "San Diego, CA", "San Francisco, CA", "Seattle, WA", "St. Louis, MO", "St. Petersburg, FL"]} | {"type": "object", "properties": {"locations": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/08513fa7-9eb0-4fb8-87f8-c853b69f3f87/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of venues | Get a list of every Final Four venue sorted alphabetically. | 200 | Response | {"venues": ["AT&T Stadium", "Alamadome", "Astrodome", "Caesars Superdome", "Charlotte Coliseum", "Checkerdome", "Cole Field House", "Continental Airlines Arena", "Cow Palace", "Edward Jones Dome", "Ford Field", "Freedom Hall", "Georgia Dome", "Greensboro Coliseum", "Hec Edmunson Pavilion", "Hoosier Dome", "Kemper Arena", "Kingdome", "Louisiana Superdome", "Lucas Oil Stadium", "Madison Square Garden", "Market Square Arena", "McGaw Hall", "McNichols Sports Arena", "Memorial Coliseum", "Memorial Sports Arena", "Metrodome", "Municipal Auditorium", "NRG Stadium", "Patten Gymnasium", "RCA Dome", "Reliant Stadium", "Reunion Arena", "Rupp Arena", "San Diego Sports Arena", "Special Events Center", "St. Louis Arena", "The Omni", "The Spectrum", "Tropicana Field", "U.S. Bank Stadium", "University Arena", "University of Phoenix Stadium", "Williams Arena"]} | {"type": "object", "properties": {"venues": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/7e3be127-a18b-4134-abc3-d0ed99859fc1/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of MOPs | Get a list of every Final Four Most Outstanding Player sorted alphabetically. | 200 | Response | {"mops": ["Akeem Olajuwon, Houston*", "Alex Groza, Kentucky", "Anderson Hunt, UNLV", "Anthony Davis, Kentucky", "Arnie Ferrin, Utah", "Art Heyman, Duke*", "B. H. Born, Kansas*", "Bill Bradley, Princeton*", "Bill Russell, San Francisco", "Bill Spivey, Kentucky", "Bill Walton, UCLA", "Bob Kurland, Oklahoma State", "Bobby Hurley, Duke", "Butch Lee, Marquette", "Carmelo Anthony, Syracuse", "Christian Laettner, Duke", "Clyde Lovellette, Kansas", "Corey Brewer, Florida", "Corliss Williamson, Arkansas", "Danny Manning, Kansas", "Darrell Griffith, Louisville", "David Thompson, NC State", "Donald Williams, North Carolina", "Donte DiVincenzo, Villanova", "Earvin \"Magic\" Johnson, Michigan State", "Ed O'Bannon, UCLA", "Ed Pinckney, Villanova", "Elgin Baylor, Seattle*", "Emeka Okafor, Connecticut", "George Kaftan, Holy Cross", "Glen Rice, Michigan", "Hal Lear, Temple*", "Howard Porter, Villanova", "Howie Dallmar, Stanford", "Irwin Dambrot, CCNY", "Isiah Thomas, Indiana", "Jack Givens, Kentucky", "James Worthy, North Carolina", "Jared Butler, Baylor", "Jeff Sheppard, Kentucky", "Jerry Chambers, Utah*", "Jerry Lucas, Ohio State", "Jerry Lucas, Ohio State*", "Jerry West, West Virginia*", "Jimmy Hull, Ohio State*", "Joakim Noah, Florida", "Joel Berry II, North Carolina", "John Kotz, Wisconsin", "Juan Dixon, Maryland", "Keith Smart, Indiana", "Kemba Walker, Connecticut", "Ken Sailors, Wyoming", "Kent Benson, Indiana", "Kyle Guy, Virginia", "Kyle Singler, Duke", "Lew Alcindor, UCLA", "Luke Hancock, Louisville", "Mario Chalmers, Kansas", "Marvin Huffman, Indiana", "Mateen Cleaves, Michigan State", "Miles Simon, Arizona", "Ochai Agbaji, Kansas", "Patrick Ewing, Georgetown", "Paul Hogue, Cincinnati", "Pervis Ellison, Louisville", "Richard Hamilton, Connecticut", "Richard Washington, UCLA", "Ryan Arcidiacono, Villanova", "Sean May, North Carolina", "Shabazz Napier, Connecticut", "Shane Battier, Duke", "Sidney Wicks, UCLA", "Tom Gola, La Salle", "Tony Delk, Kentucky", "Tyus Jones, Duke", "Walt Hazzard, UCLA", "Wayne Ellington, North Carolina", "Wilt Chamberlain, Kansas*"]} | {"type": "object", "properties": {"mops": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/ed90176f-263f-4bb4-b03e-9d16e8a8ceff/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of coaches | Get a list of every Final Four coach sorted alphabetically. | 200 | Response | {"coaches": ["Adolph Rupp", "Al McGuire", "Alex Severance", "Alvin Julian", "Bebe Lee", "Ben Carnevale", "Ben Howland", "Bill E. Foster", "Bill Guthridge", "Bill Henderson", "Bill Hodges", "Bill Self", "Billy Donovan", "Billy Tubbs", "Bo Ryan", "Bob Feerick", "Bob Huggins", "Bob Knight", "Bob Weinhauer", "Bobby Cremins", "Bones McKinney", "Brad Stevens", "Branch McCracken", "Bruce Drake", "Bruce Pearl", "Bruce Weber", "Bucky O'Connor", "Bully Gilstrap", "Butch van Breda Kolff", "Chick Davies", "Chris Beard", "Clem Haskins", "Dale Brown", "Dana Altman", "Dana Kirk", "Dave Gavitt", "Dave Strack", "Dean Smith", "Denny Crum", "Dick Bennett", "Dick Harp", "Digger Phelps", "Doc Carlson", "Doc Hayes", "Doggie Julian", "Don Donoher", "Don Haskins", "Earl Brown", "Ed Jucker", "Eddie Sutton", "Edwin Jucker", "Elmer Gross", "Elmer Ripley", "Eugene Lambert", "Everett Case", "Everett Dean", "Everett Shelton", "Forddy Anderson", "Forrest Allen", "Forrest Twogood", "Frank Martin", "Frank McGuire", "Fred Schaus", "Fred Taylor", "Frosty Cox", "Gary Thompson", "Gary Williams", "Gene Bartow", "George Ireland", "George King", "George Smith", "Glen Rose", "Gregg Marshall", "Guy Lewis", "Hank Iba", "Harold Foster", "Harold Olsen", "Harry Combes", "Harry Litwack", "Harry Rabenhorst", "Henry Iba", "Howard Cann", "Howard Hobson", "Hubert Davis", "Hugh Durham", "Jack Friel", "Jack Gardner", "Jack Gray", "Jack Kraft", "Jack Ramsay", "Jay Wright", "Jerry Tarkanian", "Jim Boeheim", "Jim Calhoun", "Jim Harrick", "Jim Larranaga", "Jim O'Brien", "Jim Valvano", "Joe B. Hall", "Joe Hall", "Joe Williams", "John Beilein", "John Brady", "John Calipari", "John Castellani", "John Oldham", "John Thompson", "John Thompson III", "John Wooden", "Johnny Orr", "Jud Heathcote", "Kelvin Sampson", "Ken Loeffler", "Kenneth Loeffler", "Kevin Ollie", "Larry Brown", "Larry Weise", "Lee Rose", "Lon Kruger", "Lou Carnesecca", "Lou Henson", "Lou Rossini", "Louis Menze", "Lute Olson", "Mark Few", "Maury John", "Mick Cronin", "Mike Davis", "Mike Krzyzewski", "Mike Montgomery", "Nat Holman", "Nibs Price", "Nolan Richardson", "Norm Sloan", "Ozzie Cowles", "P. J. Carlesimo", "Paul Hewitt", "Peck Hickman", "Pete Newell", "Phil Woolpert", "Porter Moser", "Ray Meyer", "Richard Williams", "Rick Barnes", "Rick Majerus", "Rick Pitino", "Rollie Massimino", "Roy Danforth", "Roy Williams", "Sam Barry", "Scott Drew", "Shaka Smart", "Slats Gill", "Steve Fisher", "Ted Owens", "Terry Holland", "Tex Winter", "Thad Matta", "Tippy Dye", "Tom Crean", "Tom Izzo", "Tom Young", "Tony Bennett", "Tubby Smith", "Vadal Peterson", "Vic Bubas"]} | {"type": "object", "properties": {"coaches": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/832f6dad-b707-455a-add0-9ed05e439acb/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | List of champions | Get a list of every National Champion sorted alphabetically. | 200 | Response | {"champions": ["Arizona Wildcats", "Arkansas Razorbacks", "Baylor Bears", "CCNY Beavers", "California Golden Bears", "Cincinnati Bearcats", "Duke Blue Devils", "Florida Gators", "Georgetown Hoyas", "Holy Cross Crusaders", "Indiana Hoosiers", "Kansas Jayhawks", "Kentucky Wildcats", "La Salle Explorers", "Louisville Cardinals", "Loyola Chicago Ramblers", "Marquette Golden Eagles", "Maryland Terrapins", "Michigan State Spartans", "Michigan Wolverines", "NC State Wolfpack", "North Carolina Tar Heels", "Ohio State Buckeyes", "Oklahoma State Cowboys", "Oregon Ducks", "San Francisco Dons", "Stanford Cardinal", "Syracuse Orange", "UCLA Bruins", "UNLV Rebels", "UTEP Miners", "Uconn Huskies", "Utah Utes", "Villanova Wildcats", "Virginia Cavaliers", "Wisconsin Badgers", "Wyoming Cowboys"]} | {"type": "object", "properties": {"champions": {"type": "array", "items": {"type": "string"}}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/89c6a328-8af2-4ffa-ab32-ec57a92aee59/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Runner-up | Get runner-up team data for the given year. | 200 | Response | {"year": "1959", "season": "1958-1959", "runner_up": "West Virginia", "nickname": "Mountaineers", "coach": "Fred Schaus", "championship_score": "71-70"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "runner_up": {"type": "string"}, "nickname": {"type": "string"}, "coach": {"type": "string"}, "championship_score": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/553da6ff-f9a8-4cda-95cd-d016f2039b9d/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Schools | Get number of schools in tournament for the given year. | 200 | Response | {"year": "1959", "season": "1958-1959", "schools": "23"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "schools": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/eb5bd724-0f2c-4e8d-8f85-eee14906413a/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Summary | Get the basic Final Four data set for the given year. | 200 | Response | {"year": "1980", "season": "1979-1980", "champion": "Louisville", "final_four": "Louisville, UCLA, Purdue, Iowa", "mop": "Darrell Griffith, Louisville", "number_one_seeds": "Syracuse, LSU, Kentucky, DePaul"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "champion": {"type": "string"}, "final_four": {"type": "string"}, "mop": {"type": "string"}, "number_one_seeds": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/24555e61-a1f9-417d-b29b-5d3ad66e3925/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Location | Get the Final Four city and venue for the given year. | 200 | Response | {"year": "1952", "season": "1951-1952", "location": "Seattle, WA", "venue": "Hec Edmunson Pavilion"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "location": {"type": "string"}, "venue": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/8530d57e-2211-4b56-a941-f57cc70ae06c/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Fourth Place | Get fourth place team data (only available between 1946 and 1981) for the given year. | 200 | Response | {"year": "1962", "season": "1961-1962", "fourth_place": "UCLA", "nickname": "Bruins", "coach": "John Wooden"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "fourth_place": {"type": "string"}, "nickname": {"type": "string"}, "coach": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/15f59803-6fcb-4168-8bd4-2de7431b53b0/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Third Place | Get third place data (only available between 1946 and 1981) for the given year. | 200 | Response | {"year": "1970", "season": "1969-1970", "third_place": "New Mexico State", "nickname": "Aggies", "coach": "Larry Weise"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "third_place": {"type": "string"}, "nickname": {"type": "string"}, "coach": {"type": "string"}}} |
9e115a47-6d77-450e-aae2-0ff89633ec98/b7b18ecf-f7a1-4819-8f4f-b26815f7fbd8/0/0 | NCAA Final Four | Historical data for every NCAA Men's Final Four. Get champions, coaches, records, seeds, final four teams and more in JSON format. | 7.9 | Final Four | Get the Final Four teams for the given year. | 200 | Response | {"year": "1966", "season": "1965-1966", "final_four": "UTEP, Kentucky, Duke, Utah"} | {"type": "object", "properties": {"year": {"type": "string"}, "season": {"type": "string"}, "final_four": {"type": "string"}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/5af454c2-b5c5-493d-ae4c-a0e97ba4a705/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Match list | Get list of the match by date. Status: Played, Playing, Fixture, Cancelled | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/1c050ee9-5677-4136-a0f4-43830dcf2781/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Match data | Get match data by match uuid. Ex.: season, competition, area, form, h2h, table, lineup, commentaries, teams stats | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/286f9a62-801d-4f46-a710-8be876d8510b/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Match list alt | Get list of the match by date. Status: Played, Playing, Fixture, Cancelled | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/eeb03368-34f0-413a-93d0-70b166ecf75f/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Search multi | Search team, player by query | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/1585f129-5474-4646-a936-372772a0ce30/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Explore competitions | Get a list of competitions by area_id | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/c5deff99-8983-4193-ae50-0feb3b9f1201/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Competition data | Get competition data | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/f25f16ca-d4e3-4e72-838a-5622a61d091f/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Team Squad statistics | Get Team Squad statistics | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/370ac089-18de-4968-a3c1-3e8088e9307d/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Players photo | Get player photo | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/1ff93aba-9045-4d09-aa9d-33cd04a16202/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Competition image | Get competition image | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/7c6a0a29-dc1b-4009-bb91-08737f06523e/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Team image | Get team image | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/b61c4343-0500-4ca2-907f-b0eed83a8ba8/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Area flag | Get area flag by area_uid | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/932f1c95-8625-4376-bc62-9a2afc00ab80/1/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Player data | Get player data. Ex.: clubs career, internationals career | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
087abad6-ac4e-4d70-9be8-2c90fb0fe5a7/74217de9-1600-499f-b13d-e84e40a2168c/0/0 | Soccerway Feed | Soccerway Feed API covers over 1000 football leagues & cups from 134+ countries. It is the world’s largest football database. Data without delay, instant update. Historical data since 1901. You can make a site like soccerway.com, aiscore.com, tipsscore.com Support: [email protected] / t.me/api_tipsters | 9.8 | Team Data | Get team data. Squad, staff, tables, matches, rankings | 422 | null | {"detail": [{"loc": [], "msg": "", "type": ""}]} | {"title": "HTTPValidationError", "type": "object", "properties": {"detail": {"title": "Detail", "type": "array", "items": {"title": "ValidationError", "required": ["loc", "msg", "type"], "type": "object", "properties": {"loc": {"title": "Location", "type": "array", "items": {"anyOf": [{"type": "string"}, {"type": "integer"}]}}, "msg": {"title": "Message", "type": "string"}, "type": {"title": "Error Type", "type": "string"}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/9ad403c6-0dc0-43b3-b970-670d5a3d4b71/2/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Team Depth Charts | Returns player depth charts for a team | 200 | 200 Response | {"data": {"NFL": [{"Buffalo Bills": {"C": {"1": {"id": 1392, "player": "Mitch Morse"}, "2": {"id": 436, "player": "Spencer Long"}}, "K": {"1": {"id": 1707, "player": "Steven Hauschka"}}, "P": {"1": {"id": 3302, "player": "Corey Bojorquez"}}, "CB": {"1": {"id": 2763, "player": "Tre'Davious White"}, "2": {"id": 3366, "player": "Levi Wallace"}, "3": {"id": 3356, "player": "Taron Johnson"}, "4": {"id": 903, "player": "Kevin Johnson"}, "5": {"id": 3359, "player": "Siran Neal"}}, "DE": {"1": {"id": 24, "player": "Jerry Hughes"}, "2": {"id": 430, "player": "Trent Murphy"}, "3": {"id": 28, "player": "Shaq Lawson"}, "4": {"id": 4279, "player": "Darryl Johnson"}}, "DT": {"1": {"id": 4286, "player": "Ed Oliver"}, "2": {"id": 1180, "player": "Star Lotulelei"}, "3": {"id": 3362, "player": "Harrison Phillips"}, "4": {"id": 96, "player": "Jordan Phillips"}}, "FB": {"1": {"id": 1104, "player": "Patrick DiMarco"}}, "FS": {"1": {"id": 790, "player": "Micah Hyde"}}, "LG": {"1": {"id": 1070, "player": "Quinton Spain"}, "2": {"id": 3350, "player": "Ike Boettger"}}, "LT": {"1": {"id": 2734, "player": "Dion Dawkins"}, "2": {"id": 4773, "player": "Ryan Bates"}}, "QB": {"1": {"id": 3348, "player": "Josh Allen"}, "2": {"id": 1758, "player": "Matt Barkley"}}, "RB": {"1": {"id": 946, "player": "Frank Gore"}, "2": {"id": 4288, "player": "Devin Singletary"}, "3": {"id": 1037, "player": "T.J. Yeldon"}}, "RG": {"1": {"id": 1427, "player": "Jon Feliciano"}}, "RT": {"1": {"id": 4277, "player": "Cody Ford"}, "2": {"id": 432, "player": "Ty Nsekhe"}, "3": {"id": 2818, "player": "Conor McDermott"}, "4": {"id": 162, "player": "LaAdrian Waddle"}}, "SS": {"1": {"id": 602, "player": "Jordan Poyer"}, "2": {"id": 1174, "player": "Dean Marlowe"}, "3": {"id": 4280, "player": "Jaquan Johnson"}}, "TE": {"1": {"id": 520, "player": "Tyler Kroft"}, "2": {"id": 1460, "player": "Lee Smith"}, "3": {"id": 4282, "player": "Dawson Knox"}, "4": {"id": 4289, "player": "Tommy Sweeney"}, "5": {"id": 2733, "player": "Jason Croom"}}, "3RB": {"1": {"id": 4288, "player": "Devin Singletary"}, "2": {"id": 1037, "player": "T.J. Yeldon"}}, "GLB": {"1": {"id": 946, "player": "Frank Gore"}}, "MLB": {"1": {"id": 3353, "player": "Tremaine Edmunds"}, "2": {"id": 210, "player": "Julian Stanford"}, "3": {"id": 4274, "player": "Tyrel Dodson"}}, "SLB": {"1": {"id": 2745, "player": "Matt Milano"}, "2": {"id": 1576, "player": "Maurice Alexander"}, "3": {"id": 4281, "player": "Vosean Joseph"}}, "WLB": {"1": {"id": 2, "player": "Lorenzo Alexander"}, "2": {"id": 4084, "player": "Corey Thompson"}}, "WR1": {"1": {"id": 1532, "player": "John Brown"}, "2": {"id": 3355, "player": "Robert Foster"}}, "WR2": {"1": {"id": 2740, "player": "Zay Jones"}, "2": {"id": 757, "player": "Andre Roberts"}}, "WR3": {"1": {"id": 225, "player": "Cole Beasley"}, "2": {"id": 2997, "player": "Isaiah McKenzie"}}, "team_id": 1}, "New York Jets": {"C": {"1": {"id": 1170, "player": "Ryan Kalil"}, "2": {"id": 957, "player": "Jonotthan Harrison"}}, "P": {"1": {"id": 191, "player": "Lac Edwards"}}, "CB": {"1": {"id": 1607, "player": "Trumaine Johnson"}, "2": {"id": 1143, "player": "Brian Poole"}, "3": {"id": 221, "player": "Darryl Roberts"}, "4": {"id": 2692, "player": "Arthur Maulet"}}, "DE": {"1": {"id": 219, "player": "Leonard Williams"}, "2": {"id": 933, "player": "Henry Anderson"}, "3": {"id": 3880, "player": "Nathan Shepherd"}, "4": {"id": 1909, "player": "Bronson Kaufusi"}, "5": {"id": 4741, "player": "Kyle Phillips"}}, "FS": {"1": {"id": 2844, "player": "Marcus Maye"}, "2": {"id": 222, "player": "Rontez Miles"}}, "LG": {"1": {"id": 1456, "player": "Kelechi Osemele"}, "2": {"id": 464, "player": "Alex Lewis"}}, "LT": {"1": {"id": 987, "player": "Kelvin Beachum"}, "2": {"id": 213, "player": "Brent Qvale"}}, "NT": {"1": {"id": 4748, "player": "Quinnen Williams"}, "2": {"id": 214, "player": "Steve McLendon"}, "3": {"id": 3872, "player": "Foley Fatukasi"}}, "QB": {"1": {"id": 3871, "player": "Sam Darnold"}, "2": {"id": 1343, "player": "Trevor Siemian"}}, "RB": {"1": {"id": 1881, "player": "Le'Veon Bell"}, "2": {"id": 803, "player": "Ty Montgomery"}, "3": {"id": 202, "player": "Bilal Powell"}, "4": {"id": 3870, "player": "Trenton Cannon"}}, "RG": {"1": {"id": 223, "player": "Brian Winters"}, "2": {"id": 1100, "player": "Tom Compton"}}, "RT": {"1": {"id": 212, "player": "Brandon Shell"}, "2": {"id": 4734, "player": "Chuma Edoga"}}, "SS": {"1": {"id": 2826, "player": "Jamal Adams"}}, "TE": {"1": {"id": 3875, "player": "Chris Herndon"}, "2": {"id": 896, "player": "Ryan Griffin"}, "3": {"id": 1908, "player": "Daniel Brown"}, "4": {"id": 4747, "player": "Trevon Wesco"}}, "3RB": {"1": {"id": 803, "player": "Ty Montgomery"}, "2": {"id": 1881, "player": "Le'Veon Bell"}}, "GLB": {"1": {"id": 1881, "player": "Le'Veon Bell"}}, "ILB": {"1": {"id": 446, "player": "C.J. Mosley"}, "2": {"id": 74, "player": "Neville Hewitt"}, "3": {"id": 4732, "player": "Blake Cashman"}}, "OLB": {"1": {"id": 193, "player": "Jordan Jenkins"}, "2": {"id": 726, "player": "Brandon Copeland"}, "3": {"id": 2814, "player": "Harvey Langi"}, "4": {"id": 3877, "player": "Frankie Luvu"}, "5": {"id": 2515, "player": "Tarell Basham"}}, "WR1": {"1": {"id": 171, "player": "Robby Anderson"}}, "WR2": {"1": {"id": 181, "player": "Quincy Enunwa"}, "2": {"id": 665, "player": "Josh Bellamy"}}, "WR3": {"1": {"id": 400, "player": "Jamison Crowder"}}, "team_id": 2}}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"Buffalo Bills": {"type": "object", "properties": {"C": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "K": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "P": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "CB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "5": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "DE": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "DT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "FB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "FS": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "LG": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "LT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "QB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RG": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "SS": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "TE": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "5": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "3RB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "GLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "MLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "SLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR1": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR2": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR3": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "team_id": {"type": "integer"}}}, "New York Jets": {"type": "object", "properties": {"C": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "P": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "CB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "DE": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "5": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "FS": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "LG": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "LT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "NT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "QB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RG": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "RT": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "SS": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "TE": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "3RB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "GLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "ILB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "OLB": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "3": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "4": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "5": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR1": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR2": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}, "2": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "WR3": {"type": "object", "properties": {"1": {"type": "object", "properties": {"id": {"type": "integer"}, "player": {"type": "string"}}}}}, "team_id": {"type": "integer"}}}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/930a190c-377a-4861-b82f-7a6895ff50b8/1/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Player Injuries | Returns a record of each player's injury on a team | 200 | 200 Response | {"data": {"NFL": [{"team": "Buffalo Bills", "team_id": 1, "injuries": [{"injury": "Hamstring", "player": "Devin Singletary", "returns": "Week To Week", "player_id": "4288", "date_injured": "2019-9-29"}, {"injury": "Concussion", "player": "Josh Allen", "returns": "Week To Week", "player_id": "3348", "date_injured": "2019-9-29"}, {"injury": "Knee", "player": "Harrison Phillips", "returns": "Out For Season", "player_id": "3362", "date_injured": "2019-9-23"}, {"injury": "Ankle", "player": "Tyler Kroft", "returns": "Week To Week", "player_id": "520", "date_injured": "2019-9-19"}, {"injury": "Quadriceps", "player": "Andre Roberts", "returns": "Week To Week", "player_id": "757", "date_injured": "2019-9-6"}, {"injury": "Hand", "player": "Jason Croom", "returns": "Out Indefinitely", "player_id": "2733", "date_injured": "2019-8-31"}, {"injury": "-", "player": "Tyrel Dodson", "returns": "Return Week 9", "player_id": "4274", "date_injured": "2019-8-31"}, {"injury": "Quadriceps", "player": "LaAdrian Waddle", "returns": "Out For Season", "player_id": "162", "date_injured": "2019-8-5"}, {"injury": "-", "player": "Quinton Spain", "returns": "Status Uncertain", "player_id": "1070", "date_injured": "2019-5-28"}, {"injury": "-", "player": "Vosean Joseph", "returns": "Out For Season", "player_id": "4281", "date_injured": "2019-4-27"}]}, {"team": "New York Jets", "team_id": 2, "injuries": [{"injury": "Knee", "player": "Kelechi Osemele", "returns": "Likely Will Not Play", "player_id": "1456", "date_injured": "2019-9-20"}, {"injury": "Ankle", "player": "Quinnen Williams", "returns": "Day To Day", "player_id": "4748", "date_injured": "2019-9-17"}, {"injury": "Ankle", "player": "Trevor Siemian", "returns": "Out For Season", "player_id": "1343", "date_injured": "2019-9-17"}, {"injury": "Calf", "player": "Jordan Jenkins", "returns": "Status Uncertain", "player_id": "193", "date_injured": "2019-9-16"}, {"injury": "Hamstring", "player": "Demaryius Thomas", "returns": "Week To Week", "player_id": "1349", "date_injured": "2019-9-16"}, {"injury": "Groin", "player": "C.J. Mosley", "returns": "Week To Week", "player_id": "446", "date_injured": "2019-9-14"}, {"injury": "Illness", "player": "Sam Darnold", "returns": "Week To Week", "player_id": "3871", "date_injured": "2019-9-13"}, {"injury": "Neck", "player": "Quincy Enunwa", "returns": "Out For Season", "player_id": "181", "date_injured": "2019-9-11"}, {"injury": "-", "player": "Nathan Shepherd", "returns": "Return Week 9", "player_id": "3880", "date_injured": "2019-9-10"}, {"injury": "Knee", "player": "Brent Qvale", "returns": "IR", "player_id": "213", "date_injured": "2019-9-2"}, {"injury": "-", "player": "Brandon Copeland", "returns": "Return Week 5", "player_id": "726", "date_injured": "2019-8-21"}, {"injury": "Knee", "player": "Avery Williamson", "returns": "Out For Season", "player_id": "1085", "date_injured": "2019-8-16"}, {"injury": "Shoulder", "player": "Brian Winters", "returns": "Week 1", "player_id": "223", "date_injured": "2019-8-11"}, {"injury": "-", "player": "Chris Herndon", "returns": "Week 6", "player_id": "3875", "date_injured": "2019-7-12"}, {"injury": "-", "player": "Jalin Moore", "returns": "", "player_id": "5048", "date_injured": "2019-4-28"}, {"injury": "Knee surgery", "player": "Brandon Shell", "returns": "Questionable For Week 1", "player_id": "212", "date_injured": "2018-12-19"}]}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"team": {"type": "string"}, "team_id": {"type": "integer"}, "injuries": {"type": "array", "items": {"type": "object", "properties": {"injury": {"type": "string"}, "player": {"type": "string"}, "returns": {"type": "string"}, "player_id": {"type": "string"}, "date_injured": {"type": "string"}}}}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/80581af2-4b96-4ccf-97a7-abe6b2658b32/1/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Player Season Statistics | Returns Player Season Statistics | 200 | 200 Response | {"data": {"NFL": [{"player_id": 55, "player": "Robert Woods", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 2, "receptions": 26, "fumbles_lost": 0, "games_played": 4, "rushing_long": 20, "rushing_yards": 43, "receiving_long": 37, "receiving_yards": 307, "rushing_attempts": 5, "DK_fantasy_points": 122, "rushing_touchdowns": 0, "receiving_touchdowns": 0, "DK_fantasy_points_per_game": 30}, "postseason": null}, {"player_id": 485, "player": "Eric Weddle", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 34, "games_played": 4}, "postseason": null}, {"player_id": 541, "player": "Andrew Whitworth", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 2, "games_played": 1}, "postseason": null}, {"player_id": 796, "player": "Clay Matthews", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 5, "tackles": 14, "games_played": 4}, "postseason": null}, {"player_id": 937, "player": "Austin Blythe", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"games_played": 1, "fumbles_recoveries": 1}, "postseason": null}, {"player_id": 997, "player": "Dante Fowler", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 2, "tackles": 16, "games_played": 4}, "postseason": null}, {"player_id": 1206, "player": "Brandin Cooks", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 1, "receptions": 19, "fumbles_lost": 0, "games_played": 4, "rushing_long": 8, "rushing_yards": 10, "receiving_long": 57, "receiving_yards": 296, "rushing_attempts": 2, "DK_fantasy_points": 111, "rushing_touchdowns": 0, "receiving_touchdowns": 1, "DK_fantasy_points_per_game": 27}, "postseason": null}, {"player_id": 1341, "player": "Aqib Talib", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 11, "games_played": 4}, "postseason": null}, {"player_id": 1388, "player": "Marcus Peters", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 8, "games_played": 4, "interceptions": 1}, "postseason": null}, {"player_id": 1581, "player": "Aaron Donald", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 1, "tackles": 10, "games_played": 4}, "postseason": null}, {"player_id": 1589, "player": "Malcolm Brown", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 1, "receptions": 1, "fumbles_lost": 0, "games_played": 4, "rushing_long": 17, "rushing_yards": 111, "receiving_long": 10, "receiving_yards": 10, "rushing_attempts": 25, "DK_fantasy_points": 50, "rushing_touchdowns": 2, "receiving_touchdowns": 0, "DK_fantasy_points_per_game": 12}, "postseason": null}, {"player_id": 1592, "player": "Todd Gurley", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"sacks": 0, "tackles": 1, "receptions": 11, "fumbles_lost": 0, "games_played": 4, "rushing_long": 25, "rushing_yards": 219, "receiving_long": 12, "receiving_yards": 62, "rushing_attempts": 49, "DK_fantasy_points": 114, "rushing_touchdowns": 3, "receiving_touchdowns": 0, "DK_fantasy_points_per_game": 28}, "postseason": null}, {"player_id": 1594, "player": "Jared Goff", "team": "Los Angeles Rams", "team_id": 8, "regular_season": {"fumbles": 4, "completions": 111, "fumbles_lost": 3, "games_played": 4, "rushing_long": 8, "passer_rating": 160.3, "passing_yards": 1254, "rushing_yards": 14, "passing_attempts": 173, "rushing_attempts": 12, "DK_fantasy_points": 144, "passing_touchdowns": 6, "rushing_touchdowns": 1, "passing_interceptions": 6, "DK_fantasy_points_per_game": 36}, "postseason": null}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"player_id": {"type": "integer"}, "player": {"type": "string"}, "team": {"type": "string"}, "team_id": {"type": "integer"}, "regular_season": {"type": "object"}, "postseason": {"type": "null"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/77c1221e-58d8-4572-a90a-8ddcba4da167/0/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Player Information | This endpoint returns player demographic information | 200 | 200 Response | {"data": {"NFL": [{"player_id": 55, "player": "Robert Woods", "team": "Los Angeles Rams", "team_id": 8, "number": 17, "status": "ACT", "position": "WR", "position_category": "OFF", "height": "6'0\"", "weight": 195, "age": "April 10, 1992", "college": "USC", "img": "2d98fd1e-5744-5709-b1e7-3f0a4d63609b.png", "all_star": null}, {"player_id": 236, "player": "Lance Dunbar", "team": "Los Angeles Rams", "team_id": 8, "number": 25, "status": "INACT", "position": "RB", "position_category": "OFF", "height": "5'8\"", "weight": 187, "age": "January 25, 1990", "college": "North Texas", "img": null, "all_star": null}, {"player_id": 485, "player": "Eric Weddle", "team": "Los Angeles Rams", "team_id": 8, "number": 32, "status": "INACT", "position": "FS", "position_category": "DEF", "height": "5'11\"", "weight": 195, "age": "January 4, 1985", "college": "Utah", "img": null, "all_star": null}, {"player_id": 541, "player": "Andrew Whitworth", "team": "Los Angeles Rams", "team_id": 8, "number": 77, "status": "ACT", "position": "OT", "position_category": "OFF", "height": "6'7\"", "weight": 330, "age": "December 12, 1981", "college": "LSU", "img": null, "all_star": null}, {"player_id": 796, "player": "Clay Matthews", "team": "Los Angeles Rams", "team_id": 8, "number": 52, "status": "ACT", "position": "OLB", "position_category": "DEF", "height": "6'3\"", "weight": 255, "age": "May 14, 1986", "college": "USC", "img": null, "all_star": null}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object"}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/20f47fb1-f1a8-471c-8cf0-ca48b592cb99/2/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Team Season Statistics | Returns statistics for teams | 200 | 200 Response | {"data": {"NFL": [{"team_id": 1, "team": "Buffalo Bills", "regular_season": {"sacks": 7, "points": 76, "safeties": 0, "penalties": 31, "turnovers": 10, "first_downs": 95, "total_plays": 274, "total_yards": 1549, "games_played": 4, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 960, "penalty_yards": 251, "punts_blocked": 0, "rushing_yards": 589, "DK_fantasy_points": 60, "defense_touchdowns": 0, "defense_interceptions": 5, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 0, "fumble_return_touchdowns": 0, "defense_fumble_recoveries": 3, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 1, "two_point_conversion_succeeded": 1, "points_against_defense_special_teams": 55, "DK_fantasy_points_per_game": 15}, "postseason": null, "bye": "6"}, {"team_id": 2, "team": "New York Jets", "regular_season": {"sacks": 5, "points": 33, "safeties": 1, "penalties": 25, "turnovers": 3, "first_downs": 36, "total_plays": 172, "total_yards": 590, "games_played": 3, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 393, "penalty_yards": 223, "punts_blocked": 0, "rushing_yards": 197, "DK_fantasy_points": 78, "defense_touchdowns": 3, "defense_interceptions": 4, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 2, "fumble_return_touchdowns": 1, "defense_fumble_recoveries": 3, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 1, "two_point_conversion_succeeded": 1, "points_against_defense_special_teams": 70, "DK_fantasy_points_per_game": 26}, "postseason": null, "bye": "4"}, {"team_id": 3, "team": "Detroit Lions", "regular_season": {"sacks": 9, "points": 97, "safeties": 0, "penalties": 34, "turnovers": 6, "first_downs": 87, "total_plays": 271, "total_yards": 1550, "games_played": 4, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 1, "passing_yards": 1068, "penalty_yards": 239, "punts_blocked": 0, "rushing_yards": 482, "DK_fantasy_points": 68, "defense_touchdowns": 0, "defense_interceptions": 2, "kick_return_touchdowns": 1, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 0, "fumble_return_touchdowns": 0, "defense_fumble_recoveries": 6, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 0, "two_point_conversion_succeeded": 0, "points_against_defense_special_teams": 89, "DK_fantasy_points_per_game": 17}, "postseason": null, "bye": "5"}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"team_id": {"type": "integer"}, "team": {"type": "string"}, "regular_season": {"type": "object", "properties": {"sacks": {"type": "integer"}, "points": {"type": "integer"}, "safeties": {"type": "integer"}, "penalties": {"type": "integer"}, "turnovers": {"type": "integer"}, "first_downs": {"type": "integer"}, "total_plays": {"type": "integer"}, "total_yards": {"type": "integer"}, "games_played": {"type": "integer"}, "blocked_kicks": {"type": "integer"}, "blocked_punts": {"type": "integer"}, "kicks_blocked": {"type": "integer"}, "passing_yards": {"type": "integer"}, "penalty_yards": {"type": "integer"}, "punts_blocked": {"type": "integer"}, "rushing_yards": {"type": "integer"}, "DK_fantasy_points": {"type": "integer"}, "defense_touchdowns": {"type": "integer"}, "defense_interceptions": {"type": "integer"}, "kick_return_touchdowns": {"type": "integer"}, "punt_return_touchdowns": {"type": "integer"}, "blocked_kick_touchdowns": {"type": "integer"}, "blocked_punt_touchdowns": {"type": "integer"}, "interception_touchdowns": {"type": "integer"}, "fumble_return_touchdowns": {"type": "integer"}, "defense_fumble_recoveries": {"type": "integer"}, "field_goal_return_touchdowns": {"type": "integer"}, "two_point_conversion_returns": {"type": "integer"}, "two_point_conversion_attempts": {"type": "integer"}, "two_point_conversion_succeeded": {"type": "integer"}, "points_against_defense_special_teams": {"type": "integer"}, "DK_fantasy_points_per_game": {"type": "integer"}}}, "postseason": {"type": "null"}, "bye": {"type": "string"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/499dcc46-827e-4da9-b5c6-340ea262845d/1/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Team Information | This endpoint returns team information | 200 | 200 Response | {"data": {"NFL": [{"team_id": 1, "team": "Buffalo Bills", "abbrv": "BUF", "mascot": "Bills", "conf": "American Football Conference - East", "location": "Orchard Park, New York", "city": "Orchard Park", "state": "New York", "arena": "Ralph Wilson Stadium", "country": "United States", "latitude": 42.774, "longitude": -78.787, "field": "turf", "postal_code": "14127-2237", "dome": 0}, {"team_id": 2, "team": "New York Jets", "abbrv": "NYJ", "mascot": "Jets", "conf": "American Football Conference - East", "location": "East Rutherford, New Jersey", "city": "East Rutherford", "state": "New Jersey", "arena": "MetLife Stadium", "country": "United States", "latitude": 40.813528, "longitude": -74.074361, "field": "turf", "postal_code": "07073-5100", "dome": 0}, {"team_id": 3, "team": "Detroit Lions", "abbrv": "DET", "mascot": "Lions", "conf": "National Football Conference - North", "location": "Detroit, Michigan", "city": "Detroit", "state": "Michigan", "arena": "Ford Field", "country": "United States", "latitude": 42.34, "longitude": -83.045556, "field": "turf", "postal_code": "48226-2229", "dome": 1}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"team_id": {"type": "integer"}, "team": {"type": "string"}, "abbrv": {"type": "string"}, "mascot": {"type": "string"}, "conf": {"type": "string"}, "location": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "arena": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "field": {"type": "string"}, "postal_code": {"type": "string"}, "dome": {"type": "integer"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/b528a295-a97e-47d9-bac9-345325a7deb4/1/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Live Game Data | This endpoint provides real-time game box scores. | 200 | 200 Response | {"data": {"NFL": [{"week": 4, "sport": "NFL", "season": "2019-2020", "status": "completed", "game_ID": "20190929-11-21", "full_box": {"current": {"Down": null, "poss": "", "field": "", "Quarter": "F", "RedZone": null, "Distance": null, "YardLine": null, "Possession": null, "TimeRemaining": null, "YardLineTerritory": null}, "away_team": {"abbrv": "WSH", "score": 3, "mascot": "Redskins", "record": "0-4-0", "team_id": 11, "team_stats": {"sacks": 0, "safeties": 0, "penalties": {"total": 12, "yards": 58}, "turnovers": 4, "first_downs": 8, "total_plays": 48, "total_yards": 176, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 121, "punts_blocked": 0, "rushing_yards": 55, "DK_fantasy_points": 9, "defense_touchdowns": 0, "defense_interceptions": 2, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 0, "fumble_return_touchdowns": 0, "defense_fumble_recoveries": 2, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 0, "two_point_conversion_succeeded": 0, "points_against_defense_special_teams": 18}, "division_name": "National Football Conference - East", "quarter_scores": {"1": 0, "2": 3, "3": 0, "4": 0}}, "home_team": {"abbrv": "NYG", "score": 24, "mascot": "Giants", "record": "2-2-0", "team_id": 21, "team_stats": {"sacks": 3, "safeties": 0, "penalties": {"total": 5, "yards": 45}, "turnovers": 4, "first_downs": 24, "total_plays": 68, "total_yards": 389, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 225, "punts_blocked": 0, "rushing_yards": 164, "DK_fantasy_points": 24, "defense_touchdowns": 1, "defense_interceptions": 4, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 1, "fumble_return_touchdowns": 0, "defense_fumble_recoveries": 0, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 0, "two_point_conversion_succeeded": 0, "points_against_defense_special_teams": 3}, "division_name": "National Football Conference - East", "quarter_scores": {"1": 7, "2": 10, "3": 7, "4": 0}}}, "game_time": "Sun, 29 Sep 2019 17:00:00 GMT", "event_name": null, "game_arena": "MetLife Stadium", "player_box": {"away_team": {"286": {"sacks": 0, "player": "Landon Collins", "status": "ACT", "tackles": 9, "position": "SS", "position_category": "DEF"}, "369": {"player": "Wendell Smallwood", "status": "ACT", "position": "RB", "receptions": 1, "fumbles_lost": 0, "receiving_long": 14, "receiving_yards": 14, "DK_fantasy_points": 2.4, "position_category": "OFF", "receiving_touchdowns": 0, "two_point_conversion_rush_attempts": 1, "two_point_conversion_rush_succeeded": 1}, "394": {"player": "Vernon Davis", "status": "ACT", "position": "TE", "receptions": 1, "fumbles_lost": 0, "receiving_long": 5, "receiving_yards": 5, "DK_fantasy_points": 1.5, "position_category": "OFF", "receiving_touchdowns": 0, "two_point_conversion_reception_succeeded": 1}, "401": {"sacks": 0, "player": "Deshazor Everett", "status": "ACT", "tackles": 3, "position": "DB", "position_category": "DEF"}, "404": {"sacks": 0, "player": "Quinton Dunbar", "status": "ACT", "tackles": 3, "position": "CB", "interceptions": 2, "position_category": "DEF"}, "409": {"player": "Dustin Hopkins", "status": "ACT", "position": "K", "field_goals_long": 21, "field_goals_made": 1, "DK_fantasy_points": 3, "extra_points_made": 0, "position_category": "ST", "field_goal_distances": [21], "field_goals_attempted": 1, "extra_points_attempted": 0}, "415": {"sacks": 0, "player": "Ryan Kerrigan", "status": "ACT", "tackles": 3, "position": "OLB", "position_category": "DEF"}, "422": {"sacks": 0, "player": "Josh Norman", "status": "ACT", "tackles": 6, "position": "CB", "position_category": "DEF"}, "437": {"player": "Chris Thompson", "status": "ACT", "position": "RB", "receptions": 4, "fumbles_lost": 0, "rushing_long": 3, "rushing_yards": 4, "receiving_long": 39, "receiving_yards": 56, "rushing_attempts": 4, "DK_fantasy_points": 10, "position_category": "OFF", "rushing_touchdowns": 0, "receiving_touchdowns": 0}, "439": {"punts": 6, "player": "Tress Way", "status": "ACT", "position": "P", "inside_20": 3, "punts_long": 66, "punting_yards": 319, "position_category": "ST"}, "859": {"player": "Adrian Peterson", "status": "ACT", "position": "RB", "fumbles_lost": 0, "rushing_long": 9, "rushing_yards": 28, "rushing_attempts": 11, "DK_fantasy_points": 2.8, "position_category": "OFF", "rushing_touchdowns": 0}, "1297": {"sacks": 0, "player": "Noah Spence", "status": "ACT", "tackles": 1, "position": "DE", "position_category": "DEF"}, "1599": {"sacks": 0, "player": "Case Keenum", "status": "ACT", "tackles": 1, "position": "QB", "completions": 6, "fumbles_lost": 0, "passer_rating": 10.7, "passing_yards": 37, "passing_attempts": 11, "DK_fantasy_points": 0.48, "position_category": "OFF", "passing_touchdowns": 0, "passing_interceptions": 1, "two_point_conversion_pass_attempts": 1, "two_point_conversion_pass_completions": 1}, "1710": {"sacks": 0, "player": "Paul Richardson", "status": "ACT", "tackles": 1, "position": "WR", "receptions": 3, "fumbles_lost": 0, "receiving_long": 6, "receiving_yards": 14, "DK_fantasy_points": 4.4, "position_category": "OFF", "receiving_touchdowns": 0}, "1825": {"sacks": 0, "player": "Matt Ioannidis", "status": "ACT", "tackles": 7, "position": "DE", "position_category": "DEF"}, "1990": {"sacks": 0, "player": "Jon Bostic", "status": "ACT", "tackles": 11, "position": "ILB", "position_category": "DEF"}, "2951": {"sacks": 0, "player": "Jonathan Allen", "status": "ACT", "tackles": 4, "position": "DE", "position_category": "DEF"}, "2955": {"sacks": 0, "player": "Robert Davis", "status": "ACT", "tackles": 1, "position": "WR", "receptions": 1, "fumbles_lost": 0, "receiving_long": 11, "receiving_yards": 11, "DK_fantasy_points": 2.1, "position_category": "OFF", "receiving_touchdowns": 0}, "2965": {"sacks": 0, "player": "Fabian Moreau", "status": "ACT", "tackles": 6, "position": "CB", "position_category": "DEF"}, "2966": {"sacks": 0, "player": "Montae Nicholson", "status": "ACT", "tackles": 6, "position": "SS", "position_category": "DEF", "fumbles_recoveries": 1}, "2974": {"sacks": 0, "player": "Jeremy Sprinkle", "status": "ACT", "tackles": 1, "position": "TE", "receptions": 1, "fumbles_lost": 0, "receiving_long": 20, "receiving_yards": 20, "DK_fantasy_points": 3, "position_category": "OFF", "receiving_touchdowns": 0}, "3086": {"sacks": 0, "player": "Treyvon Hester", "status": "ACT", "tackles": 2, "position": "DT", "position_category": "DEF", "fumbles_recoveries": 1}, "3530": {"sacks": 0, "player": "Simeon Thomas", "status": "ACT", "tackles": 1, "position": "DB", "position_category": "DEF"}, "4065": {"sacks": 0, "player": "Shaun Dion Hamilton", "status": "ACT", "tackles": 1, "position": "LB", "position_category": "DEF"}, "4071": {"sacks": 0, "player": "Daron Payne", "status": "ACT", "tackles": 6, "position": "NT", "position_category": "DEF"}, "4072": {"player": "Trey Quinn", "status": "ACT", "position": "WR", "receptions": 2, "fumbles_lost": 0, "punt_returns": 1, "receiving_long": 6, "receiving_yards": 10, "punt_return_long": 6, "DK_fantasy_points": 3, "position_category": "OFF", "punt_return_yards": 6, "receiving_touchdowns": 0, "punt_return_touchdowns": 0}, "4080": {"sacks": 0, "player": "Tim Settle", "status": "ACT", "tackles": 2, "position": "DT", "position_category": "DEF"}, "4900": {"player": "Kelvin Harmon", "status": "ACT", "position": "WR", "receptions": 2, "fumbles_lost": 0, "receiving_long": 9, "receiving_yards": 14, "DK_fantasy_points": 3.4, "position_category": "OFF", "receiving_touchdowns": 0}, "4902": {"player": "Dwayne Haskins", "status": "ACT", "position": "QB", "completions": 9, "fumbles_lost": 0, "rushing_long": 14, "passer_rating": 26.1, "passing_yards": 107, "rushing_yards": 23, "passing_attempts": 17, "rushing_attempts": 2, "DK_fantasy_points": 3.58, "position_category": "OFF", "passing_touchdowns": 0, "rushing_touchdowns": 0, "passing_interceptions": 3}, "4903": {"sacks": 0, "player": "Cole Holcomb", "status": "ACT", "tackles": 4, "position": "LB", "position_category": "DEF"}, "4906": {"sacks": 0, "player": "Wes Martin", "status": "ACT", "tackles": 1, "position": "OG", "position_category": "OFF"}, "4909": {"sacks": 0, "player": "Jimmy Moreland", "status": "ACT", "tackles": 1, "position": "CB", "position_category": "DEF"}, "4914": {"player": "Steven Sims", "status": "ACT", "position": "WR", "kick_returns": 2, "kick_return_long": 19, "kick_return_yards": 37, "position_category": "OFF", "kick_return_touchdowns": 0}, "4915": {"sacks": 0, "player": "Montez Sweat", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}, "5055": {"sacks": 0, "player": "Ryan Anderson", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}}, "home_team": {"102": {"sacks": 0, "player": "Michael Thomas", "status": "ACT", "tackles": 2, "position": "DB", "position_category": "DEF"}, "157": {"sacks": 0, "player": "Nate Solder", "status": "ACT", "tackles": 1, "position": "OT", "position_category": "OFF"}, "306": {"sacks": 0, "player": "Janoris Jenkins", "status": "ACT", "tackles": 4, "position": "CB", "interceptions": 2, "position_category": "DEF"}, "316": {"sacks": 0, "player": "Sterling Shepard", "status": "ACT", "tackles": 1, "position": "WR", "receptions": 7, "fumbles_lost": 0, "rushing_long": 23, "rushing_yards": 23, "receiving_long": 23, "receiving_yards": 76, "rushing_attempts": 1, "DK_fantasy_points": 16.9, "position_category": "OFF", "rushing_touchdowns": 0, "receiving_touchdowns": 0}, "505": {"sacks": 0, "player": "Cody Core", "status": "ACT", "tackles": 1, "position": "WR", "position_category": "OFF"}, "544": {"sacks": 0, "player": "Kevin Zeitler", "status": "ACT", "tackles": 1, "position": "OG", "position_category": "OFF"}, "832": {"player": "Rhett Ellison", "status": "ACT", "position": "TE", "receptions": 3, "fumbles_lost": 0, "receiving_long": 22, "receiving_yards": 24, "DK_fantasy_points": 5.4, "position_category": "OFF", "receiving_touchdowns": 0}, "1177": {"sacks": 0, "player": "David Mayo", "status": "ACT", "tackles": 8, "position": "OLB", "position_category": "DEF"}, "1254": {"sacks": 0, "player": "Nate Stupar", "status": "ACT", "tackles": 1, "position": "MLB", "position_category": "DEF"}, "1319": {"punts": 3, "player": "Riley Dixon", "status": "ACT", "position": "P", "inside_20": 3, "punts_long": 57, "punting_yards": 165, "position_category": "ST"}, "1321": {"player": "Bennie Fowler", "status": "ACT", "position": "WR", "receptions": 1, "fumbles_lost": 0, "receiving_long": 3, "receiving_yards": 3, "DK_fantasy_points": 1.3, "position_category": "OFF", "receiving_touchdowns": 0}, "1332": {"sacks": 0, "player": "Cody Latimer", "status": "ACT", "tackles": 1, "position": "WR", "position_category": "OFF"}, "1432": {"sacks": 0, "player": "Antonio Hamilton", "status": "ACT", "tackles": 1, "position": "CB", "position_category": "DEF"}, "1544": {"sacks": 0.5, "player": "Markus Golden", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}, "1633": {"sacks": 0, "player": "Antoine Bethea", "status": "ACT", "tackles": 3, "position": "FS", "position_category": "DEF"}, "2895": {"player": "Evan Engram", "status": "ACT", "position": "TE", "receptions": 4, "fumbles_lost": 0, "receiving_long": 31, "receiving_yards": 54, "DK_fantasy_points": 9.4, "position_category": "OFF", "receiving_touchdowns": 0}, "2897": {"player": "Wayne Gallman", "status": "ACT", "fumbles": 1, "position": "RB", "receptions": 6, "fumbles_lost": 1, "rushing_long": 22, "rushing_yards": 63, "receiving_long": 21, "receiving_yards": 55, "rushing_attempts": 18, "DK_fantasy_points": 28.8, "position_category": "OFF", "rushing_touchdowns": 1, "receiving_touchdowns": 1}, "2911": {"player": "Aldrick Rosas", "status": "ACT", "position": "K", "field_goals_long": 30, "field_goals_made": 1, "DK_fantasy_points": 6, "extra_points_made": 3, "position_category": "ST", "field_goal_distances": [30], "field_goals_attempted": 1, "extra_points_attempted": 3}, "2917": {"sacks": 0.5, "player": "Dalvin Tomlinson", "status": "ACT", "tackles": 2, "position": "DE", "position_category": "DEF"}, "3129": {"player": "Elijhaa Penny", "status": "ACT", "position": "RB", "fumbles_lost": 0, "rushing_long": 5, "rushing_yards": 12, "rushing_attempts": 3, "DK_fantasy_points": 1.2, "position_category": "OFF", "rushing_touchdowns": 0}, "3259": {"sacks": 0, "player": "Jabrill Peppers", "status": "ACT", "tackles": 6, "position": "FS", "interceptions": 1, "position_category": "DEF"}, "3266": {"player": "T.J. Jones", "status": "ACT", "fumbles": 2, "position": "WR", "punt_returns": 4, "punt_return_long": 4, "position_category": "OFF", "punt_return_yards": 8, "fumbles_recoveries": 2, "punt_return_touchdowns": 0}, "3856": {"sacks": 0, "player": "Lorenzo Carter", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}, "3857": {"sacks": 0, "player": "Sean Chandler", "status": "ACT", "tackles": 1, "position": "DB", "position_category": "DEF"}, "3863": {"sacks": 0, "player": "Grant Haley", "status": "ACT", "tackles": 5, "position": "DB", "position_category": "DEF"}, "3865": {"sacks": 0, "player": "B.J. Hill", "status": "ACT", "tackles": 3, "position": "DE", "position_category": "DEF"}, "3868": {"sacks": 0, "player": "RJ McIntosh", "status": "ACT", "tackles": 2, "position": "DT", "position_category": "DEF"}, "4707": {"sacks": 0, "player": "Deandre Baker", "status": "ACT", "tackles": 2, "position": "CB", "position_category": "DEF"}, "4710": {"sacks": 1, "player": "Ryan Connelly", "status": "ACT", "tackles": 5, "position": "ILB", "interceptions": 1, "position_category": "DEF"}, "4715": {"player": "Jon Hilliman", "status": "ACT", "fumbles": 1, "position": "RB", "fumbles_lost": 1, "rushing_long": 7, "rushing_yards": 33, "rushing_attempts": 10, "DK_fantasy_points": 2.3, "position_category": "OFF", "rushing_touchdowns": 0}, "4716": {"player": "Daniel Jones", "status": "ACT", "position": "QB", "completions": 23, "fumbles_lost": 0, "rushing_long": 16, "passer_rating": 73.3, "passing_yards": 225, "rushing_yards": 33, "passing_attempts": 31, "rushing_attempts": 5, "DK_fantasy_points": 14.3, "position_category": "OFF", "passing_touchdowns": 1, "rushing_touchdowns": 0, "passing_interceptions": 2}, "4717": {"sacks": 0, "player": "Dexter Lawrence", "status": "ACT", "tackles": 1, "position": "DT", "position_category": "DEF"}, "4721": {"player": "Darius Slayton", "status": "ACT", "position": "WR", "receptions": 2, "fumbles_lost": 0, "receiving_long": 8, "receiving_yards": 13, "DK_fantasy_points": 3.3, "position_category": "OFF", "receiving_touchdowns": 0}, "4726": {"sacks": 0.5, "player": "Oshane Ximines", "status": "ACT", "tackles": 3, "position": "LB", "position_category": "DEF"}, "4804": {"sacks": 0.5, "player": "Tuzar Skipper", "status": "ACT", "tackles": 1, "position": "LB", "position_category": "DEF"}}}, "game_status": "Final", "season_type": "Regular Season", "game_location": "East Rutherford, New Jersey", "away_team_name": "Washington Redskins", "home_team_name": "New York Giants"}, {"week": 4, "sport": "NFL", "season": "2019-2020", "status": "completed", "game_ID": "20190929-12-8", "full_box": {"current": {"Down": null, "poss": "", "field": "", "Quarter": "F", "RedZone": null, "Distance": null, "YardLine": null, "Possession": null, "TimeRemaining": null, "YardLineTerritory": null}, "away_team": {"abbrv": "TB", "score": 55, "mascot": "Buccaneers", "record": "2-2-0", "team_id": 12, "team_stats": {"sacks": 2, "safeties": 0, "penalties": {"total": 12, "yards": 99}, "turnovers": 1, "first_downs": 27, "total_plays": 73, "total_yards": 464, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 376, "punts_blocked": 0, "rushing_yards": 88, "DK_fantasy_points": 15, "defense_touchdowns": 1, "defense_interceptions": 3, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 0, "fumble_return_touchdowns": 1, "defense_fumble_recoveries": 1, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 0, "two_point_conversion_succeeded": 0, "points_against_defense_special_teams": 34}, "division_name": "National Football Conference - South", "quarter_scores": {"1": 7, "2": 21, "3": 3, "4": 24}}, "home_team": {"abbrv": "LAR", "score": 40, "mascot": "Rams", "record": "3-1-0", "team_id": 8, "team_stats": {"sacks": 2, "safeties": 0, "penalties": {"total": 13, "yards": 106}, "turnovers": 4, "first_downs": 36, "total_plays": 81, "total_yards": 518, "blocked_kicks": 0, "blocked_punts": 0, "kicks_blocked": 0, "passing_yards": 490, "punts_blocked": 0, "rushing_yards": 28, "DK_fantasy_points": 6, "defense_touchdowns": 1, "defense_interceptions": 1, "kick_return_touchdowns": 0, "punt_return_touchdowns": 0, "blocked_kick_touchdowns": 0, "blocked_punt_touchdowns": 0, "interception_touchdowns": 1, "fumble_return_touchdowns": 0, "defense_fumble_recoveries": 0, "field_goal_return_touchdowns": 0, "two_point_conversion_returns": 0, "two_point_conversion_attempts": 1, "two_point_conversion_succeeded": 0, "points_against_defense_special_teams": 49}, "division_name": "National Football Conference - West", "quarter_scores": {"1": 0, "2": 17, "3": 3, "4": 20}}}, "game_time": "Sun, 29 Sep 2019 20:05:00 GMT", "event_name": null, "game_arena": "Los Angeles Memorial Coliseum", "player_box": {"away_team": {"99": {"sacks": 0, "player": "Ndamukong Suh", "status": "ACT", "tackles": 2, "position": "NT", "position_category": "DEF", "fumbles_recoveries": 1}, "333": {"sacks": 0, "player": "Beau Allen", "status": "ACT", "tackles": 1, "position": "DT", "position_category": "DEF"}, "585": {"sacks": 0, "player": "Carl Nassib", "status": "ACT", "tackles": 3, "position": "DE", "position_category": "DEF"}, "1261": {"player": "Peyton Barber", "status": "ACT", "position": "RB", "fumbles_lost": 0, "rushing_long": 7, "rushing_yards": 19, "rushing_attempts": 9, "DK_fantasy_points": 7.9, "position_category": "OFF", "rushing_touchdowns": 1}, "1264": {"player": "Cameron Brate", "status": "ACT", "position": "TE", "receptions": 3, "fumbles_lost": 0, "receiving_long": 13, "receiving_yards": 36, "DK_fantasy_points": 12.6, "position_category": "OFF", "receiving_touchdowns": 1}, "1265": {"sacks": 1, "player": "William Gholston", "status": "ACT", "tackles": 1, "position": "DT", "position_category": "DEF"}, "1268": {"sacks": 0, "player": "Devante Bond", "status": "ACT", "tackles": 1, "position": "LB", "position_category": "DEF"}, "1271": {"sacks": 0, "player": "Lavonte David", "status": "ACT", "tackles": 7, "position": "OLB", "interceptions": 1, "position_category": "DEF"}, "1272": {"sacks": 0, "player": "Vernon Hargreaves", "status": "ACT", "tackles": 2, "position": "CB", "position_category": "DEF"}, "1274": {"player": "Mike Evans", "status": "ACT", "position": "WR", "receptions": 4, "fumbles_lost": 0, "receiving_long": 67, "receiving_yards": 89, "DK_fantasy_points": 18.9, "position_category": "OFF", "receiving_touchdowns": 1}, "1291": {"player": "Jameis Winston", "status": "ACT", "position": "QB", "completions": 28, "fumbles_lost": 0, "rushing_long": -1, "passer_rating": 84.6, "passing_yards": 385, "rushing_yards": -1, "passing_attempts": 41, "rushing_attempts": 1, "DK_fantasy_points": 30.3, "position_category": "OFF", "passing_touchdowns": 4, "rushing_touchdowns": 0, "passing_interceptions": 1, "two_point_conversion_pass_attempts": 1}, "1310": {"sacks": 1, "player": "Shaquil Barrett", "status": "ACT", "tackles": 4, "position": "LB", "interceptions": 1, "position_category": "DEF"}, "1384": {"sacks": 0, "player": "Rakeem Nunez-Roches", "status": "ACT", "tackles": 2, "position": "DT", "position_category": "DEF"}, "1526": {"sacks": 0, "player": "Deone Bucannon", "status": "ACT", "tackles": 1, "position": "OLB", "position_category": "DEF"}, "1558": {"sacks": 0, "player": "Kevin Minter", "status": "ACT", "tackles": 9, "position": "LB", "position_category": "DEF"}, "1677": {"punts": 2, "player": "Bradley Pinion", "status": "ACT", "position": "P", "inside_20": 0, "punts_long": 46, "punting_yards": 88, "position_category": "ST"}, "2499": {"player": "Dare Ogunbowale", "status": "ACT", "position": "RB", "receptions": 3, "fumbles_lost": 0, "rushing_long": 0, "rushing_yards": 0, "receiving_long": 7, "receiving_yards": 16, "rushing_attempts": 1, "DK_fantasy_points": 4.6, "position_category": "OFF", "rushing_touchdowns": 0, "receiving_touchdowns": 0}, "2710": {"player": "Chris Godwin", "status": "ACT", "position": "WR", "receptions": 12, "fumbles_lost": 0, "receiving_long": 30, "receiving_yards": 172, "DK_fantasy_points": 41.2, "position_category": "OFF", "receiving_touchdowns": 2}, "2713": {"player": "O.J. Howard", "status": "ACT", "position": "TE", "receptions": 3, "fumbles_lost": 0, "receiving_long": 14, "receiving_yards": 33, "DK_fantasy_points": 6.3, "position_category": "OFF", "receiving_touchdowns": 0}, "2732": {"player": "Bobo Wilson", "status": "ACT", "position": "WR", "receptions": 1, "fumbles_lost": 0, "receiving_long": 14, "receiving_yards": 14, "DK_fantasy_points": 2.4, "position_category": "OFF", "receiving_touchdowns": 0}, "3126": {"player": "T.J. Logan", "status": "ACT", "position": "RB", "kick_returns": 2, "kick_return_long": 21, "kick_return_yards": 34, "position_category": "OFF", "kick_return_touchdowns": 0}, "4005": {"sacks": 0, "player": "Carlton Davis", "status": "ACT", "tackles": 8, "position": "CB", "position_category": "DEF"}, "4012": {"player": "Ronald Jones", "status": "ACT", "position": "RB", "receptions": 1, "fumbles_lost": 0, "rushing_long": 24, "rushing_yards": 70, "receiving_long": 12, "receiving_yards": 12, "rushing_attempts": 19, "DK_fantasy_points": 15.2, "position_category": "OFF", "rushing_touchdowns": 1, "receiving_touchdowns": 0}, "4018": {"sacks": 0, "player": "M.J. Stewart", "status": "ACT", "tackles": 9, "position": "CB", "position_category": "DEF"}, "4020": {"sacks": 0, "player": "Vita Vea", "status": "ACT", "tackles": 1, "position": "DT", "position_category": "DEF"}, "4021": {"player": "Justin Watson", "status": "ACT", "position": "WR", "receptions": 1, "fumbles_lost": 0, "receiving_long": 13, "receiving_yards": 13, "DK_fantasy_points": 2.3, "position_category": "OFF", "receiving_touchdowns": 0}, "4022": {"sacks": 0, "player": "Jordan Whitehead", "status": "ACT", "tackles": 2, "position": "FS", "interceptions": 1, "position_category": "DEF"}, "4854": {"sacks": 0, "player": "Sean Bunting", "status": "ACT", "tackles": 0, "position": "DB", "position_category": "DEF"}, "4859": {"sacks": 0, "player": "Mike Edwards", "status": "ACT", "tackles": 6, "position": "SAF", "position_category": "DEF"}, "4861": {"player": "Matt Gay", "status": "ACT", "position": "K", "field_goals_long": 58, "field_goals_made": 2, "DK_fantasy_points": 15, "extra_points_made": 7, "position_category": "ST", "field_goal_distances": [58, 21], "field_goals_attempted": 2, "extra_points_attempted": 7}, "4866": {"sacks": 0, "player": "Anthony Nelson", "status": "ACT", "tackles": 1, "position": "DE", "position_category": "DEF"}}, "home_team": {"55": {"sacks": 0, "player": "Robert Woods", "status": "ACT", "tackles": 1, "position": "WR", "receptions": 13, "fumbles_lost": 0, "receiving_long": 37, "receiving_yards": 164, "DK_fantasy_points": 29.4, "position_category": "OFF", "receiving_touchdowns": 0}, "485": {"sacks": 0, "player": "Eric Weddle", "status": "ACT", "tackles": 15, "position": "FS", "position_category": "DEF"}, "541": {"sacks": 0, "player": "Andrew Whitworth", "status": "ACT", "tackles": 2, "position": "OT", "position_category": "OFF"}, "796": {"sacks": 1, "player": "Clay Matthews", "status": "ACT", "tackles": 5, "position": "OLB", "position_category": "DEF"}, "997": {"sacks": 0, "player": "Dante Fowler", "status": "ACT", "tackles": 4, "position": "DE", "position_category": "DEF"}, "1206": {"player": "Brandin Cooks", "status": "ACT", "position": "WR", "receptions": 6, "fumbles_lost": 0, "receiving_long": 23, "receiving_yards": 71, "DK_fantasy_points": 13.1, "position_category": "OFF", "receiving_touchdowns": 0}, "1341": {"sacks": 0, "player": "Aqib Talib", "status": "ACT", "tackles": 3, "position": "CB", "position_category": "DEF"}, "1388": {"sacks": 0, "player": "Marcus Peters", "status": "ACT", "tackles": 1, "position": "CB", "interceptions": 1, "position_category": "DEF"}, "1581": {"sacks": 0, "player": "Aaron Donald", "status": "ACT", "tackles": 4, "position": "DE", "position_category": "DEF"}, "1589": {"player": "Malcolm Brown", "status": "ACT", "position": "RB", "fumbles_lost": 0, "rushing_long": 6, "rushing_yards": 14, "rushing_attempts": 5, "DK_fantasy_points": 1.4, "position_category": "OFF", "rushing_touchdowns": 0}, "1592": {"player": "Todd Gurley", "status": "ACT", "position": "RB", "receptions": 7, "fumbles_lost": 0, "rushing_long": 13, "rushing_yards": 16, "receiving_long": 12, "receiving_yards": 54, "rushing_attempts": 5, "DK_fantasy_points": 26, "position_category": "OFF", "rushing_touchdowns": 2, "receiving_touchdowns": 0}, "1594": {"player": "Jared Goff", "status": "ACT", "fumbles": 1, "position": "QB", "completions": 45, "fumbles_lost": 1, "passer_rating": 40.5, "passing_yards": 517, "passing_attempts": 68, "DK_fantasy_points": 24.68, "position_category": "OFF", "passing_touchdowns": 2, "passing_interceptions": 3}, "1596": {"punts": 1, "player": "Johnny Hekker", "status": "ACT", "position": "P", "inside_20": 1, "punts_long": 41, "punting_yards": 41, "position_category": "ST"}, "1598": {"sacks": 0, "player": "Michael Brockers", "status": "ACT", "tackles": 4, "position": "DE", "position_category": "DEF"}, "1600": {"sacks": 0, "player": "Rob Havenstein", "status": "ACT", "tackles": 1, "position": "OT", "position_category": "OFF"}, "1601": {"sacks": 0, "player": "Bryce Hager", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}, "1604": {"sacks": 0, "player": "Troy Hill", "status": "ACT", "tackles": 1, "position": "CB", "position_category": "DEF"}, "1605": {"sacks": 0, "player": "Cory Littleton", "status": "ACT", "tackles": 8, "position": "ILB", "position_category": "DEF"}, "1606": {"player": "Tyler Higbee", "status": "ACT", "position": "TE", "receptions": 4, "fumbles_lost": 0, "receiving_long": 13, "receiving_yards": 41, "DK_fantasy_points": 8.1, "position_category": "OFF", "receiving_touchdowns": 0}, "1622": {"player": "Greg Zuerlein", "status": "ACT", "position": "K", "field_goals_long": 58, "field_goals_made": 2, "DK_fantasy_points": 13, "extra_points_made": 4, "position_category": "ST", "field_goal_distances": [58, 44], "field_goals_attempted": 2, "extra_points_attempted": 4}, "1923": {"sacks": 0, "player": "Nickell Robey-Coleman", "status": "ACT", "tackles": 3, "position": "DB", "position_category": "DEF"}, "2537": {"player": "JoJo Natson", "status": "ACT", "position": "WR", "kick_returns": 1, "kick_return_long": 22, "kick_return_yards": 22, "position_category": "OFF", "kick_return_touchdowns": 0}, "3140": {"sacks": 0, "player": "Marqui Christian", "status": "ACT", "tackles": 2, "position": "DB", "position_category": "DEF"}, "3144": {"sacks": 0, "player": "Samson Ebukam", "status": "ACT", "tackles": 3, "position": "OLB", "position_category": "DEF"}, "3146": {"player": "Gerald Everett", "status": "ACT", "position": "TE", "receptions": 5, "fumbles_lost": 0, "receiving_long": 15, "receiving_yards": 44, "DK_fantasy_points": 15.4, "position_category": "OFF", "receiving_touchdowns": 1}, "3150": {"player": "Cooper Kupp", "status": "ACT", "position": "WR", "receptions": 9, "fumbles_lost": 0, "rushing_long": -2, "rushing_yards": -2, "receiving_long": 29, "receiving_yards": 121, "rushing_attempts": 1, "DK_fantasy_points": 26.9, "position_category": "OFF", "rushing_touchdowns": 0, "receiving_touchdowns": 1}, "3156": {"player": "Josh Reynolds", "status": "ACT", "position": "WR", "receptions": 1, "fumbles_lost": 0, "receiving_long": 22, "receiving_yards": 22, "DK_fantasy_points": 3.2, "position_category": "OFF", "receiving_touchdowns": 0}, "3235": {"sacks": 0, "player": "John Johnson", "status": "ACT", "tackles": 11, "position": "SS", "position_category": "DEF"}, "3813": {"sacks": 0, "player": "Travin Howard", "status": "ACT", "tackles": 2, "position": "LB", "position_category": "DEF"}, "3815": {"sacks": 1, "player": "Sebastian Joseph-Day", "status": "ACT", "tackles": 3, "position": "DT", "position_category": "DEF"}, "4612": {"sacks": 0, "player": "Taylor Rapp", "status": "ACT", "tackles": 3, "position": "SAF", "position_category": "DEF"}, "4613": {"sacks": 0, "player": "Troy Reeder", "status": "ACT", "tackles": 3, "position": "LB", "position_category": "DEF"}}}, "game_status": "Final", "season_type": "Regular Season", "game_location": "Los Angeles, California", "away_team_name": "Tampa Bay Buccaneers", "home_team_name": "Los Angeles Rams"}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"week": {"type": "integer"}, "sport": {"type": "string"}, "season": {"type": "string"}, "status": {"type": "string"}, "game_ID": {"type": "string"}, "full_box": {"type": "object", "properties": {"current": {"type": "object", "properties": {"Down": {"type": "null"}, "poss": {"type": "string"}, "field": {"type": "string"}, "Quarter": {"type": "string"}, "RedZone": {"type": "null"}, "Distance": {"type": "null"}, "YardLine": {"type": "null"}, "Possession": {"type": "null"}, "TimeRemaining": {"type": "null"}, "YardLineTerritory": {"type": "null"}}}, "away_team": {"type": "object", "properties": {"abbrv": {"type": "string"}, "score": {"type": "integer"}, "mascot": {"type": "string"}, "record": {"type": "string"}, "team_id": {"type": "integer"}, "team_stats": {"type": "object", "properties": {"sacks": {"type": "integer"}, "safeties": {"type": "integer"}, "penalties": {"type": "object", "properties": {"total": {"type": "integer"}, "yards": {"type": "integer"}}}, "turnovers": {"type": "integer"}, "first_downs": {"type": "integer"}, "total_plays": {"type": "integer"}, "total_yards": {"type": "integer"}, "blocked_kicks": {"type": "integer"}, "blocked_punts": {"type": "integer"}, "kicks_blocked": {"type": "integer"}, "passing_yards": {"type": "integer"}, "punts_blocked": {"type": "integer"}, "rushing_yards": {"type": "integer"}, "DK_fantasy_points": {"type": "integer"}, "defense_touchdowns": {"type": "integer"}, "defense_interceptions": {"type": "integer"}, "kick_return_touchdowns": {"type": "integer"}, "punt_return_touchdowns": {"type": "integer"}, "blocked_kick_touchdowns": {"type": "integer"}, "blocked_punt_touchdowns": {"type": "integer"}, "interception_touchdowns": {"type": "integer"}, "fumble_return_touchdowns": {"type": "integer"}, "defense_fumble_recoveries": {"type": "integer"}, "field_goal_return_touchdowns": {"type": "integer"}, "two_point_conversion_returns": {"type": "integer"}, "two_point_conversion_attempts": {"type": "integer"}, "two_point_conversion_succeeded": {"type": "integer"}, "points_against_defense_special_teams": {"type": "integer"}}}, "division_name": {"type": "string"}, "quarter_scores": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}}}}}, "home_team": {"type": "object", "properties": {"abbrv": {"type": "string"}, "score": {"type": "integer"}, "mascot": {"type": "string"}, "record": {"type": "string"}, "team_id": {"type": "integer"}, "team_stats": {"type": "object", "properties": {"sacks": {"type": "integer"}, "safeties": {"type": "integer"}, "penalties": {"type": "object", "properties": {"total": {"type": "integer"}, "yards": {"type": "integer"}}}, "turnovers": {"type": "integer"}, "first_downs": {"type": "integer"}, "total_plays": {"type": "integer"}, "total_yards": {"type": "integer"}, "blocked_kicks": {"type": "integer"}, "blocked_punts": {"type": "integer"}, "kicks_blocked": {"type": "integer"}, "passing_yards": {"type": "integer"}, "punts_blocked": {"type": "integer"}, "rushing_yards": {"type": "integer"}, "DK_fantasy_points": {"type": "integer"}, "defense_touchdowns": {"type": "integer"}, "defense_interceptions": {"type": "integer"}, "kick_return_touchdowns": {"type": "integer"}, "punt_return_touchdowns": {"type": "integer"}, "blocked_kick_touchdowns": {"type": "integer"}, "blocked_punt_touchdowns": {"type": "integer"}, "interception_touchdowns": {"type": "integer"}, "fumble_return_touchdowns": {"type": "integer"}, "defense_fumble_recoveries": {"type": "integer"}, "field_goal_return_touchdowns": {"type": "integer"}, "two_point_conversion_returns": {"type": "integer"}, "two_point_conversion_attempts": {"type": "integer"}, "two_point_conversion_succeeded": {"type": "integer"}, "points_against_defense_special_teams": {"type": "integer"}}}, "division_name": {"type": "string"}, "quarter_scores": {"type": "object", "properties": {"1": {"type": "integer"}, "2": {"type": "integer"}, "3": {"type": "integer"}, "4": {"type": "integer"}}}}}}}, "game_time": {"type": "string"}, "event_name": {"type": "null"}, "game_arena": {"type": "string"}, "player_box": {"type": "object", "properties": {"away_team": {"type": "object"}, "home_team": {"type": "object"}}}, "game_status": {"type": "string"}, "season_type": {"type": "string"}, "game_location": {"type": "string"}, "away_team_name": {"type": "string"}, "home_team_name": {"type": "string"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/2d6576d8-0825-4bf1-8a35-790a341f89ba/0/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Daily Schedule | Returns season schedule for the specified date or "now" returns current day's schedule. Daily schedule is changed at 10 AM ET. | 200 | 200 Response | {"data": {"NFL": [{"away_team": "Buffalo Bills", "home_team": "Tennessee Titans", "away_team_ID": 1, "home_team_ID": 6, "game_ID": "20191006-1-6", "game_time": "Sun, 06 Oct 2019 17:00:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 5, "status": "scheduled", "city": "Nashville", "state": "Tennessee", "arena": "Nissan Stadium", "country": "United States", "latitude": 36.166389, "longitude": -86.771389, "field": "grass", "postal_code": "37213-1234", "dome": 0}, {"away_team": "Tampa Bay Buccaneers", "home_team": "New Orleans Saints", "away_team_ID": 12, "home_team_ID": 10, "game_ID": "20191006-12-10", "game_time": "Sun, 06 Oct 2019 17:00:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 5, "status": "scheduled", "city": "New Orleans", "state": "Louisianna", "arena": "Mercedes-Benz Superdome", "country": "United States", "latitude": 29.950833, "longitude": -90.081111, "field": "turf", "postal_code": "70112-1255", "dome": 1}, {"away_team": "Jacksonville Jaguars", "home_team": "Carolina Panthers", "away_team_ID": 13, "home_team_ID": 5, "game_ID": "20191006-13-5", "game_time": "Sun, 06 Oct 2019 17:00:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 5, "status": "scheduled", "city": "Charlotte", "state": "North Carolina", "arena": "Bank of America Stadium", "country": "United States", "latitude": 35.225833, "longitude": -80.852778, "field": "grass", "postal_code": "28202-1518", "dome": 0}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"away_team": {"type": "string"}, "home_team": {"type": "string"}, "away_team_ID": {"type": "integer"}, "home_team_ID": {"type": "integer"}, "game_ID": {"type": "string"}, "game_time": {"type": "string"}, "season_type": {"type": "string"}, "event_name": {"type": "null"}, "round": {"type": "null"}, "season": {"type": "string"}, "week": {"type": "integer"}, "status": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "arena": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "field": {"type": "string"}, "postal_code": {"type": "string"}, "dome": {"type": "integer"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/6de13997-7d38-432e-9776-beb527f94e34/0/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Season Schedule | Returns season schedule for the specified season. If omitted, returns the schedule for current season. | 200 | 200 Response | {"data": {"NFL": [{"away_team": "Denver Broncos", "home_team": "Atlanta Falcons", "away_team_ID": 19, "home_team_ID": 29, "game_ID": "20190801-19-29", "game_time": "Fri, 02 Aug 2019 00:00:00 GMT", "season_type": "Preseason", "event_name": null, "round": null, "season": "2019-2020", "week": 0, "status": "completed", "city": "Canton", "state": "Ohio", "arena": "Tom Benson Hall of Fame Stadium", "country": "United States", "latitude": 40.82, "longitude": -81.398, "field": "turf", "postal_code": "44708", "dome": 0}, {"away_team": "Washington Redskins", "home_team": "Cleveland Browns", "away_team_ID": 11, "home_team_ID": 26, "game_ID": "20190808-11-26", "game_time": "Thu, 08 Aug 2019 23:30:00 GMT", "season_type": "Preseason", "event_name": null, "round": null, "season": "2019-2020", "week": 1, "status": "completed", "city": "Cleveland", "state": "Ohio", "arena": "FirstEnergy Stadium", "country": "United States", "latitude": 41.506111, "longitude": -81.699444, "field": "grass", "postal_code": "44114-1008", "dome": 0}, {"away_team": "Jacksonville Jaguars", "home_team": "Baltimore Ravens", "away_team_ID": 13, "home_team_ID": 14, "game_ID": "20190808-13-14", "game_time": "Thu, 08 Aug 2019 23:30:00 GMT", "season_type": "Preseason", "event_name": null, "round": null, "season": "2019-2020", "week": 1, "status": "completed", "city": "Baltimore", "state": "Maryland", "arena": "M&T Bank Stadium", "country": "United States", "latitude": 39.278056, "longitude": -76.622778, "field": "grass", "postal_code": "21230-2623", "dome": 0}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"away_team": {"type": "string"}, "home_team": {"type": "string"}, "away_team_ID": {"type": "integer"}, "home_team_ID": {"type": "integer"}, "game_ID": {"type": "string"}, "game_time": {"type": "string"}, "season_type": {"type": "string"}, "event_name": {"type": "null"}, "round": {"type": "null"}, "season": {"type": "string"}, "week": {"type": "integer"}, "status": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "arena": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "field": {"type": "string"}, "postal_code": {"type": "string"}, "dome": {"type": "integer"}}}}}}}} |
9a7eef89-d09d-413b-936a-548ef1d188ee/b6e01bde-be83-4baa-a3b4-2598700e9e68/1/0 | Football - DataFeeds by Rolling Insights | Real-time Play by Play, Season Schedule, Weekly Schedules, Daily Schedules, Team Information, Team Stats, Player Information, Player Stats, Injuries and Depth Charts for the NFL. | 7.2 | Weekly Schedule | Returns all events from the date specified plus 7 days in advance | 200 | 200 Response | {"data": {"NFL": [{"away_team": "Tampa Bay Buccaneers", "home_team": "Carolina Panthers", "away_team_ID": 12, "home_team_ID": 5, "game_ID": "20190912-12-5", "game_time": "Fri, 13 Sep 2019 00:20:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 2, "status": "completed", "city": "Charlotte", "state": "North Carolina", "arena": "Bank of America Stadium", "country": "United States", "latitude": 35.225833, "longitude": -80.852778, "field": "grass", "postal_code": "28202-1518", "dome": 0}, {"away_team": "Buffalo Bills", "home_team": "New York Giants", "away_team_ID": 1, "home_team_ID": 21, "game_ID": "20190915-1-21", "game_time": "Sun, 15 Sep 2019 17:00:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 2, "status": "completed", "city": "East Rutherford", "state": "New Jersey", "arena": "MetLife Stadium", "country": "United States", "latitude": 40.813528, "longitude": -74.074361, "field": "turf", "postal_code": "07073-5100", "dome": 0}, {"away_team": "New Orleans Saints", "home_team": "Los Angeles Rams", "away_team_ID": 10, "home_team_ID": 8, "game_ID": "20190915-10-8", "game_time": "Sun, 15 Sep 2019 20:25:00 GMT", "season_type": "Regular Season", "event_name": null, "round": null, "season": "2019-2020", "week": 2, "status": "completed", "city": "Los Angeles", "state": "California", "arena": "Los Angeles Memorial Coliseum", "country": "United States", "latitude": 34.014167, "longitude": -118.287778, "field": "grass", "postal_code": "90037-1207", "dome": 0}]}} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"NFL": {"type": "array", "items": {"type": "object", "properties": {"away_team": {"type": "string"}, "home_team": {"type": "string"}, "away_team_ID": {"type": "integer"}, "home_team_ID": {"type": "integer"}, "game_ID": {"type": "string"}, "game_time": {"type": "string"}, "season_type": {"type": "string"}, "event_name": {"type": "null"}, "round": {"type": "null"}, "season": {"type": "string"}, "week": {"type": "integer"}, "status": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "arena": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "field": {"type": "string"}, "postal_code": {"type": "string"}, "dome": {"type": "integer"}}}}}}}} |
f6471db6-c025-43bc-a43c-1d5053934cb6/199f48ef-7810-423e-a2b9-94f5b03bd4dd/0/0 | Football Live Scores | Get the football live scores delivered to your application. No need to scrape or deal with google complexity, just call this API and easily integrate it with your app. | 0.3 | Get only matches that contain updates | Endpoint to receive just the match updates from your previous last request.
This requires providing the timestamp of the last request in the query param.
An update is considered a change in the match status (NS, HT, FT) or a change in the home score or away score. | 200 | New Example | {"data": [{"id": 1, "league": "Premier League", "match_time": "11/12/2021 10:16:00", "score": [4, 11], "status": "18min", "teams": ["Newcastle United", "Norwich City"]}], "last_update_human": "11/12/2021 10:35:42", "last_update_timestamp": "1639218942", "source": "scrape", "status": "OK"} | {"type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}} |
f6471db6-c025-43bc-a43c-1d5053934cb6/27595036-8bf1-4814-9c82-a2cc04736067/0/0 | Football Live Scores | Get the football live scores delivered to your application. No need to scrape or deal with google complexity, just call this API and easily integrate it with your app. | 0.3 | Get live results sorted by league | Call this endpoint to get a list of live scores based on league | 200 | New Example | {"data": {"Bundesliga": [{"id": 2, "league": "Bundesliga", "match_time": "03/12/2021 19:30:00", "score": [0, 0], "status": "NS", "teams": ["Union Berlin", "RB Leipzig"]}, {"id": 18, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Arminia Bielefeld", "Koln"]}, {"id": 19, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Augsburg", "Bochum"]}, {"id": 20, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Bayer Leverkusen", "Greuther Furth"]}, {"id": 21, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Hoffenheim", "Eintracht Frankfurt"]}, {"id": 22, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Mainz 05", "Wolfsburg"]}, {"id": 23, "league": "Bundesliga", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Borussia Dortmund", "Bayern Munchen"]}], "Championship": [{"id": 3, "league": "Championship", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Fulham", "AFC Bournemouth"]}, {"id": 27, "league": "Championship", "match_time": "04/12/2021 12:30:00", "score": [0, 0], "status": "NS", "teams": ["Coventry City", "West Bromwich Albion"]}, {"id": 28, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Barnsley", "Huddersfield Town"]}, {"id": 29, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Blackburn Rovers", "Preston North End"]}, {"id": 30, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Blackpool", "Luton Town"]}, {"id": 31, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Bristol City", "Derby County"]}, {"id": 32, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Cardiff City", "Sheffield United"]}, {"id": 33, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Middlesbrough", "Swansea City"]}, {"id": 34, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Millwall", "Birmingham City"]}, {"id": 35, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Nottingham Forest", "Peterborough United"]}, {"id": 36, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Reading", "Hull City"]}], "FA Cup": [{"id": 4, "league": "FA Cup", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Gateshead", "Charlton Athletic"]}, {"id": 5, "league": "FA Cup", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Rotherham United", "Stockport County"]}, {"id": 41, "league": "FA Cup", "match_time": "04/12/2021 12:45:00", "score": [0, 0], "status": "NS", "teams": ["Buxton", "Morecambe"]}, {"id": 42, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["AFC Wimbledon", "Cheltenham Town"]}, {"id": 43, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Bristol Rovers", "Sutton United"]}, {"id": 44, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Burton Albion", "Port Vale"]}, {"id": 45, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Cambridge United", "Exeter City"]}, {"id": 46, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Carlisle United", "Shrewsbury Town"]}, {"id": 47, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Doncaster Rovers", "Mansfield Town"]}, {"id": 48, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Ipswich Town", "Barrow"]}, {"id": 49, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Leyton Orient", "Tranmere Rovers"]}, {"id": 50, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Lincoln City", "Hartlepool United"]}, {"id": 51, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Portsmouth", "Harrogate Town"]}, {"id": 52, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Walsall", "Swindon Town"]}, {"id": 53, "league": "FA Cup", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Yeovil Town", "Stevenage"]}], "Ligue 1": [{"id": 24, "league": "Ligue 1", "match_time": "04/12/2021 16:00:00", "score": [0, 0], "status": "NS", "teams": ["Olympique Marseille", "Brest"]}, {"id": 25, "league": "Ligue 1", "match_time": "04/12/2021 18:00:00", "score": [0, 0], "status": "NS", "teams": ["Lille", "Troyes"]}, {"id": 26, "league": "Ligue 1", "match_time": "04/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Lens", "PSG"]}], "Premier League": [{"id": 6, "league": "Premier League", "match_time": "04/12/2021 12:30:00", "score": [0, 0], "status": "NS", "teams": ["West Ham United", "Chelsea"]}, {"id": 7, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Newcastle United", "Burnley"]}, {"id": 8, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Southampton", "Brighton & Hove Albion"]}, {"id": 9, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Wolverhampton Wanderers", "Liverpool"]}, {"id": 10, "league": "Premier League", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Watford", "Manchester City"]}], "Premiership": [{"id": 37, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Aberdeen", "St. Mirren"]}, {"id": 38, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Hibernian", "Motherwell"]}, {"id": 39, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Rangers", "Dundee"]}, {"id": 40, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["St. Johnstone", "Ross County"]}], "Primera Division": [{"id": 1, "league": "Primera Division", "match_time": "03/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Granada", "Deportivo Alaves"]}, {"id": 11, "league": "Primera Division", "match_time": "04/12/2021 13:00:00", "score": [0, 0], "status": "NS", "teams": ["Sevilla", "Villarreal"]}, {"id": 12, "league": "Primera Division", "match_time": "04/12/2021 15:15:00", "score": [0, 0], "status": "NS", "teams": ["Barcelona", "Real Betis"]}, {"id": 13, "league": "Primera Division", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Atletico Madrid", "Mallorca"]}, {"id": 14, "league": "Primera Division", "match_time": "04/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Real Sociedad", "Real Madrid"]}], "Serie A": [{"id": 15, "league": "Serie A", "match_time": "04/12/2021 14:00:00", "score": [0, 0], "status": "NS", "teams": ["Milan", "Salernitana"]}, {"id": 16, "league": "Serie A", "match_time": "04/12/2021 17:00:00", "score": [0, 0], "status": "NS", "teams": ["Roma", "Internazionale"]}, {"id": 17, "league": "Serie A", "match_time": "04/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Napoli", "Atalanta"]}]}, "last_update": "04/12/2021 18:17:22", "source": "cache", "status": "OK"} | {"type": "object", "properties": {"data": {"type": "object", "properties": {"Bundesliga": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Championship": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "FA Cup": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Ligue 1": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Premier League": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Premiership": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Primera Division": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "Serie A": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}}}, "last_update": {"type": "string"}, "source": {"type": "string"}, "status": {"type": "string"}}} |
f6471db6-c025-43bc-a43c-1d5053934cb6/277c9cf5-317a-4679-b89b-f8c98b92c876/0/0 | Football Live Scores | Get the football live scores delivered to your application. No need to scrape or deal with google complexity, just call this API and easily integrate it with your app. | 0.3 | Get live football matches and scores for today | Call this endpoint to return a list of matches and scores for today.
Match status legend:
- NS - not started
- HT - half time
- FT - full time
- POS - postponed | 200 | New Example | {"data": [{"id": 1, "league": "Primera Division", "match_time": "03/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Granada", "Deportivo Alaves"]}, {"id": 2, "league": "Bundesliga", "match_time": "03/12/2021 19:30:00", "score": [0, 0], "status": "NS", "teams": ["Union Berlin", "RB Leipzig"]}, {"id": 3, "league": "Championship", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Fulham", "AFC Bournemouth"]}, {"id": 4, "league": "FA Cup", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Gateshead", "Charlton Athletic"]}, {"id": 5, "league": "FA Cup", "match_time": "03/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Rotherham United", "Stockport County"]}, {"id": 6, "league": "Premier League", "match_time": "04/12/2021 12:30:00", "score": [0, 0], "status": "NS", "teams": ["West Ham United", "Chelsea"]}, {"id": 7, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Newcastle United", "Burnley"]}, {"id": 8, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Southampton", "Brighton & Hove Albion"]}, {"id": 9, "league": "Premier League", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Wolverhampton Wanderers", "Liverpool"]}, {"id": 10, "league": "Premier League", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Watford", "Manchester City"]}, {"id": 11, "league": "Primera Division", "match_time": "04/12/2021 13:00:00", "score": [0, 0], "status": "NS", "teams": ["Sevilla", "Villarreal"]}, {"id": 12, "league": "Primera Division", "match_time": "04/12/2021 15:15:00", "score": [0, 0], "status": "NS", "teams": ["Barcelona", "Real Betis"]}, {"id": 13, "league": "Primera Division", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Atletico Madrid", "Mallorca"]}, {"id": 14, "league": "Primera Division", "match_time": "04/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Real Sociedad", "Real Madrid"]}, {"id": 15, "league": "Serie A", "match_time": "04/12/2021 14:00:00", "score": [0, 0], "status": "NS", "teams": ["Milan", "Salernitana"]}, {"id": 16, "league": "Serie A", "match_time": "04/12/2021 17:00:00", "score": [0, 0], "status": "NS", "teams": ["Roma", "Internazionale"]}, {"id": 17, "league": "Serie A", "match_time": "04/12/2021 19:45:00", "score": [0, 0], "status": "NS", "teams": ["Napoli", "Atalanta"]}, {"id": 18, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Arminia Bielefeld", "Koln"]}, {"id": 19, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Augsburg", "Bochum"]}, {"id": 20, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Bayer Leverkusen", "Greuther Furth"]}, {"id": 21, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Hoffenheim", "Eintracht Frankfurt"]}, {"id": 22, "league": "Bundesliga", "match_time": "04/12/2021 14:30:00", "score": [0, 0], "status": "NS", "teams": ["Mainz 05", "Wolfsburg"]}, {"id": 23, "league": "Bundesliga", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Borussia Dortmund", "Bayern Munchen"]}, {"id": 24, "league": "Ligue 1", "match_time": "04/12/2021 16:00:00", "score": [0, 0], "status": "NS", "teams": ["Olympique Marseille", "Brest"]}, {"id": 25, "league": "Ligue 1", "match_time": "04/12/2021 18:00:00", "score": [0, 0], "status": "NS", "teams": ["Lille", "Troyes"]}, {"id": 26, "league": "Ligue 1", "match_time": "04/12/2021 20:00:00", "score": [0, 0], "status": "NS", "teams": ["Lens", "PSG"]}, {"id": 27, "league": "Championship", "match_time": "04/12/2021 12:30:00", "score": [0, 0], "status": "NS", "teams": ["Coventry City", "West Bromwich Albion"]}, {"id": 28, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Barnsley", "Huddersfield Town"]}, {"id": 29, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Blackburn Rovers", "Preston North End"]}, {"id": 30, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Blackpool", "Luton Town"]}, {"id": 31, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Bristol City", "Derby County"]}, {"id": 32, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Cardiff City", "Sheffield United"]}, {"id": 33, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Middlesbrough", "Swansea City"]}, {"id": 34, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Millwall", "Birmingham City"]}, {"id": 35, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Nottingham Forest", "Peterborough United"]}, {"id": 36, "league": "Championship", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Reading", "Hull City"]}, {"id": 37, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Aberdeen", "St. Mirren"]}, {"id": 38, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Hibernian", "Motherwell"]}, {"id": 39, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Rangers", "Dundee"]}, {"id": 40, "league": "Premiership", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["St. Johnstone", "Ross County"]}, {"id": 41, "league": "FA Cup", "match_time": "04/12/2021 12:45:00", "score": [0, 0], "status": "NS", "teams": ["Buxton", "Morecambe"]}, {"id": 42, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["AFC Wimbledon", "Cheltenham Town"]}, {"id": 43, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Bristol Rovers", "Sutton United"]}, {"id": 44, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Burton Albion", "Port Vale"]}, {"id": 45, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Cambridge United", "Exeter City"]}, {"id": 46, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Carlisle United", "Shrewsbury Town"]}, {"id": 47, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Doncaster Rovers", "Mansfield Town"]}, {"id": 48, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Ipswich Town", "Barrow"]}, {"id": 49, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Leyton Orient", "Tranmere Rovers"]}, {"id": 50, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Lincoln City", "Hartlepool United"]}, {"id": 51, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Portsmouth", "Harrogate Town"]}, {"id": 52, "league": "FA Cup", "match_time": "04/12/2021 15:00:00", "score": [0, 0], "status": "NS", "teams": ["Walsall", "Swindon Town"]}, {"id": 53, "league": "FA Cup", "match_time": "04/12/2021 17:30:00", "score": [0, 0], "status": "NS", "teams": ["Yeovil Town", "Stevenage"]}], "last_update": "04/12/2021 18:19:14", "source": "cache", "status": "OK"} | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "league": {"type": "string"}, "match_time": {"type": "string"}, "score": {"type": "array", "items": {"type": "integer"}}, "status": {"type": "string"}, "teams": {"type": "array", "items": {"type": "string"}}}}}, "last_update": {"type": "string"}, "source": {"type": "string"}, "status": {"type": "string"}}} |
676fac6f-eaf4-4d22-98aa-afc981b642d7/04fa6d87-b5c6-43d8-812d-2500d80883ee/0/0 | IPL API | It is api thats gives the data about IPL(2008-2020) matches data . | 7.5 | getMatchesByTeam | get all the matches by a particular team | 200 | New Example | {"key1": "value", "key2": "value"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}, "required": ["key1", "key2"]} |
bb16ab32-9dae-4f5a-8f25-43a1e64a9a6b/d1ef4631-8492-4a20-b240-47c8399f1370/0/0 | Golf Course Finder | This API will return golf courses within a mile radius of the passed latitude and longitude. It will also return the place details from Google. | 8.8 | Get Courses | This endpoint will return courses within a mile radius of the passed latitude and longitude | 200 | Response | {"courses": [{"name": "Golf Links Course at Pebble Beach Golf Links", "zip_code": "93953", "distance": 0}, {"name": "Cypress Point Club", "zip_code": "93953", "distance": 0.3}, {"name": "Cypress Point Club", "zip_code": "93953", "distance": 0.3}, {"name": "Spyglass Hill Golf Course", "zip_code": "93953", "distance": 1}, {"name": "Spyglass Hill Golf Course", "zip_code": "93953", "distance": 1}, {"name": "Poppy Hills Golf Course", "zip_code": "93953", "distance": 1.2}, {"name": "Dunes Course at Monterey Peninsula Country Club", "zip_code": "93953", "distance": 2.2}, {"name": "The Links at Spanish Bay", "zip_code": "93953", "distance": 2.9}, {"name": "West Course at Rancho Canada Golf Club", "zip_code": "93923", "distance": 3.9}, {"name": "Pacific Grove Municipal Golf Course", "zip_code": "93950", "distance": 4.6}, {"name": "Del Monte Golf Course", "zip_code": "93940", "distance": 4.7}, {"name": "Naval Postgraduate School Golf Course", "zip_code": "93940", "distance": 5}, {"name": "Quail Lodge Resort & Golf Club", "zip_code": "93923", "distance": 6}, {"name": "The Bayonet Course at Bayonet/Black Horse Golf Course", "zip_code": "93955", "distance": 8.4}, {"name": "Carmel Valley Ranch Resort", "zip_code": "93923", "distance": 8.7}, {"name": "Tehama Golf Club", "zip_code": "93923", "distance": 8.8}, {"name": "Laguna Seca Ranch Golf Club", "zip_code": "93940", "distance": 9}, {"name": "Pasadera Country Club", "zip_code": "93940", "distance": 9.8}]} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"courses": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "zip_code": {"type": "string"}, "distance": {"type": "number"}}, "required": ["distance", "name", "zip_code"]}}}, "required": ["courses"]} |
bb16ab32-9dae-4f5a-8f25-43a1e64a9a6b/795473ab-f052-402d-a46b-688b568b2c72/0/0 | Golf Course Finder | This API will return golf courses within a mile radius of the passed latitude and longitude. It will also return the place details from Google. | 8.8 | Course Details | This endpoint will return the course details from Google Places | 200 | Response | {"course_details": {"html_attributions": [], "result": {"formatted_address": "1700 17 Mile Dr, Pebble Beach, CA 93953, USA", "formatted_phone_number": "(831) 574-5609", "name": "Pebble Beach Golf Links", "photos": [{"height": 1365, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/107736964102048637637\">Pebble Beach Golf Links</a>"], "photo_reference": "Aap_uEBcZYLfqDdP8Pr_w0MkTLPJRYpLACUVSJQLmP8k8-NyaS1b5m3Eb6T6HzELWPSf8IhvgGxb5o9Qh4_tAvcfJHNPtC6GnIBOQUTtUnYr15ClTW8wgMrO3UgQY6rXxjQP6X0A3lsB4PfJiQkl2MSMQxL2uPLiMe8JwSSifackqd-wW62M", "width": 2048}, {"height": 2848, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/107736964102048637637\">Pebble Beach Golf Links</a>"], "photo_reference": "Aap_uEA28EsM0sg3xD8Clk9VhpAfIPxw8WZHK-vLTn3ndSkMmObGRrRMW_-qlCeSU8Y2U6aaRZatS_cXyah_XsygpLurSQQ7SGWwAd97bpni2fME0uRQyV99FcCxkZMciRiAV52kZBqdpSmUnMCIjtOxHN-DMhQEKVQ38S8BCInCMF924PI8", "width": 4288}, {"height": 2160, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/102637436370908761614\">Grace Cheung</a>"], "photo_reference": "Aap_uECtEtnbzU5u7szj0uRCGdjAtmOQ6NeCC0NyrSMo74XzefKm-35xqxPiIVlNZjil8U4mOKj6KNw6SGWQ47I1CkwLpLnYK1KGiZfldcepDIHVfy3PQMT1hFwmzNNrNqscIznqHswRHgfjgNRIL6r2AB3YyrGVgx1PDoiU5CKJFzpP7W5E", "width": 3840}, {"height": 4032, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/113153718225063496835\">CP</a>"], "photo_reference": "Aap_uECuGXE638V54Z6DoNB4fOGhhGW5QXQFn-SdV32hPQv5iRGgEjMhUEUG5QwqTMavdyGYovhlDZXQevUBtCEaV_Jvb1EhypBSwMHR09TG1stMvaAdOlmJ3og1xpyp-wgmswpxtIPAJpU5P7vhnmCQQbE9rgHhAswApABzBJsLggAoKo2o", "width": 3024}, {"height": 3024, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/115523091722140375655\">Anna Lamp\u00e9n-Boeving</a>"], "photo_reference": "Aap_uECa8SVVC6TdN-9UqM_sqFu88bP44vUIXgk1tcIF7dW2y8A4r0If7Ve-ay3I60dS8SB0RuBMsnqxrHLW_9tX3PaiNAVQdPIwhsinT9DDirppQfzqur71aeui0fgPu8o1uT3OycCu_qB2Bk6_zzaDmusyaj2UUXN7mRq5dsR0zqSgRsgN", "width": 4032}, {"height": 1080, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/103246914457659521582\">Yusuke Ochiai</a>"], "photo_reference": "Aap_uEB9l6Fe6ZrWjZUd-n_rP3aGEvqHzHCBb45JnIyJOSyFNbDm--d2M8sQRu881lsMMVyRwyxeXIPeCc8ggbj_0OGpYJGhm5mHWWvDMl00szdGnXnNu5dB2LyYTCETH2sbAd7P4fWgWQVuea_mC-X7pycH1olE3vCHK3TOdLi0wytuiQ_8", "width": 1616}, {"height": 3024, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/104060386270451533380\">Emily Lin</a>"], "photo_reference": "Aap_uEDV9b41L22K8j_hi8gTzLL0eIVlzjBP--mqlQK4uSoZVtP6Xzknr0YUvPYKJ8UNSLW-PvYW4J_28Lv6bl7aTiraO2yGM-0aEA2gmqjfNaxRKray886ykx938waNGbRkhKUxR-ssffHqx10K3AbRoBg1IeFNDXSPxfb4pmjNYUen9oGG", "width": 4032}, {"height": 2112, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/117529033099393834038\">Monica C</a>"], "photo_reference": "Aap_uEA6kNrSevEZ0pd1DWhQwv--Fo2YRRxNjvZ1Fb6XxcAONwXkIbQefcXg76aBBtFv7V3YmGb0FPMThgfBA-uVeIK_jHzztb1sJnW9m1HnMsrcDjBi2e-lAoWGHmALv3VpELmj03Hd4UG__RPiAKupxrmGff10x3g01HYHlk3OkmWs_ZO0", "width": 2816}, {"height": 3896, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/108845822852162310925\">VLT</a>"], "photo_reference": "Aap_uEBysNtW32ry34T3QtQHBmm77vt6HQIC8f_BDyVl5CkOFbzXvecOkPPnnMcn2x4F2mDY8OEC-BPhSbnpcaqJqwWcg8J0Vh5w1dQVQlo8FoJe_mDM0bxT_KsVEcu_totW_TCnS_qcE9ihGJGrdFjhxlat3jqAWWhLV_FRnW-E-vGpp0zc", "width": 7044}, {"height": 3120, "html_attributions": ["<a href=\"https://maps.google.com/maps/contrib/102659604569980817223\">Nayeli Ocegueda</a>"], "photo_reference": "Aap_uED5YRu20UvuZxbVHlPXjS5KnZnhIs7jmzUHTz1iFZBp3THe_70YTr-eczCfcxZEp89NTRE5TkyI7MN6Skss4eZwKPyq3XYCVI2jWRohEe2smj0tH3mcEDKmvtRMXuyoFuZDCERC35c3na89mlzYuvxMAeelRGQ_GBMA5pIculOC_Aya", "width": 4160}], "rating": 4.8, "url": "https://maps.google.com/?cid=15094594552774239886", "website": "http://www.pebblebeach.com/golf/pebble-beach-golf-links"}, "status": "OK"}} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"course_details": {"type": "object", "properties": {"html_attributions": {"type": "array"}, "result": {"type": "object", "properties": {"formatted_address": {"type": "string"}, "formatted_phone_number": {"type": "string"}, "name": {"type": "string"}, "photos": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "html_attributions": {"type": "array", "items": {"type": "string"}}, "photo_reference": {"type": "string"}, "width": {"type": "integer"}}, "required": ["height", "html_attributions", "photo_reference", "width"]}}, "rating": {"type": "number"}, "url": {"type": "string"}, "website": {"type": "string"}}, "required": ["formatted_address", "formatted_phone_number", "name", "photos", "rating", "url", "website"]}, "status": {"type": "string"}}, "required": ["html_attributions", "result", "status"]}}, "required": ["course_details"]} |
61666fdd-611f-4347-97da-a4c55c43bd02/ccc68ca4-1b0c-4e18-957c-702a7b0b97b1/0/0 | Russian Premier League Standings | Russian Premier League Standings & Table | null | Russian Premier League Standings | Russian Premier League Standings | 200 | Response | [{"team": {"name": "Zenit St Petersburg", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/2533.png", "abbreviation": "ZEN"}, "stats": {"wins": 19, "losses": 3, "ties": 8, "gamesPlayed": 30, "goalsFor": 66, "goalsAgainst": 28, "points": 65, "rank": 1, "goalDifference": 38}}, {"team": {"name": "Sochi", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/20019.png", "abbreviation": "SCH"}, "stats": {"wins": 17, "losses": 8, "ties": 5, "gamesPlayed": 30, "goalsFor": 54, "goalsAgainst": 30, "points": 56, "rank": 2, "goalDifference": 24}}, {"team": {"name": "Dinamo Moscow", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/596.png", "abbreviation": "DMO"}, "stats": {"wins": 16, "losses": 9, "ties": 5, "gamesPlayed": 30, "goalsFor": 53, "goalsAgainst": 41, "points": 53, "rank": 3, "goalDifference": 12}}, {"team": {"name": "Krasnodar", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/11336.png", "abbreviation": "FCK"}, "stats": {"wins": 14, "losses": 8, "ties": 8, "gamesPlayed": 30, "goalsFor": 42, "goalsAgainst": 30, "points": 50, "rank": 4, "goalDifference": 12}}, {"team": {"name": "CSKA Moscow", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/1963.png", "abbreviation": "CSK"}, "stats": {"wins": 15, "losses": 10, "ties": 5, "gamesPlayed": 30, "goalsFor": 42, "goalsAgainst": 29, "points": 50, "rank": 5, "goalDifference": 13}}, {"team": {"name": "Lokomotiv Moscow", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/442.png", "abbreviation": "LMO"}, "stats": {"wins": 13, "losses": 8, "ties": 9, "gamesPlayed": 30, "goalsFor": 43, "goalsAgainst": 39, "points": 48, "rank": 6, "goalDifference": 4}}, {"team": {"name": "Akhmat Grozny", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/2991.png", "abbreviation": "GRZ"}, "stats": {"wins": 13, "losses": 14, "ties": 3, "gamesPlayed": 30, "goalsFor": 36, "goalsAgainst": 38, "points": 42, "rank": 7, "goalDifference": -2}}, {"team": {"name": "Krylia Sovetov", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/3850.png", "abbreviation": "KSS"}, "stats": {"wins": 12, "losses": 13, "ties": 5, "gamesPlayed": 30, "goalsFor": 39, "goalsAgainst": 36, "points": 41, "rank": 8, "goalDifference": 3}}, {"team": {"name": "Rostov", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/3852.png", "abbreviation": "ROS"}, "stats": {"wins": 10, "losses": 12, "ties": 8, "gamesPlayed": 30, "goalsFor": 47, "goalsAgainst": 51, "points": 38, "rank": 9, "goalDifference": -4}}, {"team": {"name": "Spartak Moscow", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/1941.png", "abbreviation": "SPM"}, "stats": {"wins": 10, "losses": 12, "ties": 8, "gamesPlayed": 30, "goalsFor": 37, "goalsAgainst": 41, "points": 38, "rank": 10, "goalDifference": -4}}, {"team": {"name": "Nizhny Novgorod", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/13150.png", "abbreviation": "NIZ"}, "stats": {"wins": 8, "losses": 13, "ties": 9, "gamesPlayed": 30, "goalsFor": 26, "goalsAgainst": 39, "points": 33, "rank": 11, "goalDifference": -13}}, {"team": {"name": "FC Ural Ekaterinburg", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/15582.png", "abbreviation": "URL"}, "stats": {"wins": 8, "losses": 13, "ties": 9, "gamesPlayed": 30, "goalsFor": 27, "goalsAgainst": 35, "points": 33, "rank": 12, "goalDifference": -8}}, {"team": {"name": "FC Khimki", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/7424.png", "abbreviation": "KHI"}, "stats": {"wins": 7, "losses": 12, "ties": 11, "gamesPlayed": 30, "goalsFor": 34, "goalsAgainst": 47, "points": 32, "rank": 13, "goalDifference": -13}}, {"team": {"name": "FC Ufa", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/17368.png", "abbreviation": "UFA"}, "stats": {"wins": 6, "losses": 12, "ties": 12, "gamesPlayed": 30, "goalsFor": 29, "goalsAgainst": 40, "points": 30, "rank": 14, "goalDifference": -11}}, {"team": {"name": "Rubin Kazan", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/3851.png", "abbreviation": "RUB"}, "stats": {"wins": 8, "losses": 17, "ties": 5, "gamesPlayed": 30, "goalsFor": 34, "goalsAgainst": 56, "points": 29, "rank": 15, "goalDifference": -22}}, {"team": {"name": "FC Arsenal Tula", "logo": "https://a.espncdn.com/i/teamlogos/soccer/500/17495.png", "abbreviation": "TULA"}, "stats": {"wins": 5, "losses": 17, "ties": 8, "gamesPlayed": 30, "goalsFor": 30, "goalsAgainst": 59, "points": 23, "rank": 16, "goalDifference": -29}}] | {"$schema": "http://json-schema.org/schema#", "type": "array", "items": {"type": "object", "properties": {"team": {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["abbreviation", "logo", "name"]}, "stats": {"type": "object", "properties": {"wins": {"type": "integer"}, "losses": {"type": "integer"}, "ties": {"type": "integer"}, "gamesPlayed": {"type": "integer"}, "goalsFor": {"type": "integer"}, "goalsAgainst": {"type": "integer"}, "points": {"type": "integer"}, "rank": {"type": "integer"}, "goalDifference": {"type": "integer"}}, "required": ["gamesPlayed", "goalDifference", "goalsAgainst", "goalsFor", "losses", "points", "rank", "ties", "wins"]}}, "required": ["stats", "team"]}} |
b300bfc5-95fb-492e-93dd-1cab58b8e454/3ddbed4a-fbc1-4a31-b912-608fc0946ec6/0/0 | BicycleConstructor | BicycleConstructor | null | details | get details | 200 | getDetails | {"data": [{"id": 1, "name": "frame"}, {"id": 2, "name": "cable"}, {"id": 3, "name": "chain"}]} | {"properties": {"data": {"items": {"properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "type": "object"}, "type": "array"}}, "type": "object"} |
af930241-1098-48d7-afd5-ce61c8db7cb0/4e9e2393-5080-4044-b104-fe510da1029e/0/0 | wrestling | A simple wrestling api | 0.1 | Get wrestling news by source | Returns crown jewel news by source | 200 | New Example | {"key1": "value", "key2": "value"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}, "required": ["key1", "key2"]} |
af930241-1098-48d7-afd5-ce61c8db7cb0/ae5304a8-ec51-4980-b5bb-dcf7abba2d8f/0/0 | wrestling | A simple wrestling api | 0.1 | Get all wrestling news | Returns all wrestling news | 200 | New Example | {"key1": "value", "key2": "value"} | {"$schema": "http://json-schema.org/schema#", "type": "object", "properties": {"key1": {"type": "string"}, "key2": {"type": "string"}}, "required": ["key1", "key2"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/ffe3c70a-3d7f-4278-bf39-9533ebf748fb/0/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatches | Retrieve a list of all matches. | 500 | null | {"message": "Internal server error.", "statusCode": 500} | {"type": "object", "properties": {"message": {"type": "string"}, "statusCode": {"type": "number"}}, "required": ["message", "statusCode"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/ffe3c70a-3d7f-4278-bf39-9533ebf748fb/1/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatches | Retrieve a list of all matches. | 200 | null | {"data": [{"id": 1, "round": "Regular Season - 32", "date": "2023-05-20T15:30:00.000Z", "league": "NFL", "season": 2023, "awayTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}, "homeTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}}], "pagination": {"totalCount": 490, "offset": 20, "limit": 100}} | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "number"}, "round": {"type": "string"}, "date": {"type": "string"}, "league": {"type": "string"}, "season": {"type": "number"}, "awayTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}, "homeTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}}, "required": ["id", "round", "date", "league", "season", "awayTeam", "homeTeam"]}}, "pagination": {"type": "object", "properties": {"totalCount": {"type": "number", "description": "Available number of items, relevant to the provided query."}, "offset": {"type": "number"}, "limit": {"type": "number"}}, "required": ["totalCount", "offset", "limit"]}}, "required": ["data", "pagination"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/ffe3c70a-3d7f-4278-bf39-9533ebf748fb/2/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatches | Retrieve a list of all matches. | 400 | null | {"message": "Descriptive bad request error message.", "statusCode": 400} | {"type": "object", "properties": {"message": {"type": "string"}, "statusCode": {"type": "number"}}, "required": ["message", "statusCode"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/7829e641-bff8-4063-83e2-8d6aaca92a8f/0/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatchById | Retrieve match details by match id. | 400 | null | {"message": "Descriptive bad request error message.", "statusCode": 400} | {"type": "object", "properties": {"message": {"type": "string"}, "statusCode": {"type": "number"}}, "required": ["message", "statusCode"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/7829e641-bff8-4063-83e2-8d6aaca92a8f/1/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatchById | Retrieve match details by match id. | 500 | null | {"message": "Internal server error.", "statusCode": 500} | {"type": "object", "properties": {"message": {"type": "string"}, "statusCode": {"type": "number"}}, "required": ["message", "statusCode"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/7829e641-bff8-4063-83e2-8d6aaca92a8f/2/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | MatchController_getMatchById | Retrieve match details by match id. | 200 | null | [{"id": 1, "round": "Regular Season - 32", "date": "2023-05-20T15:30:00.000Z", "league": "NFL", "season": 2023, "awayTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}, "homeTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}}] | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "number"}, "round": {"type": "string"}, "date": {"type": "string"}, "league": {"type": "string"}, "season": {"type": "number"}, "awayTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}, "homeTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}}, "required": ["id", "round", "date", "league", "season", "awayTeam", "homeTeam"]}} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/43b87474-03b8-447f-8007-c897b0390732/0/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | HighlightsController_getHighlights | Retrieve a list of all highlights. | 400 | null | {"message": "Descriptive bad request error message.", "statusCode": 400} | {"type": "object", "properties": {"message": {"type": "string"}, "statusCode": {"type": "number"}}, "required": ["message", "statusCode"]} |
8d2f36e9-863f-41be-b617-3e31c635c6ae/43b87474-03b8-447f-8007-c897b0390732/1/0 | NFL, NCAA Highlights API | Real time NFL, NCAA highlights covering jaw dropping plays, match recaps, post match interviews. | 7.6 | HighlightsController_getHighlights | Retrieve a list of all highlights. | 200 | null | {"data": [{"id": 1, "type": "VERIFIED", "imgUrl": {}, "title": "NFL: New Orleans Saints vs Kansas City Chiefs", "description": {}, "url": "https://example.com/highlight/v23r23fds2cff", "match": {"id": 1, "round": "Regular Season - 32", "date": "2023-05-20T15:30:00.000Z", "league": "NFL", "season": 2023, "awayTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}, "homeTeam": {"id": 1, "logo": {}, "name": {}, "displayName": "New Orleans Saints", "abbreviation": "NO"}}}], "pagination": {"totalCount": 490, "offset": 20, "limit": 100}} | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "number"}, "type": {"type": "string"}, "imgUrl": {"type": "object", "description": "Preview picture of the highlight."}, "title": {"type": "string"}, "description": {"type": "object"}, "url": {"type": "string", "description": "Url location of the video highlight."}, "match": {"type": "object", "properties": {"id": {"type": "number"}, "round": {"type": "string"}, "date": {"type": "string"}, "league": {"type": "string"}, "season": {"type": "number"}, "awayTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}, "homeTeam": {"type": "object", "properties": {"id": {"type": "number"}, "logo": {"type": "object"}, "name": {"type": "object"}, "displayName": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["id", "displayName", "abbreviation"]}}, "required": ["id", "round", "date", "league", "season", "awayTeam", "homeTeam"]}}, "required": ["id", "type", "title", "url", "match"]}}, "pagination": {"type": "object", "properties": {"totalCount": {"type": "number", "description": "Available number of items, relevant to the provided query."}, "offset": {"type": "number"}, "limit": {"type": "number"}}, "required": ["totalCount", "offset", "limit"]}}, "required": ["data", "pagination"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.