diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..803f2dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +.idea +.php_cs +.php-cs-fixer.cache +.phpunit.result.cache +build +composer.lock +coverage +docs +psalm.xml +vendor diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1f8029a --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2023 slvler + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b723103 --- /dev/null +++ b/README.md @@ -0,0 +1,390 @@ +# slvler - Live Score Service + +[![tests](https://github.com/slvler/phone-validation/actions/workflows/tests.yml/badge.svg)](https://github.com/slvler/phone-validation/actions/workflows/tests.yml) +[![Latest Stable Version](http://poser.pugx.org/slvler/phone-validation/v)](https://packagist.org/packages/slvler/phone-validation) +[![Latest Unstable Version](http://poser.pugx.org/slvler/phone-validation/v/unstable)](https://packagist.org/packages/slvler/phone-validation) +[![License](http://poser.pugx.org/slvler/phone-validation/license)](https://packagist.org/packages/slvler/phone-validation) + + +Live Score Client for api-football.com + +Welcome to Api-Football! You can use our API to access all API endpoints, which can get information about Football Leagues & Cups. + +## Installation + +To install this package tou can use composer: + +```bash + composer require slvler/livescore-service +``` +## Usage + +- First, you should extract the config/livescore.php file to the config folder. + +```php + php artisan vendor:publish --tag=livescore +``` + +- API key to be obtained from api-football.com address should be declared. This is your private API key, specific to this API. + +```php + 'livescore' => [ + 'base_url' => 'v3.football.api-sports.io', + 'api_key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', + ], +``` + +## Basic usage + + +### Example +```php +use slvler\LiveScoreService\LiveScoreClient; + +$client = new LiveScoreClient(); +``` + +## Available methods + +### General + +#### [Status](https://www.api-football.com/documentation-v3) + +Get the list status + +```php +$data = $client->general()->getStatus(); +``` + +### Countries + +#### [Countries](https://www.api-football.com/documentation-v3#tag/Countries) + +Get the list of available countries for the leagues endpoint. + +```php +$data = $client->countries()->getAll(); +``` + +The name and code fields can be used in other endpoints as filters. + +```php +$data = $client->countries()->getAll(['code' => 'FR']); +``` + +### Leagues + +#### [Countries](https://www.api-football.com/documentation-v3#tag/Leagues) + +Get the list of available leagues and cups. This endpoint also returns the coverage of each competition, which makes it possible to know what is available for that league or cup. + +```php + $variable = $client->leagues()->getLeagues(['season' => '2018', 'id' => '33']); +``` + +#### [Seasons](https://www.api-football.com/documentation-v3#tag/Leagues/operation/get-seasons) + +All seasons are only 4-digit keys, so for a league whose season is 2018-2019 like the English Premier League (EPL), the 2018-2019 season in the API will be 2018. + +```php + $variable = $client->leagues()->getLeaguesSeasons(); +``` + +### Teams + +#### [Teams Information](https://www.api-football.com/documentation-v3#tag/Teams) + +Get the list of available teams. The team id are unique in the API and teams keep it among all the leagues/cups in which they participate. + +```php + $variable = $client->team()->getTeamsInformation(['name' => 'manchester united']); +``` + +#### [Teams Statistics](https://www.api-football.com/documentation-v3#tag/Teams/operation/get-teams) + +The team id are unique in the API and teams keep it among all the leagues/cups in which they participate. + +```php + $variable = $client->team()->getTeamsStatistics(['league' => '39', 'team' => '33', 'season' => '2019']); +``` + +#### [Teams Seasons](https://www.api-football.com/documentation-v3#tag/Teams/operation/get-teams-seasons) + +Get the list of seasons available for a team. +```php + $variable = $client->team()->getTeamsSeasons(['team' => '33']); +``` + +#### [Teams Countries](https://www.api-football.com/documentation-v3#tag/Teams/operation/get-teams-countries) + +Get the list of countries available for the teams endpoint. + +```php + $variable = $client->team()->getTeamCountries(); +``` + +### Venues + +#### [Venues](https://www.api-football.com/documentation-v3#tag/Venues) + +Get the list of available venues. The venue id are unique in the API. + +```php + $variable = $client->venues()->getVenues(['name' => 'Old Trafford']); +``` + +### Standings + +#### [Standings](https://www.api-football.com/documentation-v3#tag/Standings) + +Get the standings for a league or a team. Return a table of one or more rankings according to the league / cup. + +```php + $variable = $client->standings()->getStandings([ 'league' => '39', 'season' => '2019']); +``` + +### Fixtures + +#### [Rounds](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-rounds) + +Get the rounds for a league or a cup. The round can be used in endpoint fixtures as filters + +```php + $variable = $client->fixtures()->getRounds(['league' => '39', 'season' => 2019]); +``` + +#### [Fixtures](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures) + +For all requests to fixtures you can add the query parameter timezone to your request in order to retrieve the list of matches in the time zone of your choice like “Europe/London“ + +```php + $variable = $client->fixtures()->getFixtures(['id' => '215662']); +``` + +#### [Head To Head](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-headtohead) + +Get heads to heads between two teams. + +```php + $variable = $client->fixtures()->getHeadToHead(['h2h' => '33-34']); +``` + +#### [Statistics](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-statistics) + +Get the statistics for one fixture. + +```php + $variable = $client->fixtures()->getStatistics(['fixture' => '215662']); +``` + +#### [Events](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-events) + +Get the events from a fixture. + +```php + $variable = $client->fixtures()->getEvents(['fixture' => '215662']); +``` + +#### [Lineups](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-events) + +Get the lineups for a fixture. +Lineups are available between 20 and 40 minutes before the fixture when the competition covers this feature. You can check this with the endpoint leagues and the coverage field. + +```php + $variable = $client->fixtures()->getLineups(['fixture' => '592872']); +``` + +#### [Players statistics](https://www.api-football.com/documentation-v3#tag/Fixtures/operation/get-fixtures-players) + +Get the players statistics from one fixture. + +```php + $variable = $client->fixtures()->getPlayersStatistics(['fixture' => '169080']); +``` + +### Injuries + +#### [Injuries](https://www.api-football.com/documentation-v3#tag/Injuries/operation/get-injuries) + +Get the list of players not participating in the fixtures for various reasons such as suspended, injured for example + +```php + $variable = $client->injuries()->getInjuries(['league' => '2', 'season' => '2020']); +``` + +### Predictions + +#### [Predictions](https://www.api-football.com/documentation-v3#tag/Predictions/operation/get-predictions) + +Get predictions about a fixture. +The predictions are made using several algorithms including the poisson distribution, comparison of team statistics, last matches, players etc… + +```php + $variable = $client->predictions()->getPredictions(['fixture' => '198772']); +``` + +### Coachs + +#### [Coachs](https://www.api-football.com/documentation-v3#tag/Coachs/operation/get-coachs) + +Get all the information about the coachs and their careers. + +```php + $variable = $client->coachs()->getCoachs(['id' => '1']); +``` + +### Players + +#### [Seasons](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-seasons) + +Get all available seasons for players statistics. + +```php + $variable = $client->players()->getSeasons(['player' => '276']); +``` + +#### [Players](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players) + +Get players statistics. + +```php + $variable = $client->players()->getPlayers(['id' => '19088', 'season' => '2018']); +``` + +#### [Squads](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-squads) + +Return the current squad of a team when the team parameter is used. When the player parameter is used the endpoint returns the set of teams associated with the player. + +```php + $variable = $client->players()->getSquads(['team' => '33']); +``` + +#### [Top Scorers](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-topscorers) + +Get the 20 best players for a league or cup. + +```php + $variable = $client->players()->getTopScorers(['season' => '2018', 'league' => '61']); +``` + +#### [Top Assists](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-topassists) + +Get the 20 best players assists for a league or cup. +```php + $variable = $client->players()->getTopAssists(['season' => '2020', 'league' => '61']); +``` + +#### [Top Yellow Cards](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-topyellowcards) + +Get the 20 players with the most yellow cards for a league or cup. + +```php + $variable = $client->players()->getTopYellowCards(['season' => '2020', 'league' => '61']); +``` + +#### [Top Red Cards](https://www.api-football.com/documentation-v3#tag/Players/operation/get-players-topredcards) + +Get the 20 players with the most red cards for a league or cup. + +```php + $variable = $client->players()->getTopRedCards(['season' => '2020', 'league' => '61']); +``` + +### Transfers + +#### [Transfers](https://www.api-football.com/documentation-v3#tag/Transfers/operation/get-transfers) + +Get all available transfers for players and teams + +```php + $variable = $client->transfer()->getTransfer(['player' => '35845']); +``` + +### Trophies + +#### [Transfers](https://www.api-football.com/documentation-v3#tag/Trophies/operation/get-trophies) + +Get all available trophies for a player or a coach. + +```php + $variable = $client->trophies()->getTrophies(['player' => '35845']); +``` + +### Sidelined + +#### [Sidelined](https://www.api-football.com/documentation-v3#tag/Sidelined/operation/get-sidelined) + +Get all available sidelined for a player or a coach. + +```php + $variable = $client->sidelined()->getSidelined(['player' => '276']); +``` + +### Odds + +#### [Odds / Live](https://www.api-football.com/documentation-v3#tag/Odds-(In-Play)/operation/get-odds-live) + +This endpoint returns in-play odds for fixtures in progress. + +```php + $variable = $client->odds()->getOddsLive(); +``` + +#### [Odds / Live / Bets](https://www.api-football.com/documentation-v3#tag/Odds-(In-Play)/operation/get-bets) + +Get all available bets for in-play odds. + +```php + $variable = $client->odds()->getOddsLivBets(['id' => "1"]); +``` + +#### [Odds](https://www.api-football.com/documentation-v3#tag/Odds-(Pre-Match)/operation/get-odds) + +Get odds from fixtures, leagues or date. + +```php + $variable = $client->odds()->getOdds(['date' => "2020-05-15"]); +``` + +#### [Mapping](https://www.api-football.com/documentation-v3#tag/Odds-(Pre-Match)/operation/get-odds-mapping) + +Get the list of available fixtures id for the endpoint odds. + +```php + $variable = $client->odds()->getOddsMapping(); +``` + +#### [Bookmakers](https://www.api-football.com/documentation-v3#tag/Odds-(Pre-Match)/operation/get-bookmakers) + +Get all available bookmakers. + +```php + $variable = $client->odds()->getOddsBookmakers(); +``` + +#### [Bets](https://www.api-football.com/documentation-v3#tag/Odds-(Pre-Match)/operation/get-bets) + +Get all available bets for pre-match odds. + +```php + $variable = $client->odds()->getOddsBets(); +``` + + + + +### Testing + +```bash + composer test +``` + +## Credits + +- [slvler](https://github.com/slvler) + + +## License + +The MIT License (MIT). Please see [License File](https://github.com/slvler/btcturk-api/blob/main/LICENSE) for more information. + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b31da6c --- /dev/null +++ b/composer.json @@ -0,0 +1,41 @@ +{ + "name": "slvler/livescore-service", + "license": "MIT", + "description": "live score service API for api-football.com", + "type": "package", + "authors": [ + { + "name": "slvler", + "email": "slvler@proton.me" + } + ], + "autoload": { + "psr-4": { + "slvler\\LiveScoreService\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "slvler\\LiveScoreService\\Tests\\": "tests/" + } + }, + "require": {}, + "require-dev": { + "orchestra/testbench": "^6.18.0", + "phpunit/phpunit": "^9.5", + "guzzlehttp/guzzle": "^7.0.1" + }, + "scripts": { + "test": "vendor/bin/phpunit tests" + }, + "extra": { + "laravel": { + "providers": [ + "slvler\\LiveScoreService\\LiveScoreServiceProvider" + ], + "aliases": { + "LiveScore": "slvler\\LiveScoreService\\Facades\\LiveScore" + } + } + } +} diff --git a/config/livescore.php b/config/livescore.php new file mode 100644 index 0000000..de11fd6 --- /dev/null +++ b/config/livescore.php @@ -0,0 +1,8 @@ + [ + 'base_url' => 'v3.football.api-sports.io', + 'api_key' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', + ], +]; diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..60ddc93 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,12 @@ + + + + + tests + + + diff --git a/src/Api/Api.php b/src/Api/Api.php new file mode 100644 index 0000000..cc48e4c --- /dev/null +++ b/src/Api/Api.php @@ -0,0 +1,29 @@ +client = $client; + } + + public function get(string $uri, array $option = []) + { + $response = $this->client->getHttpClient()->request("GET", $uri , $option); + $this->transformer = new ResponseTransformer($response); + return $this->transformer->toArray(); + } + + +} diff --git a/src/Api/Coachs.php b/src/Api/Coachs.php new file mode 100644 index 0000000..fd8a5c8 --- /dev/null +++ b/src/Api/Coachs.php @@ -0,0 +1,21 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/coachs', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Countries.php b/src/Api/Countries.php new file mode 100644 index 0000000..d1354f1 --- /dev/null +++ b/src/Api/Countries.php @@ -0,0 +1,21 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/countries', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Fixtures.php b/src/Api/Fixtures.php new file mode 100644 index 0000000..5d74c6b --- /dev/null +++ b/src/Api/Fixtures.php @@ -0,0 +1,100 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/rounds', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getFixtures(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getHeadToHead(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/headtohead', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getStatistics(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/statistics', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getEvents(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/events', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getLineups(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/lineups', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getPlayersStatistics(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/fixtures/players', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + +} diff --git a/src/Api/General.php b/src/Api/General.php new file mode 100644 index 0000000..d15a1e2 --- /dev/null +++ b/src/Api/General.php @@ -0,0 +1,21 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/status', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers + ]); + } +} diff --git a/src/Api/Injuries.php b/src/Api/Injuries.php new file mode 100644 index 0000000..bda6a9b --- /dev/null +++ b/src/Api/Injuries.php @@ -0,0 +1,22 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/injuries', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Leagues.php b/src/Api/Leagues.php new file mode 100644 index 0000000..aed654e --- /dev/null +++ b/src/Api/Leagues.php @@ -0,0 +1,35 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/leagues', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getLeaguesSeasons(): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/leagues/seasons', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers + ]); + } +} diff --git a/src/Api/Odds.php b/src/Api/Odds.php new file mode 100644 index 0000000..bf820d8 --- /dev/null +++ b/src/Api/Odds.php @@ -0,0 +1,91 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/odds/live', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getOddsLivBets(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/odds/live/bets', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getOdds(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/odds', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getOddsMapping(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/odds/mapping', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getOddsBookmakers(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/odds/bookmakers', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getOddsBets(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/odds/bets', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + +} diff --git a/src/Api/Players.php b/src/Api/Players.php new file mode 100644 index 0000000..133ba04 --- /dev/null +++ b/src/Api/Players.php @@ -0,0 +1,105 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/players/seasons', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getPlayers(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/players', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getSquads(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/players/squads', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTopScorers(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/players/topscorers', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTopAssists(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/players/topassists', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTopYellowCards(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/players/topyellowcards', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTopRedCards(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/players/topredcards', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + +} diff --git a/src/Api/Predictions.php b/src/Api/Predictions.php new file mode 100644 index 0000000..51c9b05 --- /dev/null +++ b/src/Api/Predictions.php @@ -0,0 +1,22 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/predictions', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + +} diff --git a/src/Api/Setting.php b/src/Api/Setting.php new file mode 100644 index 0000000..596ef4d --- /dev/null +++ b/src/Api/Setting.php @@ -0,0 +1,19 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/sidelined', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Standings.php b/src/Api/Standings.php new file mode 100644 index 0000000..0e82360 --- /dev/null +++ b/src/Api/Standings.php @@ -0,0 +1,22 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/standings', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Teams.php b/src/Api/Teams.php new file mode 100644 index 0000000..e062b8a --- /dev/null +++ b/src/Api/Teams.php @@ -0,0 +1,62 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/teams', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTeamsStatistics(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/teams/statistics', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTeamsSeasons(array $params = []): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/teams/seasons', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } + + public function getTeamCountries(): array + { + $headers = [ + 'x-rapidapi-host' => Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/teams/countries', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers + ]); + } + + +} diff --git a/src/Api/Transfers.php b/src/Api/Transfers.php new file mode 100644 index 0000000..45c8d49 --- /dev/null +++ b/src/Api/Transfers.php @@ -0,0 +1,22 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + + return $this->get('/transfers', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Trophies.php b/src/Api/Trophies.php new file mode 100644 index 0000000..102040c --- /dev/null +++ b/src/Api/Trophies.php @@ -0,0 +1,21 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/trophies', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Api/Venues.php b/src/Api/Venues.php new file mode 100644 index 0000000..94334fe --- /dev/null +++ b/src/Api/Venues.php @@ -0,0 +1,21 @@ + Setting::getBaseUrl(), + "x-rapidapi-key" => Setting::getApiKey() + ]; + return $this->get('/venues', [ + 'base_uri' => 'https://v3.football.api-sports.io', + 'headers' => $headers, + 'query' => $params + ]); + } +} diff --git a/src/Exceptions/TransformResponseException.php b/src/Exceptions/TransformResponseException.php new file mode 100644 index 0000000..1766a4f --- /dev/null +++ b/src/Exceptions/TransformResponseException.php @@ -0,0 +1,12 @@ +logged = new Record(); + $this->httpClient = $client ?: new Client( + [ + 'handler' => $this->logged->loggered() + ]); + } + + public function getHttpClient(): Client + { + return $this->httpClient; + } + public function countries(): Countries + { + return new Countries($this); + } + public function leagues(): Leagues + { + return new Leagues($this); + } + public function general(): General + { + return new General($this); + } + public function team(): Teams + { + return new Teams($this); + } + public function venues(): Venues + { + return new Venues($this); + } + public function standings(): Standings + { + return new Standings($this); + } + public function fixtures(): Fixtures + { + return new Fixtures($this); + } + public function injuries(): Injuries + { + return new Injuries($this); + } + public function predictions(): Predictions + { + return new Predictions($this); + } + public function coachs(): Coachs + { + return new Coachs($this); + } + public function players(): Players + { + return new Players($this); + } + public function transfer(): Transfers + { + return new Transfers($this); + } + public function trophies(): Trophies + { + return new Trophies($this); + } + public function sidelined(): Sidelined + { + return new Sidelined($this); + } + public function odds(): Odds + { + return new Odds($this); + } +} diff --git a/src/LiveScoreServiceProvider.php b/src/LiveScoreServiceProvider.php new file mode 100644 index 0000000..3709c6b --- /dev/null +++ b/src/LiveScoreServiceProvider.php @@ -0,0 +1,33 @@ +app->bind('LiveScore', function($app) { + return new LiveScore(); + }); + } + public function boot() + { + if ($this->app->runningInConsole()) { + $this->publishResources(); + } + } + + protected function publishResources() + { + $this->publishes([ + __DIR__.'/../config/livescore.php' => config_path('livescore.php'), + ], 'livescore'); + } + + + + +} diff --git a/src/Log/LiveScore.log b/src/Log/LiveScore.log new file mode 100644 index 0000000..5c5bd15 --- /dev/null +++ b/src/Log/LiveScore.log @@ -0,0 +1,76 @@ +[2023-03-20T20:36:39.885302+01:00] LiveScore.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:40.174419+01:00] LiveScore.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T20:36:40.464010+01:00] LiveScore.INFO: - {"get":"leagues\/seasons","parameters":[],"errors":[],"results":17,"paging":{"current":1,"total":1},"response":[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024]} [] [] +[2023-03-20T20:36:40.698968+01:00] LiveScore.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T20:36:40.911837+01:00] LiveScore.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:36:41.155561+01:00] LiveScore.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:36:41.416083+01:00] LiveScore.INFO: - {"get":"venues","parameters":{"name":"Old Trafford"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","country":"England","capacity":76212,"surface":"grass","image":"https:\/\/media-3.api-sports.io\/football\/venues\/556.png"}]} [] [] +[2023-03-20T20:36:41.761986+01:00] LiveScore.INFO: - {"get":"standings","parameters":{"league":"39","season":"2019"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2019,"standings":[[{"rank":1,"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"points":99,"goalsDiff":52,"group":"Premier League","form":"WWLDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":32,"draw":3,"lose":3,"goals":{"for":85,"against":33}},"home":{"played":19,"win":18,"draw":1,"lose":0,"goals":{"for":52,"against":16}},"away":{"played":19,"win":14,"draw":2,"lose":3,"goals":{"for":33,"against":17}},"update":"2020-07-26T00:00:00+00:00"},{"rank":2,"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/50.png"},"points":81,"goalsDiff":67,"group":"Premier League","form":"WWWWW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":26,"draw":3,"lose":9,"goals":{"for":102,"against":35}},"home":{"played":19,"win":15,"draw":2,"lose":2,"goals":{"for":57,"against":13}},"away":{"played":19,"win":11,"draw":1,"lose":7,"goals":{"for":45,"against":22}},"update":"2020-07-26T00:00:00+00:00"},{"rank":3,"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png"},"points":66,"goalsDiff":30,"group":"Premier League","form":"WDWDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":18,"draw":12,"lose":8,"goals":{"for":66,"against":36}},"home":{"played":19,"win":10,"draw":7,"lose":2,"goals":{"for":40,"against":17}},"away":{"played":19,"win":8,"draw":5,"lose":6,"goals":{"for":26,"against":19}},"update":"2020-07-26T00:00:00+00:00"},{"rank":4,"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"points":66,"goalsDiff":15,"group":"Premier League","form":"WLWLW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":20,"draw":6,"lose":12,"goals":{"for":69,"against":54}},"home":{"played":19,"win":11,"draw":3,"lose":5,"goals":{"for":30,"against":16}},"away":{"played":19,"win":9,"draw":3,"lose":7,"goals":{"for":39,"against":38}},"update":"2020-07-26T00:00:00+00:00"},{"rank":5,"team":{"id":46,"name":"Leicester","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/46.png"},"points":62,"goalsDiff":26,"group":"Premier League","form":"LLWLD","status":"same","description":"Promotion - Europa League (Group Stage)","all":{"played":38,"win":18,"draw":8,"lose":12,"goals":{"for":67,"against":41}},"home":{"played":19,"win":11,"draw":4,"lose":4,"goals":{"for":35,"against":17}},"away":{"played":19,"win":7,"draw":4,"lose":8,"goals":{"for":32,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":6,"team":{"id":47,"name":"Tottenham","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/47.png"},"points":59,"goalsDiff":14,"group":"Premier League","form":"DWWWD","status":"same","description":"Promotion - Europa League (Qualification)","all":{"played":38,"win":16,"draw":11,"lose":11,"goals":{"for":61,"against":47}},"home":{"played":19,"win":12,"draw":3,"lose":4,"goals":{"for":36,"against":17}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":25,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":7,"team":{"id":39,"name":"Wolves","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/39.png"},"points":59,"goalsDiff":11,"group":"Premier League","form":"LWDWL","status":"same","description":null,"all":{"played":38,"win":15,"draw":14,"lose":9,"goals":{"for":51,"against":40}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":27,"against":19}},"away":{"played":19,"win":7,"draw":7,"lose":5,"goals":{"for":24,"against":21}},"update":"2020-07-26T00:00:00+00:00"},{"rank":8,"team":{"id":42,"name":"Arsenal","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/42.png"},"points":56,"goalsDiff":8,"group":"Premier League","form":"WLWLD","status":"same","description":null,"all":{"played":38,"win":14,"draw":14,"lose":10,"goals":{"for":56,"against":48}},"home":{"played":19,"win":10,"draw":6,"lose":3,"goals":{"for":36,"against":24}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":20,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":9,"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/62.png"},"points":54,"goalsDiff":0,"group":"Premier League","form":"LLLWW","status":"same","description":null,"all":{"played":38,"win":14,"draw":12,"lose":12,"goals":{"for":39,"against":39}},"home":{"played":19,"win":10,"draw":3,"lose":6,"goals":{"for":24,"against":15}},"away":{"played":19,"win":4,"draw":9,"lose":6,"goals":{"for":15,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":10,"team":{"id":44,"name":"Burnley","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/44.png"},"points":54,"goalsDiff":-7,"group":"Premier League","form":"LWDDW","status":"same","description":null,"all":{"played":38,"win":15,"draw":9,"lose":14,"goals":{"for":43,"against":50}},"home":{"played":19,"win":8,"draw":4,"lose":7,"goals":{"for":24,"against":23}},"away":{"played":19,"win":7,"draw":5,"lose":7,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":11,"team":{"id":41,"name":"Southampton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/41.png"},"points":52,"goalsDiff":-9,"group":"Premier League","form":"WWDDD","status":"same","description":null,"all":{"played":38,"win":15,"draw":7,"lose":16,"goals":{"for":51,"against":60}},"home":{"played":19,"win":6,"draw":3,"lose":10,"goals":{"for":21,"against":35}},"away":{"played":19,"win":9,"draw":4,"lose":6,"goals":{"for":30,"against":25}},"update":"2020-07-26T00:00:00+00:00"},{"rank":12,"team":{"id":45,"name":"Everton","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/45.png"},"points":49,"goalsDiff":-12,"group":"Premier League","form":"LWDLD","status":"same","description":null,"all":{"played":38,"win":13,"draw":10,"lose":15,"goals":{"for":44,"against":56}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":24,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":20,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":13,"team":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png"},"points":44,"goalsDiff":-20,"group":"Premier League","form":"LDLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":11,"lose":16,"goals":{"for":38,"against":58}},"home":{"played":19,"win":6,"draw":8,"lose":5,"goals":{"for":20,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":18,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":14,"team":{"id":52,"name":"Crystal Palace","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/52.png"},"points":43,"goalsDiff":-19,"group":"Premier League","form":"DLLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":10,"lose":17,"goals":{"for":31,"against":50}},"home":{"played":19,"win":6,"draw":5,"lose":8,"goals":{"for":15,"against":20}},"away":{"played":19,"win":5,"draw":5,"lose":9,"goals":{"for":16,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":15,"team":{"id":51,"name":"Brighton","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/51.png"},"points":41,"goalsDiff":-15,"group":"Premier League","form":"WDDLL","status":"same","description":null,"all":{"played":38,"win":9,"draw":14,"lose":15,"goals":{"for":39,"against":54}},"home":{"played":19,"win":5,"draw":7,"lose":7,"goals":{"for":20,"against":27}},"away":{"played":19,"win":4,"draw":7,"lose":8,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":16,"team":{"id":48,"name":"West Ham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/48.png"},"points":39,"goalsDiff":-13,"group":"Premier League","form":"DDWWL","status":"same","description":null,"all":{"played":38,"win":10,"draw":9,"lose":19,"goals":{"for":49,"against":62}},"home":{"played":19,"win":6,"draw":4,"lose":9,"goals":{"for":30,"against":33}},"away":{"played":19,"win":4,"draw":5,"lose":10,"goals":{"for":19,"against":29}},"update":"2020-07-26T00:00:00+00:00"},{"rank":17,"team":{"id":66,"name":"Aston Villa","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/66.png"},"points":35,"goalsDiff":-26,"group":"Premier League","form":"DWDWL","status":"same","description":null,"all":{"played":38,"win":9,"draw":8,"lose":21,"goals":{"for":41,"against":67}},"home":{"played":19,"win":7,"draw":3,"lose":9,"goals":{"for":22,"against":30}},"away":{"played":19,"win":2,"draw":5,"lose":12,"goals":{"for":19,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":18,"team":{"id":35,"name":"Bournemouth","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/35.png"},"points":34,"goalsDiff":-25,"group":"Premier League","form":"WLLWD","status":"same","description":"Relegation - Championship","all":{"played":38,"win":9,"draw":7,"lose":22,"goals":{"for":40,"against":65}},"home":{"played":19,"win":5,"draw":6,"lose":8,"goals":{"for":22,"against":30}},"away":{"played":19,"win":4,"draw":1,"lose":14,"goals":{"for":18,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":19,"team":{"id":38,"name":"Watford","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/38.png"},"points":34,"goalsDiff":-28,"group":"Premier League","form":"LLLWW","status":"same","description":"Relegation - Championship","all":{"played":38,"win":8,"draw":10,"lose":20,"goals":{"for":36,"against":64}},"home":{"played":19,"win":6,"draw":6,"lose":7,"goals":{"for":22,"against":27}},"away":{"played":19,"win":2,"draw":4,"lose":13,"goals":{"for":14,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":20,"team":{"id":71,"name":"Norwich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/71.png"},"points":21,"goalsDiff":-49,"group":"Premier League","form":"LLLLL","status":"same","description":"Relegation - Championship","all":{"played":38,"win":5,"draw":6,"lose":27,"goals":{"for":26,"against":75}},"home":{"played":19,"win":4,"draw":3,"lose":12,"goals":{"for":19,"against":37}},"away":{"played":19,"win":1,"draw":3,"lose":15,"goals":{"for":7,"against":38}},"update":"2020-07-26T00:00:00+00:00"}]]}}]} [] [] +[2023-03-20T20:36:41.994748+01:00] LiveScore.INFO: - {"get":"fixtures\/rounds","parameters":{"league":"39","season":"2019"},"errors":[],"results":38,"paging":{"current":1,"total":1},"response":["Regular Season - 1","Regular Season - 2","Regular Season - 3","Regular Season - 4","Regular Season - 5","Regular Season - 6","Regular Season - 7","Regular Season - 8","Regular Season - 9","Regular Season - 10","Regular Season - 11","Regular Season - 12","Regular Season - 13","Regular Season - 14","Regular Season - 15","Regular Season - 16","Regular Season - 17","Regular Season - 18","Regular Season - 19","Regular Season - 20","Regular Season - 21","Regular Season - 22","Regular Season - 23","Regular Season - 24","Regular Season - 25","Regular Season - 26","Regular Season - 27","Regular Season - 28","Regular Season - 29","Regular Season - 30","Regular Season - 31","Regular Season - 32","Regular Season - 33","Regular Season - 34","Regular Season - 35","Regular Season - 36","Regular Season - 37","Regular Season - 38"]} [] [] +[2023-03-20T20:36:42.405178+01:00] LiveScore.INFO: - {"get":"fixtures","parameters":{"id":"215662"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":215662,"referee":"H. Mastr\u00e1ngelo","timezone":"UTC","date":"2019-10-20T14:00:00+00:00","timestamp":1571580000,"periods":{"first":1571580000,"second":1571583600},"venue":{"id":33,"name":"Estadio Jos\u00e9 Mar\u00eda Minella","city":"Mar del Plata, Provincia de Buenos Aires"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":128,"name":"Liga Profesional Argentina","country":"Argentina","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/128.png","flag":"https:\/\/media-2.api-sports.io\/flags\/ar.svg","season":2019,"round":"Regular Season - 10"},"teams":{"home":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","winner":true},"away":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}},"events":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}],"lineups":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","colors":null},"coach":{"id":3946,"name":"G. Hoyos","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/3946.png"},"formation":"4-3-3","startXI":[{"player":{"id":6258,"name":"L. Pocrnjic","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":6261,"name":"L. Galeano","number":6,"pos":"D","grid":"2:4"}},{"player":{"id":52701,"name":"M. Miers","number":19,"pos":"D","grid":"2:3"}},{"player":{"id":6268,"name":"L. Villalba","number":23,"pos":"D","grid":"2:2"}},{"player":{"id":6262,"name":"E. I\u00f1\u00edguez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":6474,"name":"G. Gil","number":5,"pos":"M","grid":"3:3"}},{"player":{"id":6269,"name":"F. Acevedo","number":8,"pos":"M","grid":"3:2"}},{"player":{"id":6212,"name":"L. Maciel","number":33,"pos":"M","grid":"3:1"}},{"player":{"id":6093,"name":"G. Ver\u00f3n","number":29,"pos":"F","grid":"4:3"}},{"player":{"id":6126,"name":"F. Andrada","number":10,"pos":"F","grid":"4:2"}},{"player":{"id":6561,"name":"N. Sol\u00eds","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":35845,"name":"H. Burbano","number":11,"pos":"M","grid":null}},{"player":{"id":6396,"name":"N. Bazzana","number":27,"pos":"D","grid":null}},{"player":{"id":6550,"name":"F. Grahl","number":22,"pos":"M","grid":null}},{"player":{"id":152779,"name":"F. Tobares","number":40,"pos":"F","grid":null}},{"player":{"id":6255,"name":"F. Assmann","number":35,"pos":"G","grid":null}},{"player":{"id":6399,"name":"F. Evangelista","number":20,"pos":"D","grid":null}},{"player":{"id":5426,"name":"C. Fara","number":2,"pos":"D","grid":null}}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","colors":null},"coach":{"id":896,"name":"M. Soso","photo":"https:\/\/media-3.api-sports.io\/football\/coachs\/896.png"},"formation":"4-4-2","startXI":[{"player":{"id":5932,"name":"E. Unsain","number":22,"pos":"G","grid":"1:1"}},{"player":{"id":5935,"name":"R. Delgado","number":33,"pos":"D","grid":"2:4"}},{"player":{"id":6540,"name":"J. Rodr\u00edguez","number":28,"pos":"D","grid":"2:3"}},{"player":{"id":5936,"name":"J. Gonz\u00e1lez","number":4,"pos":"D","grid":"2:2"}},{"player":{"id":5991,"name":"H. Mart\u00ednez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":5912,"name":"N. Cardozo","number":10,"pos":"M","grid":"3:4"}},{"player":{"id":35695,"name":"D. Rodr\u00edguez","number":15,"pos":null,"grid":"3:3"}},{"player":{"id":6619,"name":"R. Loaiza","number":30,"pos":"M","grid":"3:2"}},{"player":{"id":5942,"name":"A. Castro","number":11,"pos":"M","grid":"3:1"}},{"player":{"id":5954,"name":"F. M\u00e1rquez","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":5952,"name":"N. Fern\u00e1ndez","number":29,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":5947,"name":"B. Merlini","number":7,"pos":"M","grid":null}},{"player":{"id":6059,"name":"G. Mainero","number":8,"pos":"M","grid":null}},{"player":{"id":70767,"name":"B. Ojeda","number":26,"pos":"M","grid":null}},{"player":{"id":9515,"name":"M. Ben\u00edtez","number":3,"pos":"D","grid":null}},{"player":{"id":5929,"name":"N. Avellaneda","number":17,"pos":"G","grid":null}},{"player":{"id":5943,"name":"F. Cerro","number":18,"pos":"M","grid":null}},{"player":{"id":6433,"name":"G. Piovi","number":16,"pos":"D","grid":null}}]}],"statistics":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}],"players":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":6258,"name":"Luciano Pocrnjic","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6258.png"},"statistics":[{"games":{"minutes":90,"number":1,"position":"G","rating":"7.1","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":0},"passes":{"total":13,"key":0,"accuracy":"44%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":6262,"name":"Emanuel I\u00f1iguez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6262.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":8,"key":1,"accuracy":"34%"},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6261,"name":"Leonel Galeano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6261.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":3,"blocks":3,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":2},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":52701,"name":"Marcos Miers","photo":"https:\/\/media-1.api-sports.io\/football\/players\/52701.png"},"statistics":[{"games":{"minutes":90,"number":19,"position":"D","rating":"7.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"46%"},"tackles":{"total":1,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6268,"name":"Lucas Villalba","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6268.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":1,"accuracy":"21%"},"tackles":{"total":1,"blocks":0,"interceptions":6},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6212,"name":"Leandro Maciel","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6212.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":0,"accuracy":"60%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":3},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6474,"name":"Gaston Gil Romero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6474.png"},"statistics":[{"games":{"minutes":79,"number":5,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"38%"},"tackles":{"total":4,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":0,"past":null},"fouls":{"drawn":0,"committed":5},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6269,"name":"Federico Gino","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6269.png"},"statistics":[{"games":{"minutes":90,"number":8,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":19,"key":1,"accuracy":"65%"},"tackles":{"total":2,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6093,"name":"Gonzalo Ver\u00f3n","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6093.png"},"statistics":[{"games":{"minutes":75,"number":29,"position":"F","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6126,"name":"Federico Andrada","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6126.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"F","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6561,"name":"Nazareno Solis","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6561.png"},"statistics":[{"games":{"minutes":74,"number":7,"position":"F","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"61%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6396,"name":"Nicol\u00e1s Bazzana","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6396.png"},"statistics":[{"games":{"minutes":15,"number":27,"position":"D","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35845,"name":"Hern\u00e1n Burbano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35845.png"},"statistics":[{"games":{"minutes":15,"number":11,"position":"M","rating":"3.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":2,"key":0,"accuracy":"40%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":2,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6550,"name":"Francisco Grahl","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6550.png"},"statistics":[{"games":{"minutes":11,"number":22,"position":"M","rating":"6.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":4,"key":0,"accuracy":"100%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":5932,"name":"Ezequiel Unsain","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5932.png"},"statistics":[{"games":{"minutes":90,"number":22,"position":"G","rating":"6.7","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":2},"passes":{"total":39,"key":0,"accuracy":"86%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":5936,"name":"Julio Gonz\u00e1lez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5936.png"},"statistics":[{"games":{"minutes":79,"number":4,"position":"D","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"64%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6540,"name":"Juan Rodriguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6540.png"},"statistics":[{"games":{"minutes":90,"number":28,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":45,"key":0,"accuracy":"73%"},"tackles":{"total":3,"blocks":0,"interceptions":3},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5991,"name":"H\u00e9ctor Mart\u00ednez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5991.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":76,"key":0,"accuracy":"80%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5935,"name":"Rafael Delgado","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5935.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":37,"key":1,"accuracy":"74%"},"tackles":{"total":null,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5942,"name":"Alexis Castro","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5942.png"},"statistics":[{"games":{"minutes":73,"number":11,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":1,"past":2},"fouls":{"drawn":3,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5931,"name":"Diego Rodr\u00edguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5931.png"},"statistics":[{"games":{"minutes":45,"number":15,"position":"M","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"94%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6619,"name":"Raul Loaiza","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6619.png"},"statistics":[{"games":{"minutes":90,"number":30,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":53,"key":0,"accuracy":"85%"},"tackles":{"total":1,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5912,"name":"Neri Cardozo","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5912.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":47,"key":0,"accuracy":"81%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5954,"name":"Fernando M\u00e1rquez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5954.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"5.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":4,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":1,"accuracy":"60%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":3},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5952,"name":"Nicol\u00e1s Fern\u00e1ndez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5952.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":1,"accuracy":"46%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":1,"past":1},"fouls":{"drawn":4,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":70767,"name":"Braian Ojeda","photo":"https:\/\/media-2.api-sports.io\/football\/players\/70767.png"},"statistics":[{"games":{"minutes":11,"number":26,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5947,"name":"Bautista Merlini","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5947.png"},"statistics":[{"games":{"minutes":45,"number":7,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"100%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":3,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6059,"name":"Guido Mainero","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6059.png"},"statistics":[{"games":{"minutes":17,"number":8,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":1,"accuracy":"77%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]}]} [] [] +[2023-03-20T20:36:42.630676+01:00] LiveScore.INFO: - {"get":"fixtures\/headtohead","parameters":{"h2h":"33-34"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:42.924885+01:00] LiveScore.INFO: - {"get":"fixtures\/statistics","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:43.152692+01:00] LiveScore.INFO: - {"get":"fixtures\/events","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:43.429628+01:00] LiveScore.INFO: - {"get":"fixtures\/lineups","parameters":{"fixture":"592872"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:43.681716+01:00] LiveScore.INFO: - {"get":"fixtures\/players","parameters":{"fixture":"169080"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:43.973943+01:00] LiveScore.INFO: - {"get":"injuries","parameters":{"league":"2","season":"2020"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:44.184603+01:00] LiveScore.INFO: - {"get":"predictions","parameters":{"fixture":"198772"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:44.435314+01:00] LiveScore.INFO: - {"get":"coachs","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:44.680856+01:00] LiveScore.INFO: - {"get":"players\/seasons","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:44.870915+01:00] LiveScore.INFO: - {"get":"players","parameters":{"id":"19088","season":"2018"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:45.096705+01:00] LiveScore.INFO: - {"get":"players\/squads","parameters":{"team":"33"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:45.299682+01:00] LiveScore.INFO: - {"get":"players\/topscorers","parameters":{"season":"2018","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:45.535639+01:00] LiveScore.INFO: - {"get":"players\/topassists","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:45.798199+01:00] LiveScore.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:46.020050+01:00] LiveScore.INFO: - {"get":"players\/topredcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:46.236707+01:00] LiveScore.INFO: - {"get":"transfers","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:46.478698+01:00] LiveScore.INFO: - {"get":"trophies","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:46.807583+01:00] LiveScore.INFO: - {"get":"sidelined","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:47.013796+01:00] LiveScore.INFO: - {"get":"odds\/live","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:47.255660+01:00] LiveScore.INFO: - {"get":"odds\/live\/bets","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:47.491913+01:00] LiveScore.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:47.732410+01:00] LiveScore.INFO: - {"get":"odds\/mapping","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:47.983080+01:00] LiveScore.INFO: - {"get":"odds\/bookmakers","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:48.187578+01:00] LiveScore.INFO: - {"get":"odds\/bets","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:36:48.532057+01:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:36.334076+01:00] LiveScore.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:36.561662+01:00] LiveScore.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T20:37:36.768894+01:00] LiveScore.INFO: - {"get":"leagues\/seasons","parameters":[],"errors":[],"results":17,"paging":{"current":1,"total":1},"response":[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024]} [] [] +[2023-03-20T20:37:37.032135+01:00] LiveScore.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T20:37:37.271904+01:00] LiveScore.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:37:37.687403+01:00] LiveScore.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:37:37.933567+01:00] LiveScore.INFO: - {"get":"venues","parameters":{"name":"Old Trafford"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","country":"England","capacity":76212,"surface":"grass","image":"https:\/\/media-3.api-sports.io\/football\/venues\/556.png"}]} [] [] +[2023-03-20T20:37:38.241745+01:00] LiveScore.INFO: - {"get":"standings","parameters":{"league":"39","season":"2019"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2019,"standings":[[{"rank":1,"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"points":99,"goalsDiff":52,"group":"Premier League","form":"WWLDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":32,"draw":3,"lose":3,"goals":{"for":85,"against":33}},"home":{"played":19,"win":18,"draw":1,"lose":0,"goals":{"for":52,"against":16}},"away":{"played":19,"win":14,"draw":2,"lose":3,"goals":{"for":33,"against":17}},"update":"2020-07-26T00:00:00+00:00"},{"rank":2,"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/50.png"},"points":81,"goalsDiff":67,"group":"Premier League","form":"WWWWW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":26,"draw":3,"lose":9,"goals":{"for":102,"against":35}},"home":{"played":19,"win":15,"draw":2,"lose":2,"goals":{"for":57,"against":13}},"away":{"played":19,"win":11,"draw":1,"lose":7,"goals":{"for":45,"against":22}},"update":"2020-07-26T00:00:00+00:00"},{"rank":3,"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png"},"points":66,"goalsDiff":30,"group":"Premier League","form":"WDWDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":18,"draw":12,"lose":8,"goals":{"for":66,"against":36}},"home":{"played":19,"win":10,"draw":7,"lose":2,"goals":{"for":40,"against":17}},"away":{"played":19,"win":8,"draw":5,"lose":6,"goals":{"for":26,"against":19}},"update":"2020-07-26T00:00:00+00:00"},{"rank":4,"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"points":66,"goalsDiff":15,"group":"Premier League","form":"WLWLW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":20,"draw":6,"lose":12,"goals":{"for":69,"against":54}},"home":{"played":19,"win":11,"draw":3,"lose":5,"goals":{"for":30,"against":16}},"away":{"played":19,"win":9,"draw":3,"lose":7,"goals":{"for":39,"against":38}},"update":"2020-07-26T00:00:00+00:00"},{"rank":5,"team":{"id":46,"name":"Leicester","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/46.png"},"points":62,"goalsDiff":26,"group":"Premier League","form":"LLWLD","status":"same","description":"Promotion - Europa League (Group Stage)","all":{"played":38,"win":18,"draw":8,"lose":12,"goals":{"for":67,"against":41}},"home":{"played":19,"win":11,"draw":4,"lose":4,"goals":{"for":35,"against":17}},"away":{"played":19,"win":7,"draw":4,"lose":8,"goals":{"for":32,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":6,"team":{"id":47,"name":"Tottenham","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/47.png"},"points":59,"goalsDiff":14,"group":"Premier League","form":"DWWWD","status":"same","description":"Promotion - Europa League (Qualification)","all":{"played":38,"win":16,"draw":11,"lose":11,"goals":{"for":61,"against":47}},"home":{"played":19,"win":12,"draw":3,"lose":4,"goals":{"for":36,"against":17}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":25,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":7,"team":{"id":39,"name":"Wolves","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/39.png"},"points":59,"goalsDiff":11,"group":"Premier League","form":"LWDWL","status":"same","description":null,"all":{"played":38,"win":15,"draw":14,"lose":9,"goals":{"for":51,"against":40}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":27,"against":19}},"away":{"played":19,"win":7,"draw":7,"lose":5,"goals":{"for":24,"against":21}},"update":"2020-07-26T00:00:00+00:00"},{"rank":8,"team":{"id":42,"name":"Arsenal","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/42.png"},"points":56,"goalsDiff":8,"group":"Premier League","form":"WLWLD","status":"same","description":null,"all":{"played":38,"win":14,"draw":14,"lose":10,"goals":{"for":56,"against":48}},"home":{"played":19,"win":10,"draw":6,"lose":3,"goals":{"for":36,"against":24}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":20,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":9,"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/62.png"},"points":54,"goalsDiff":0,"group":"Premier League","form":"LLLWW","status":"same","description":null,"all":{"played":38,"win":14,"draw":12,"lose":12,"goals":{"for":39,"against":39}},"home":{"played":19,"win":10,"draw":3,"lose":6,"goals":{"for":24,"against":15}},"away":{"played":19,"win":4,"draw":9,"lose":6,"goals":{"for":15,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":10,"team":{"id":44,"name":"Burnley","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/44.png"},"points":54,"goalsDiff":-7,"group":"Premier League","form":"LWDDW","status":"same","description":null,"all":{"played":38,"win":15,"draw":9,"lose":14,"goals":{"for":43,"against":50}},"home":{"played":19,"win":8,"draw":4,"lose":7,"goals":{"for":24,"against":23}},"away":{"played":19,"win":7,"draw":5,"lose":7,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":11,"team":{"id":41,"name":"Southampton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/41.png"},"points":52,"goalsDiff":-9,"group":"Premier League","form":"WWDDD","status":"same","description":null,"all":{"played":38,"win":15,"draw":7,"lose":16,"goals":{"for":51,"against":60}},"home":{"played":19,"win":6,"draw":3,"lose":10,"goals":{"for":21,"against":35}},"away":{"played":19,"win":9,"draw":4,"lose":6,"goals":{"for":30,"against":25}},"update":"2020-07-26T00:00:00+00:00"},{"rank":12,"team":{"id":45,"name":"Everton","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/45.png"},"points":49,"goalsDiff":-12,"group":"Premier League","form":"LWDLD","status":"same","description":null,"all":{"played":38,"win":13,"draw":10,"lose":15,"goals":{"for":44,"against":56}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":24,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":20,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":13,"team":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png"},"points":44,"goalsDiff":-20,"group":"Premier League","form":"LDLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":11,"lose":16,"goals":{"for":38,"against":58}},"home":{"played":19,"win":6,"draw":8,"lose":5,"goals":{"for":20,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":18,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":14,"team":{"id":52,"name":"Crystal Palace","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/52.png"},"points":43,"goalsDiff":-19,"group":"Premier League","form":"DLLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":10,"lose":17,"goals":{"for":31,"against":50}},"home":{"played":19,"win":6,"draw":5,"lose":8,"goals":{"for":15,"against":20}},"away":{"played":19,"win":5,"draw":5,"lose":9,"goals":{"for":16,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":15,"team":{"id":51,"name":"Brighton","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/51.png"},"points":41,"goalsDiff":-15,"group":"Premier League","form":"WDDLL","status":"same","description":null,"all":{"played":38,"win":9,"draw":14,"lose":15,"goals":{"for":39,"against":54}},"home":{"played":19,"win":5,"draw":7,"lose":7,"goals":{"for":20,"against":27}},"away":{"played":19,"win":4,"draw":7,"lose":8,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":16,"team":{"id":48,"name":"West Ham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/48.png"},"points":39,"goalsDiff":-13,"group":"Premier League","form":"DDWWL","status":"same","description":null,"all":{"played":38,"win":10,"draw":9,"lose":19,"goals":{"for":49,"against":62}},"home":{"played":19,"win":6,"draw":4,"lose":9,"goals":{"for":30,"against":33}},"away":{"played":19,"win":4,"draw":5,"lose":10,"goals":{"for":19,"against":29}},"update":"2020-07-26T00:00:00+00:00"},{"rank":17,"team":{"id":66,"name":"Aston Villa","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/66.png"},"points":35,"goalsDiff":-26,"group":"Premier League","form":"DWDWL","status":"same","description":null,"all":{"played":38,"win":9,"draw":8,"lose":21,"goals":{"for":41,"against":67}},"home":{"played":19,"win":7,"draw":3,"lose":9,"goals":{"for":22,"against":30}},"away":{"played":19,"win":2,"draw":5,"lose":12,"goals":{"for":19,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":18,"team":{"id":35,"name":"Bournemouth","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/35.png"},"points":34,"goalsDiff":-25,"group":"Premier League","form":"WLLWD","status":"same","description":"Relegation - Championship","all":{"played":38,"win":9,"draw":7,"lose":22,"goals":{"for":40,"against":65}},"home":{"played":19,"win":5,"draw":6,"lose":8,"goals":{"for":22,"against":30}},"away":{"played":19,"win":4,"draw":1,"lose":14,"goals":{"for":18,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":19,"team":{"id":38,"name":"Watford","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/38.png"},"points":34,"goalsDiff":-28,"group":"Premier League","form":"LLLWW","status":"same","description":"Relegation - Championship","all":{"played":38,"win":8,"draw":10,"lose":20,"goals":{"for":36,"against":64}},"home":{"played":19,"win":6,"draw":6,"lose":7,"goals":{"for":22,"against":27}},"away":{"played":19,"win":2,"draw":4,"lose":13,"goals":{"for":14,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":20,"team":{"id":71,"name":"Norwich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/71.png"},"points":21,"goalsDiff":-49,"group":"Premier League","form":"LLLLL","status":"same","description":"Relegation - Championship","all":{"played":38,"win":5,"draw":6,"lose":27,"goals":{"for":26,"against":75}},"home":{"played":19,"win":4,"draw":3,"lose":12,"goals":{"for":19,"against":37}},"away":{"played":19,"win":1,"draw":3,"lose":15,"goals":{"for":7,"against":38}},"update":"2020-07-26T00:00:00+00:00"}]]}}]} [] [] +[2023-03-20T20:37:38.479750+01:00] LiveScore.INFO: - {"get":"fixtures\/rounds","parameters":{"league":"39","season":"2019"},"errors":[],"results":38,"paging":{"current":1,"total":1},"response":["Regular Season - 1","Regular Season - 2","Regular Season - 3","Regular Season - 4","Regular Season - 5","Regular Season - 6","Regular Season - 7","Regular Season - 8","Regular Season - 9","Regular Season - 10","Regular Season - 11","Regular Season - 12","Regular Season - 13","Regular Season - 14","Regular Season - 15","Regular Season - 16","Regular Season - 17","Regular Season - 18","Regular Season - 19","Regular Season - 20","Regular Season - 21","Regular Season - 22","Regular Season - 23","Regular Season - 24","Regular Season - 25","Regular Season - 26","Regular Season - 27","Regular Season - 28","Regular Season - 29","Regular Season - 30","Regular Season - 31","Regular Season - 32","Regular Season - 33","Regular Season - 34","Regular Season - 35","Regular Season - 36","Regular Season - 37","Regular Season - 38"]} [] [] +[2023-03-20T20:37:38.931088+01:00] LiveScore.INFO: - {"get":"fixtures","parameters":{"id":"215662"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":215662,"referee":"H. Mastr\u00e1ngelo","timezone":"UTC","date":"2019-10-20T14:00:00+00:00","timestamp":1571580000,"periods":{"first":1571580000,"second":1571583600},"venue":{"id":33,"name":"Estadio Jos\u00e9 Mar\u00eda Minella","city":"Mar del Plata, Provincia de Buenos Aires"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":128,"name":"Liga Profesional Argentina","country":"Argentina","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/128.png","flag":"https:\/\/media-2.api-sports.io\/flags\/ar.svg","season":2019,"round":"Regular Season - 10"},"teams":{"home":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","winner":true},"away":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}},"events":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}],"lineups":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","colors":null},"coach":{"id":3946,"name":"G. Hoyos","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/3946.png"},"formation":"4-3-3","startXI":[{"player":{"id":6258,"name":"L. Pocrnjic","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":6261,"name":"L. Galeano","number":6,"pos":"D","grid":"2:4"}},{"player":{"id":52701,"name":"M. Miers","number":19,"pos":"D","grid":"2:3"}},{"player":{"id":6268,"name":"L. Villalba","number":23,"pos":"D","grid":"2:2"}},{"player":{"id":6262,"name":"E. I\u00f1\u00edguez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":6474,"name":"G. Gil","number":5,"pos":"M","grid":"3:3"}},{"player":{"id":6269,"name":"F. Acevedo","number":8,"pos":"M","grid":"3:2"}},{"player":{"id":6212,"name":"L. Maciel","number":33,"pos":"M","grid":"3:1"}},{"player":{"id":6093,"name":"G. Ver\u00f3n","number":29,"pos":"F","grid":"4:3"}},{"player":{"id":6126,"name":"F. Andrada","number":10,"pos":"F","grid":"4:2"}},{"player":{"id":6561,"name":"N. Sol\u00eds","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":35845,"name":"H. Burbano","number":11,"pos":"M","grid":null}},{"player":{"id":6396,"name":"N. Bazzana","number":27,"pos":"D","grid":null}},{"player":{"id":6550,"name":"F. Grahl","number":22,"pos":"M","grid":null}},{"player":{"id":152779,"name":"F. Tobares","number":40,"pos":"F","grid":null}},{"player":{"id":6255,"name":"F. Assmann","number":35,"pos":"G","grid":null}},{"player":{"id":6399,"name":"F. Evangelista","number":20,"pos":"D","grid":null}},{"player":{"id":5426,"name":"C. Fara","number":2,"pos":"D","grid":null}}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","colors":null},"coach":{"id":896,"name":"M. Soso","photo":"https:\/\/media-3.api-sports.io\/football\/coachs\/896.png"},"formation":"4-4-2","startXI":[{"player":{"id":5932,"name":"E. Unsain","number":22,"pos":"G","grid":"1:1"}},{"player":{"id":5935,"name":"R. Delgado","number":33,"pos":"D","grid":"2:4"}},{"player":{"id":6540,"name":"J. Rodr\u00edguez","number":28,"pos":"D","grid":"2:3"}},{"player":{"id":5936,"name":"J. Gonz\u00e1lez","number":4,"pos":"D","grid":"2:2"}},{"player":{"id":5991,"name":"H. Mart\u00ednez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":5912,"name":"N. Cardozo","number":10,"pos":"M","grid":"3:4"}},{"player":{"id":35695,"name":"D. Rodr\u00edguez","number":15,"pos":null,"grid":"3:3"}},{"player":{"id":6619,"name":"R. Loaiza","number":30,"pos":"M","grid":"3:2"}},{"player":{"id":5942,"name":"A. Castro","number":11,"pos":"M","grid":"3:1"}},{"player":{"id":5954,"name":"F. M\u00e1rquez","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":5952,"name":"N. Fern\u00e1ndez","number":29,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":5947,"name":"B. Merlini","number":7,"pos":"M","grid":null}},{"player":{"id":6059,"name":"G. Mainero","number":8,"pos":"M","grid":null}},{"player":{"id":70767,"name":"B. Ojeda","number":26,"pos":"M","grid":null}},{"player":{"id":9515,"name":"M. Ben\u00edtez","number":3,"pos":"D","grid":null}},{"player":{"id":5929,"name":"N. Avellaneda","number":17,"pos":"G","grid":null}},{"player":{"id":5943,"name":"F. Cerro","number":18,"pos":"M","grid":null}},{"player":{"id":6433,"name":"G. Piovi","number":16,"pos":"D","grid":null}}]}],"statistics":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}],"players":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":6258,"name":"Luciano Pocrnjic","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6258.png"},"statistics":[{"games":{"minutes":90,"number":1,"position":"G","rating":"7.1","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":0},"passes":{"total":13,"key":0,"accuracy":"44%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":6262,"name":"Emanuel I\u00f1iguez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6262.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":8,"key":1,"accuracy":"34%"},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6261,"name":"Leonel Galeano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6261.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":3,"blocks":3,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":2},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":52701,"name":"Marcos Miers","photo":"https:\/\/media-1.api-sports.io\/football\/players\/52701.png"},"statistics":[{"games":{"minutes":90,"number":19,"position":"D","rating":"7.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"46%"},"tackles":{"total":1,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6268,"name":"Lucas Villalba","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6268.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":1,"accuracy":"21%"},"tackles":{"total":1,"blocks":0,"interceptions":6},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6212,"name":"Leandro Maciel","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6212.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":0,"accuracy":"60%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":3},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6474,"name":"Gaston Gil Romero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6474.png"},"statistics":[{"games":{"minutes":79,"number":5,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"38%"},"tackles":{"total":4,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":0,"past":null},"fouls":{"drawn":0,"committed":5},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6269,"name":"Federico Gino","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6269.png"},"statistics":[{"games":{"minutes":90,"number":8,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":19,"key":1,"accuracy":"65%"},"tackles":{"total":2,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6093,"name":"Gonzalo Ver\u00f3n","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6093.png"},"statistics":[{"games":{"minutes":75,"number":29,"position":"F","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6126,"name":"Federico Andrada","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6126.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"F","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6561,"name":"Nazareno Solis","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6561.png"},"statistics":[{"games":{"minutes":74,"number":7,"position":"F","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"61%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6396,"name":"Nicol\u00e1s Bazzana","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6396.png"},"statistics":[{"games":{"minutes":15,"number":27,"position":"D","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35845,"name":"Hern\u00e1n Burbano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35845.png"},"statistics":[{"games":{"minutes":15,"number":11,"position":"M","rating":"3.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":2,"key":0,"accuracy":"40%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":2,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6550,"name":"Francisco Grahl","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6550.png"},"statistics":[{"games":{"minutes":11,"number":22,"position":"M","rating":"6.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":4,"key":0,"accuracy":"100%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":5932,"name":"Ezequiel Unsain","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5932.png"},"statistics":[{"games":{"minutes":90,"number":22,"position":"G","rating":"6.7","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":2},"passes":{"total":39,"key":0,"accuracy":"86%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":5936,"name":"Julio Gonz\u00e1lez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5936.png"},"statistics":[{"games":{"minutes":79,"number":4,"position":"D","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"64%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6540,"name":"Juan Rodriguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6540.png"},"statistics":[{"games":{"minutes":90,"number":28,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":45,"key":0,"accuracy":"73%"},"tackles":{"total":3,"blocks":0,"interceptions":3},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5991,"name":"H\u00e9ctor Mart\u00ednez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5991.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":76,"key":0,"accuracy":"80%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5935,"name":"Rafael Delgado","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5935.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":37,"key":1,"accuracy":"74%"},"tackles":{"total":null,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5942,"name":"Alexis Castro","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5942.png"},"statistics":[{"games":{"minutes":73,"number":11,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":1,"past":2},"fouls":{"drawn":3,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5931,"name":"Diego Rodr\u00edguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5931.png"},"statistics":[{"games":{"minutes":45,"number":15,"position":"M","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"94%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6619,"name":"Raul Loaiza","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6619.png"},"statistics":[{"games":{"minutes":90,"number":30,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":53,"key":0,"accuracy":"85%"},"tackles":{"total":1,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5912,"name":"Neri Cardozo","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5912.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":47,"key":0,"accuracy":"81%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5954,"name":"Fernando M\u00e1rquez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5954.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"5.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":4,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":1,"accuracy":"60%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":3},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5952,"name":"Nicol\u00e1s Fern\u00e1ndez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5952.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":1,"accuracy":"46%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":1,"past":1},"fouls":{"drawn":4,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":70767,"name":"Braian Ojeda","photo":"https:\/\/media-2.api-sports.io\/football\/players\/70767.png"},"statistics":[{"games":{"minutes":11,"number":26,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5947,"name":"Bautista Merlini","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5947.png"},"statistics":[{"games":{"minutes":45,"number":7,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"100%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":3,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6059,"name":"Guido Mainero","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6059.png"},"statistics":[{"games":{"minutes":17,"number":8,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":1,"accuracy":"77%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]}]} [] [] +[2023-03-20T20:37:40.009440+01:00] LiveScore.INFO: - {"get":"fixtures\/headtohead","parameters":{"h2h":"33-34"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:40.628039+01:00] LiveScore.INFO: - {"get":"fixtures\/statistics","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:40.976020+01:00] LiveScore.INFO: - {"get":"fixtures\/events","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:41.196657+01:00] LiveScore.INFO: - {"get":"fixtures\/lineups","parameters":{"fixture":"592872"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:41.414324+01:00] LiveScore.INFO: - {"get":"fixtures\/players","parameters":{"fixture":"169080"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:41.653713+01:00] LiveScore.INFO: - {"get":"injuries","parameters":{"league":"2","season":"2020"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:41.852291+01:00] LiveScore.INFO: - {"get":"predictions","parameters":{"fixture":"198772"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:42.075175+01:00] LiveScore.INFO: - {"get":"coachs","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:42.307784+01:00] LiveScore.INFO: - {"get":"players\/seasons","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:42.551583+01:00] LiveScore.INFO: - {"get":"players","parameters":{"id":"19088","season":"2018"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:42.793708+01:00] LiveScore.INFO: - {"get":"players\/squads","parameters":{"team":"33"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:43.037821+01:00] LiveScore.INFO: - {"get":"players\/topscorers","parameters":{"season":"2018","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:43.284340+01:00] LiveScore.INFO: - {"get":"players\/topassists","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:43.499540+01:00] LiveScore.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:43.742659+01:00] LiveScore.INFO: - {"get":"players\/topredcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:43.971614+01:00] LiveScore.INFO: - {"get":"transfers","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:44.176866+01:00] LiveScore.INFO: - {"get":"trophies","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:44.404899+01:00] LiveScore.INFO: - {"get":"sidelined","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:44.623370+01:00] LiveScore.INFO: - {"get":"odds\/live","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:44.856111+01:00] LiveScore.INFO: - {"get":"odds\/live\/bets","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:45.067108+01:00] LiveScore.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:45.309072+01:00] LiveScore.INFO: - {"get":"odds\/mapping","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:45.532835+01:00] LiveScore.INFO: - {"get":"odds\/bookmakers","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:45.741563+01:00] LiveScore.INFO: - {"get":"odds\/bets","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:37:45.973719+01:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T19:38:00.820636+00:00] LiveScore.INFO: - {"get":"odds\/bets","parameters":[],"errors":[],"results":168,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"Match Winner"},{"id":2,"name":"Home\/Away"},{"id":3,"name":"Second Half Winner"},{"id":4,"name":"Asian Handicap"},{"id":5,"name":"Goals Over\/Under"},{"id":6,"name":"Goals Over\/Under First Half"},{"id":7,"name":"HT\/FT Double"},{"id":8,"name":"Both Teams Score"},{"id":9,"name":"Handicap Result"},{"id":10,"name":"Exact Score"},{"id":11,"name":"Highest Scoring Half"},{"id":12,"name":"Double Chance"},{"id":13,"name":"First Half Winner"},{"id":14,"name":"Team To Score First"},{"id":15,"name":"Team To Score Last"},{"id":16,"name":"Total - Home"},{"id":17,"name":"Total - Away"},{"id":18,"name":"Handicap Result - First Half"},{"id":19,"name":"Asian Handicap First Half"},{"id":20,"name":"Double Chance - First Half"},{"id":21,"name":"Odd\/Even"},{"id":22,"name":"Odd\/Even - First Half"},{"id":23,"name":"Home Odd\/Even"},{"id":24,"name":"Results\/Both Teams Score"},{"id":25,"name":"Result\/Total Goals"},{"id":26,"name":"Goals Over\/Under - Second Half"},{"id":27,"name":"Clean Sheet - Home"},{"id":28,"name":"Clean Sheet - Away"},{"id":29,"name":"Win to Nil - Home"},{"id":30,"name":"Win to Nil - Away"},{"id":31,"name":"Correct Score - First Half"},{"id":32,"name":"Win Both Halves"},{"id":33,"name":"Double Chance - Second Half"},{"id":34,"name":"Both Teams Score - First Half"},{"id":35,"name":"Both Teams To Score - Second Half"},{"id":36,"name":"Win To Nil"},{"id":37,"name":"Home win both halves"},{"id":38,"name":"Exact Goals Number"},{"id":39,"name":"To Win Either Half"},{"id":40,"name":"Home Team Exact Goals Number"},{"id":41,"name":"Away Team Exact Goals Number"},{"id":42,"name":"Second Half Exact Goals Number"},{"id":43,"name":"Home Team Score a Goal"},{"id":44,"name":"Away Team Score a Goal"},{"id":45,"name":"Corners Over Under"},{"id":46,"name":"Exact Goals Number - First Half"},{"id":47,"name":"Winning Margin"},{"id":48,"name":"To Score In Both Halves By Teams"},{"id":49,"name":"Total Goals\/Both Teams To Score"},{"id":50,"name":"Goal Line"},{"id":51,"name":"Halftime Result\/Total Goals"},{"id":52,"name":"Halftime Result\/Both Teams Score"},{"id":53,"name":"Away win both halves"},{"id":54,"name":"First 10 min Winner"},{"id":55,"name":"Corners 1x2"},{"id":56,"name":"Corners Asian Handicap"},{"id":57,"name":"Home Corners Over\/Under"},{"id":58,"name":"Away Corners Over\/Under"},{"id":59,"name":"Own Goal"},{"id":60,"name":"Away Odd\/Even"},{"id":61,"name":"To Qualify"},{"id":62,"name":"Correct Score - Second Half"},{"id":63,"name":"Odd\/Even - Second Half"},{"id":72,"name":"Goal Line (1st Half)"},{"id":73,"name":"Both Teams to Score 1st Half - 2nd Half"},{"id":74,"name":"10 Over\/Under"},{"id":75,"name":"Last Corner"},{"id":76,"name":"First Corner"},{"id":77,"name":"Total Corners (1st Half)"},{"id":78,"name":"RTG_H1"},{"id":79,"name":"Cards European Handicap"},{"id":80,"name":"Cards Over\/Under"},{"id":81,"name":"Cards Asian Handicap"},{"id":82,"name":"Home Team Total Cards"},{"id":83,"name":"Away Team Total Cards"},{"id":84,"name":"Total Corners (3 way) (1st Half)"},{"id":85,"name":"Total Corners (3 way)"},{"id":86,"name":"RCARD"},{"id":87,"name":"Total ShotOnGoal"},{"id":88,"name":"Home Total ShotOnGoal"},{"id":89,"name":"Away Total ShotOnGoal"},{"id":91,"name":"Total Goals (3 way)"},{"id":92,"name":"Anytime Goal Scorer"},{"id":93,"name":"First Goal Scorer"},{"id":94,"name":"Last Goal Scorer"},{"id":95,"name":"To Score Two or More Goals"},{"id":96,"name":"Last Goal Scorer"},{"id":97,"name":"First Goal Method"},{"id":99,"name":"To Score A Penalty"},{"id":100,"name":"To Miss A Penalty"},{"id":101,"name":null},{"id":102,"name":"Player to be booked"},{"id":103,"name":"Player to be Sent Off"},{"id":104,"name":"Asian Handicap (2nd Half)"},{"id":105,"name":"Home Team Total Goals(1st Half)"},{"id":106,"name":"Away Team Total Goals(1st Half)"},{"id":107,"name":"Home Team Total Goals(2nd Half)"},{"id":108,"name":"Away Team Total Goals(2nd Half)"},{"id":109,"name":"Draw No Bet (1st Half)"},{"id":110,"name":"Scoring Draw"},{"id":111,"name":"Home team will score in both halves"},{"id":112,"name":"Away team will score in both halves"},{"id":113,"name":"Both Teams To Score in Both Halves"},{"id":114,"name":"Home Team Score a Goal (1st Half)"},{"id":115,"name":"Home Team Score a Goal (2nd Half)"},{"id":116,"name":"Away Team Score a Goal (1st Half)"},{"id":117,"name":"Away Team Score a Goal (2nd Half)"},{"id":118,"name":"Home Win\/Over"},{"id":119,"name":"Home Win\/Under"},{"id":120,"name":"Away Win\/Over"},{"id":121,"name":"Away Win\/Under"},{"id":122,"name":"Home team will win either half"},{"id":123,"name":"Away team will win either half"},{"id":124,"name":"Home Come From Behind and Win"},{"id":125,"name":"Corners Asian Handicap (1st Half)"},{"id":126,"name":"Corners Asian Handicap (2nd Half)"},{"id":127,"name":"Total Corners (2nd Half)"},{"id":128,"name":"Total Corners (3 way) (2nd Half)"},{"id":129,"name":"Away Come From Behind and Win"},{"id":130,"name":"Corners 1x2 (1st Half)"},{"id":131,"name":"Corners 1x2 (2nd Half)"},{"id":132,"name":"Home Total Corners (1st Half)"},{"id":133,"name":"Home Total Corners (2nd Half)"},{"id":134,"name":"Away Total Corners (1st Half)"},{"id":135,"name":"Away Total Corners (2nd Half)"},{"id":136,"name":"1x2 - 15 minutes"},{"id":137,"name":"1x2 - 60 minutes"},{"id":138,"name":"1x2 - 75 minutes"},{"id":139,"name":"1x2 - 30 minutes"},{"id":140,"name":"DC - 30 minutes"},{"id":141,"name":"DC - 15 minutes"},{"id":142,"name":"DC - 60 minutes"},{"id":143,"name":"DC - 75 minutes"},{"id":144,"name":"Goal in 1-15 minutes"},{"id":145,"name":"Goal in 16-30 minutes"},{"id":146,"name":"Goal in 31-45 minutes"},{"id":147,"name":"Goal in 46-60 minutes"},{"id":148,"name":"Goal in 61-75 minutes"},{"id":149,"name":"Goal in 76-90 minutes"},{"id":150,"name":"Home Team Yellow Cards"},{"id":151,"name":"Away Team Yellow Cards"},{"id":152,"name":"Yellow Asian Handicap"},{"id":153,"name":"Yellow Over\/Under"},{"id":154,"name":"Yellow Double Chance"},{"id":155,"name":"Yellow Over\/Under (1st Half)"},{"id":156,"name":"Yellow Over\/Under (2nd Half)"},{"id":157,"name":"Yellow Odd\/Even"},{"id":158,"name":"Yellow Cards 1x2"},{"id":159,"name":"Yellow Asian Handicap (1st Half)"},{"id":160,"name":"Yellow Asian Handicap (2nd Half)"},{"id":161,"name":"Yellow Cards 1x2 (1st Half)"},{"id":162,"name":"Yellow Cards 1x2 (2nd Half)"},{"id":163,"name":"Penalty Awarded"},{"id":164,"name":"Offsides Total"},{"id":165,"name":"Offsides 1x2"},{"id":166,"name":"Offsides Handicap"},{"id":167,"name":"Offsides Home Total"},{"id":168,"name":"Offsides Away Total"},{"id":169,"name":"Offsides Double Chance"},{"id":170,"name":"Fouls. Away Total"},{"id":171,"name":"Fouls. Home Total"},{"id":172,"name":"Fouls. Double Chance"},{"id":173,"name":"Fouls. Total"},{"id":174,"name":"Fouls. Handicap"},{"id":175,"name":"Fouls. 1x2"},{"id":176,"name":"ShotOnTarget 1x2"},{"id":177,"name":"ShotOnTarget Handicap"},{"id":178,"name":"ShotOnTarget Double Chance"}]} [] [] +[2023-03-20T19:38:13.207591+00:00] LiveScore.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T19:56:32.773886+00:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":105,"limit_day":100}}} [] [] +[2023-03-20T19:56:39.604533+00:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":105,"limit_day":100}}} [] [] +[2023-03-20T20:10:51.447660+00:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":105,"limit_day":100}}} [] [] +[2023-03-20T20:10:59.204949+00:00] LiveScore.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":105,"limit_day":100}}} [] [] diff --git a/src/Log/LiveSoccer.log b/src/Log/LiveSoccer.log new file mode 100644 index 0000000..81221ff --- /dev/null +++ b/src/Log/LiveSoccer.log @@ -0,0 +1,133 @@ +[2023-03-20T11:34:47.517043+00:00] LiveSoccer.INFO: - {"get":"fixtures","parameters":[],"errors":{"required":"At least one parameter is required."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T11:35:48.101178+00:00] LiveSoccer.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":0,"limit_day":100}}} [] [] +[2023-03-20T12:00:49.119068+00:00] LiveSoccer.INFO: - {"get":"status","parameters":[],"errors":[],"results":1,"paging":{"current":1,"total":1},"response":{"account":{"firstname":"ahmet","lastname":"kaya","email":"joduquhu@brand-app.biz"},"subscription":{"plan":"Free","end":"2024-03-20T00:00:00+00:00","active":true},"requests":{"current":1,"limit_day":100}}} [] [] +[2023-03-20T13:04:08.250787+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":[],"errors":[],"results":165,"paging":{"current":1,"total":1},"response":[{"name":"Albania","code":"AL","flag":"https:\/\/media-2.api-sports.io\/flags\/al.svg"},{"name":"Algeria","code":"DZ","flag":"https:\/\/media-2.api-sports.io\/flags\/dz.svg"},{"name":"Andorra","code":"AD","flag":"https:\/\/media-2.api-sports.io\/flags\/ad.svg"},{"name":"Angola","code":"AO","flag":"https:\/\/media-1.api-sports.io\/flags\/ao.svg"},{"name":"Argentina","code":"AR","flag":"https:\/\/media-1.api-sports.io\/flags\/ar.svg"},{"name":"Armenia","code":"AM","flag":"https:\/\/media-3.api-sports.io\/flags\/am.svg"},{"name":"Aruba","code":"AW","flag":"https:\/\/media-3.api-sports.io\/flags\/aw.svg"},{"name":"Australia","code":"AU","flag":"https:\/\/media-1.api-sports.io\/flags\/au.svg"},{"name":"Austria","code":"AT","flag":"https:\/\/media-2.api-sports.io\/flags\/at.svg"},{"name":"Azerbaidjan","code":"AZ","flag":"https:\/\/media-3.api-sports.io\/flags\/az.svg"},{"name":"Bahrain","code":"BH","flag":"https:\/\/media-1.api-sports.io\/flags\/bh.svg"},{"name":"Bangladesh","code":"BD","flag":"https:\/\/media-3.api-sports.io\/flags\/bd.svg"},{"name":"Barbados","code":"BB","flag":"https:\/\/media-2.api-sports.io\/flags\/bb.svg"},{"name":"Belarus","code":"BY","flag":"https:\/\/media-1.api-sports.io\/flags\/by.svg"},{"name":"Belgium","code":"BE","flag":"https:\/\/media-2.api-sports.io\/flags\/be.svg"},{"name":"Belize","code":"BZ","flag":"https:\/\/media-2.api-sports.io\/flags\/bz.svg"},{"name":"Benin","code":"BJ","flag":"https:\/\/media-1.api-sports.io\/flags\/bj.svg"},{"name":"Bermuda","code":"BM","flag":"https:\/\/media-1.api-sports.io\/flags\/bm.svg"},{"name":"Bhutan","code":"BT","flag":"https:\/\/media-1.api-sports.io\/flags\/bt.svg"},{"name":"Bolivia","code":"BO","flag":"https:\/\/media-1.api-sports.io\/flags\/bo.svg"},{"name":"Bosnia","code":"BA","flag":"https:\/\/media-1.api-sports.io\/flags\/ba.svg"},{"name":"Botswana","code":"BW","flag":"https:\/\/media-1.api-sports.io\/flags\/bw.svg"},{"name":"Brazil","code":"BR","flag":"https:\/\/media-2.api-sports.io\/flags\/br.svg"},{"name":"Bulgaria","code":"BG","flag":"https:\/\/media-3.api-sports.io\/flags\/bg.svg"},{"name":"Burkina-Faso","code":"BF","flag":"https:\/\/media-3.api-sports.io\/flags\/bf.svg"},{"name":"Burundi","code":"BI","flag":"https:\/\/media-2.api-sports.io\/flags\/bi.svg"},{"name":"Cambodia","code":"KH","flag":"https:\/\/media-3.api-sports.io\/flags\/kh.svg"},{"name":"Cameroon","code":"CM","flag":"https:\/\/media-2.api-sports.io\/flags\/cm.svg"},{"name":"Canada","code":"CA","flag":"https:\/\/media-3.api-sports.io\/flags\/ca.svg"},{"name":"Chile","code":"CL","flag":"https:\/\/media-1.api-sports.io\/flags\/cl.svg"},{"name":"China","code":"CN","flag":"https:\/\/media-1.api-sports.io\/flags\/cn.svg"},{"name":"Chinese-Taipei","code":"TW","flag":"https:\/\/media-3.api-sports.io\/flags\/tw.svg"},{"name":"Colombia","code":"CO","flag":"https:\/\/media-3.api-sports.io\/flags\/co.svg"},{"name":"Congo","code":"CD","flag":"https:\/\/media-2.api-sports.io\/flags\/cd.svg"},{"name":"Congo-DR","code":"CG","flag":"https:\/\/media-1.api-sports.io\/flags\/cg.svg"},{"name":"Costa-Rica","code":"CR","flag":"https:\/\/media-1.api-sports.io\/flags\/cr.svg"},{"name":"Crimea","code":"UA","flag":"https:\/\/media-2.api-sports.io\/flags\/ua.svg"},{"name":"Croatia","code":"HR","flag":"https:\/\/media-2.api-sports.io\/flags\/hr.svg"},{"name":"Cuba","code":"CU","flag":"https:\/\/media-2.api-sports.io\/flags\/cu.svg"},{"name":"Curacao","code":"CW","flag":"https:\/\/media-2.api-sports.io\/flags\/cw.svg"},{"name":"Cyprus","code":"CY","flag":"https:\/\/media-2.api-sports.io\/flags\/cy.svg"},{"name":"Czech-Republic","code":"CZ","flag":"https:\/\/media-3.api-sports.io\/flags\/cz.svg"},{"name":"Denmark","code":"DK","flag":"https:\/\/media-1.api-sports.io\/flags\/dk.svg"},{"name":"Dominican-Republic","code":"DO","flag":"https:\/\/media-3.api-sports.io\/flags\/do.svg"},{"name":"Ecuador","code":"EC","flag":"https:\/\/media-3.api-sports.io\/flags\/ec.svg"},{"name":"Egypt","code":"EG","flag":"https:\/\/media-1.api-sports.io\/flags\/eg.svg"},{"name":"El-Salvador","code":"SV","flag":"https:\/\/media-2.api-sports.io\/flags\/sv.svg"},{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Estonia","code":"EE","flag":"https:\/\/media-3.api-sports.io\/flags\/ee.svg"},{"name":"Eswatini","code":"SZ","flag":"https:\/\/media-2.api-sports.io\/flags\/sz.svg"},{"name":"Ethiopia","code":"ET","flag":"https:\/\/media-3.api-sports.io\/flags\/et.svg"},{"name":"Faroe-Islands","code":"FO","flag":"https:\/\/media-1.api-sports.io\/flags\/fo.svg"},{"name":"Fiji","code":"FJ","flag":"https:\/\/media-3.api-sports.io\/flags\/fj.svg"},{"name":"Finland","code":"FI","flag":"https:\/\/media-1.api-sports.io\/flags\/fi.svg"},{"name":"France","code":"FR","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg"},{"name":"Gambia","code":"GM","flag":"https:\/\/media-2.api-sports.io\/flags\/gm.svg"},{"name":"Georgia","code":"GE","flag":"https:\/\/media-1.api-sports.io\/flags\/ge.svg"},{"name":"Germany","code":"DE","flag":"https:\/\/media-1.api-sports.io\/flags\/de.svg"},{"name":"Ghana","code":"GH","flag":"https:\/\/media-1.api-sports.io\/flags\/gh.svg"},{"name":"Gibraltar","code":"GI","flag":"https:\/\/media-3.api-sports.io\/flags\/gi.svg"},{"name":"Greece","code":"GR","flag":"https:\/\/media-2.api-sports.io\/flags\/gr.svg"},{"name":"Guadeloupe","code":"GP","flag":"https:\/\/media-2.api-sports.io\/flags\/gp.svg"},{"name":"Guatemala","code":"GT","flag":"https:\/\/media-2.api-sports.io\/flags\/gt.svg"},{"name":"Guinea","code":"GN","flag":"https:\/\/media-1.api-sports.io\/flags\/gn.svg"},{"name":"Haiti","code":"HT","flag":"https:\/\/media-2.api-sports.io\/flags\/ht.svg"},{"name":"Honduras","code":"HN","flag":"https:\/\/media-2.api-sports.io\/flags\/hn.svg"},{"name":"Hong-Kong","code":"HK","flag":"https:\/\/media-3.api-sports.io\/flags\/hk.svg"},{"name":"Hungary","code":"HU","flag":"https:\/\/media-3.api-sports.io\/flags\/hu.svg"},{"name":"Iceland","code":"IS","flag":"https:\/\/media-1.api-sports.io\/flags\/is.svg"},{"name":"India","code":"IN","flag":"https:\/\/media-3.api-sports.io\/flags\/in.svg"},{"name":"Indonesia","code":"ID","flag":"https:\/\/media-1.api-sports.io\/flags\/id.svg"},{"name":"Iran","code":"IR","flag":"https:\/\/media-3.api-sports.io\/flags\/ir.svg"},{"name":"Iraq","code":"IQ","flag":"https:\/\/media-3.api-sports.io\/flags\/iq.svg"},{"name":"Ireland","code":"IE","flag":"https:\/\/media-2.api-sports.io\/flags\/ie.svg"},{"name":"Israel","code":"IL","flag":"https:\/\/media-2.api-sports.io\/flags\/il.svg"},{"name":"Italy","code":"IT","flag":"https:\/\/media-3.api-sports.io\/flags\/it.svg"},{"name":"Ivory-Coast","code":"CI","flag":"https:\/\/media-3.api-sports.io\/flags\/ci.svg"},{"name":"Jamaica","code":"JM","flag":"https:\/\/media-3.api-sports.io\/flags\/jm.svg"},{"name":"Japan","code":"JP","flag":"https:\/\/media-2.api-sports.io\/flags\/jp.svg"},{"name":"Jordan","code":"JO","flag":"https:\/\/media-1.api-sports.io\/flags\/jo.svg"},{"name":"Kazakhstan","code":"KZ","flag":"https:\/\/media-1.api-sports.io\/flags\/kz.svg"},{"name":"Kenya","code":"KE","flag":"https:\/\/media-3.api-sports.io\/flags\/ke.svg"},{"name":"Kosovo","code":"XK","flag":"https:\/\/media-2.api-sports.io\/flags\/xk.svg"},{"name":"Kuwait","code":"KW","flag":"https:\/\/media-1.api-sports.io\/flags\/kw.svg"},{"name":"Kyrgyzstan","code":"KG","flag":"https:\/\/media-1.api-sports.io\/flags\/kg.svg"},{"name":"Laos","code":"LA","flag":"https:\/\/media-1.api-sports.io\/flags\/la.svg"},{"name":"Latvia","code":"LV","flag":"https:\/\/media-1.api-sports.io\/flags\/lv.svg"},{"name":"Lebanon","code":"LB","flag":"https:\/\/media-3.api-sports.io\/flags\/lb.svg"},{"name":"Lesotho","code":"LS","flag":"https:\/\/media-2.api-sports.io\/flags\/ls.svg"},{"name":"Liberia","code":"LR","flag":"https:\/\/media-1.api-sports.io\/flags\/lr.svg"},{"name":"Libya","code":"LY","flag":"https:\/\/media-1.api-sports.io\/flags\/ly.svg"},{"name":"Liechtenstein","code":"LI","flag":"https:\/\/media-2.api-sports.io\/flags\/li.svg"},{"name":"Lithuania","code":"LT","flag":"https:\/\/media-1.api-sports.io\/flags\/lt.svg"},{"name":"Luxembourg","code":"LU","flag":"https:\/\/media-3.api-sports.io\/flags\/lu.svg"},{"name":"Macedonia","code":"MK","flag":"https:\/\/media-3.api-sports.io\/flags\/mk.svg"},{"name":"Malawi","code":"MW","flag":"https:\/\/media-3.api-sports.io\/flags\/mw.svg"},{"name":"Malaysia","code":"MY","flag":"https:\/\/media-2.api-sports.io\/flags\/my.svg"},{"name":"Maldives","code":"MV","flag":"https:\/\/media-2.api-sports.io\/flags\/mv.svg"},{"name":"Mali","code":"ML","flag":"https:\/\/media-2.api-sports.io\/flags\/ml.svg"},{"name":"Malta","code":"MT","flag":"https:\/\/media-2.api-sports.io\/flags\/mt.svg"},{"name":"Mauritania","code":"MR","flag":"https:\/\/media-2.api-sports.io\/flags\/mr.svg"},{"name":"Mauritius","code":"MU","flag":"https:\/\/media-2.api-sports.io\/flags\/mu.svg"},{"name":"Mexico","code":"MX","flag":"https:\/\/media-3.api-sports.io\/flags\/mx.svg"},{"name":"Moldova","code":"MD","flag":"https:\/\/media-3.api-sports.io\/flags\/md.svg"},{"name":"Mongolia","code":"MN","flag":"https:\/\/media-2.api-sports.io\/flags\/mn.svg"},{"name":"Montenegro","code":"ME","flag":"https:\/\/media-2.api-sports.io\/flags\/me.svg"},{"name":"Morocco","code":"MA","flag":"https:\/\/media-2.api-sports.io\/flags\/ma.svg"},{"name":"Myanmar","code":"MM","flag":"https:\/\/media-2.api-sports.io\/flags\/mm.svg"},{"name":"Namibia","code":"NA","flag":"https:\/\/media-1.api-sports.io\/flags\/na.svg"},{"name":"Nepal","code":"NP","flag":"https:\/\/media-2.api-sports.io\/flags\/np.svg"},{"name":"Netherlands","code":"NL","flag":"https:\/\/media-1.api-sports.io\/flags\/nl.svg"},{"name":"New-Zealand","code":"NZ","flag":"https:\/\/media-2.api-sports.io\/flags\/nz.svg"},{"name":"Nicaragua","code":"NI","flag":"https:\/\/media-3.api-sports.io\/flags\/ni.svg"},{"name":"Nigeria","code":"NG","flag":"https:\/\/media-2.api-sports.io\/flags\/ng.svg"},{"name":"Northern-Ireland","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},{"name":"Norway","code":"NO","flag":"https:\/\/media-1.api-sports.io\/flags\/no.svg"},{"name":"Oman","code":"OM","flag":"https:\/\/media-3.api-sports.io\/flags\/om.svg"},{"name":"Pakistan","code":"PK","flag":"https:\/\/media-1.api-sports.io\/flags\/pk.svg"},{"name":"Palestine","code":"PS","flag":"https:\/\/media-2.api-sports.io\/flags\/ps.svg"},{"name":"Panama","code":"PA","flag":"https:\/\/media-3.api-sports.io\/flags\/pa.svg"},{"name":"Paraguay","code":"PY","flag":"https:\/\/media-3.api-sports.io\/flags\/py.svg"},{"name":"Peru","code":"PE","flag":"https:\/\/media-2.api-sports.io\/flags\/pe.svg"},{"name":"Philippines","code":"PH","flag":"https:\/\/media-1.api-sports.io\/flags\/ph.svg"},{"name":"Poland","code":"PL","flag":"https:\/\/media-1.api-sports.io\/flags\/pl.svg"},{"name":"Portugal","code":"PT","flag":"https:\/\/media-2.api-sports.io\/flags\/pt.svg"},{"name":"Qatar","code":"QA","flag":"https:\/\/media-1.api-sports.io\/flags\/qa.svg"},{"name":"Romania","code":"RO","flag":"https:\/\/media-3.api-sports.io\/flags\/ro.svg"},{"name":"Russia","code":"RU","flag":"https:\/\/media-3.api-sports.io\/flags\/ru.svg"},{"name":"Rwanda","code":"RW","flag":"https:\/\/media-1.api-sports.io\/flags\/rw.svg"},{"name":"San-Marino","code":"SM","flag":"https:\/\/media-3.api-sports.io\/flags\/sm.svg"},{"name":"Saudi-Arabia","code":"SA","flag":"https:\/\/media-3.api-sports.io\/flags\/sa.svg"},{"name":"Scotland","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Senegal","code":"SN","flag":"https:\/\/media-3.api-sports.io\/flags\/sn.svg"},{"name":"Serbia","code":"RS","flag":"https:\/\/media-2.api-sports.io\/flags\/rs.svg"},{"name":"Singapore","code":"SG","flag":"https:\/\/media-1.api-sports.io\/flags\/sg.svg"},{"name":"Slovakia","code":"SK","flag":"https:\/\/media-2.api-sports.io\/flags\/sk.svg"},{"name":"Slovenia","code":"SI","flag":"https:\/\/media-1.api-sports.io\/flags\/si.svg"},{"name":"Somalia","code":"SO","flag":"https:\/\/media-1.api-sports.io\/flags\/so.svg"},{"name":"South-Africa","code":"ZA","flag":"https:\/\/media-3.api-sports.io\/flags\/za.svg"},{"name":"South-Korea","code":"KR","flag":"https:\/\/media-2.api-sports.io\/flags\/kr.svg"},{"name":"Spain","code":"ES","flag":"https:\/\/media-1.api-sports.io\/flags\/es.svg"},{"name":"Sudan","code":"SD","flag":"https:\/\/media-3.api-sports.io\/flags\/sd.svg"},{"name":"Surinam","code":"SR","flag":"https:\/\/media-1.api-sports.io\/flags\/sr.svg"},{"name":"Sweden","code":"SE","flag":"https:\/\/media-1.api-sports.io\/flags\/se.svg"},{"name":"Switzerland","code":"CH","flag":"https:\/\/media-2.api-sports.io\/flags\/ch.svg"},{"name":"Syria","code":"SY","flag":"https:\/\/media-1.api-sports.io\/flags\/sy.svg"},{"name":"Tajikistan","code":"TJ","flag":"https:\/\/media-3.api-sports.io\/flags\/tj.svg"},{"name":"Tanzania","code":"TZ","flag":"https:\/\/media-1.api-sports.io\/flags\/tz.svg"},{"name":"Thailand","code":"TH","flag":"https:\/\/media-1.api-sports.io\/flags\/th.svg"},{"name":"Trinidad-And-Tobago","code":"TT","flag":"https:\/\/media-1.api-sports.io\/flags\/tt.svg"},{"name":"Tunisia","code":"TN","flag":"https:\/\/media-1.api-sports.io\/flags\/tn.svg"},{"name":"Turkey","code":"TR","flag":"https:\/\/media-2.api-sports.io\/flags\/tr.svg"},{"name":"Turkmenistan","code":"TM","flag":"https:\/\/media-2.api-sports.io\/flags\/tm.svg"},{"name":"Uganda","code":"UG","flag":"https:\/\/media-3.api-sports.io\/flags\/ug.svg"},{"name":"Ukraine","code":"UA","flag":"https:\/\/media-1.api-sports.io\/flags\/ua.svg"},{"name":"United-Arab-Emirates","code":"AE","flag":"https:\/\/media-2.api-sports.io\/flags\/ae.svg"},{"name":"Uruguay","code":"UY","flag":"https:\/\/media-1.api-sports.io\/flags\/uy.svg"},{"name":"USA","code":"US","flag":"https:\/\/media-3.api-sports.io\/flags\/us.svg"},{"name":"Uzbekistan","code":"UZ","flag":"https:\/\/media-3.api-sports.io\/flags\/uz.svg"},{"name":"Venezuela","code":"VE","flag":"https:\/\/media-1.api-sports.io\/flags\/ve.svg"},{"name":"Vietnam","code":"VN","flag":"https:\/\/media-3.api-sports.io\/flags\/vn.svg"},{"name":"Wales","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"World","code":null,"flag":null},{"name":"Zambia","code":"ZM","flag":"https:\/\/media-1.api-sports.io\/flags\/zm.svg"},{"name":"Zimbabwe","code":"ZW","flag":"https:\/\/media-3.api-sports.io\/flags\/zw.svg"}]} [] [] +[2023-03-20T13:04:22.478387+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":[],"errors":[],"results":165,"paging":{"current":1,"total":1},"response":[{"name":"Albania","code":"AL","flag":"https:\/\/media-2.api-sports.io\/flags\/al.svg"},{"name":"Algeria","code":"DZ","flag":"https:\/\/media-2.api-sports.io\/flags\/dz.svg"},{"name":"Andorra","code":"AD","flag":"https:\/\/media-2.api-sports.io\/flags\/ad.svg"},{"name":"Angola","code":"AO","flag":"https:\/\/media-1.api-sports.io\/flags\/ao.svg"},{"name":"Argentina","code":"AR","flag":"https:\/\/media-1.api-sports.io\/flags\/ar.svg"},{"name":"Armenia","code":"AM","flag":"https:\/\/media-3.api-sports.io\/flags\/am.svg"},{"name":"Aruba","code":"AW","flag":"https:\/\/media-3.api-sports.io\/flags\/aw.svg"},{"name":"Australia","code":"AU","flag":"https:\/\/media-1.api-sports.io\/flags\/au.svg"},{"name":"Austria","code":"AT","flag":"https:\/\/media-2.api-sports.io\/flags\/at.svg"},{"name":"Azerbaidjan","code":"AZ","flag":"https:\/\/media-3.api-sports.io\/flags\/az.svg"},{"name":"Bahrain","code":"BH","flag":"https:\/\/media-1.api-sports.io\/flags\/bh.svg"},{"name":"Bangladesh","code":"BD","flag":"https:\/\/media-3.api-sports.io\/flags\/bd.svg"},{"name":"Barbados","code":"BB","flag":"https:\/\/media-2.api-sports.io\/flags\/bb.svg"},{"name":"Belarus","code":"BY","flag":"https:\/\/media-1.api-sports.io\/flags\/by.svg"},{"name":"Belgium","code":"BE","flag":"https:\/\/media-2.api-sports.io\/flags\/be.svg"},{"name":"Belize","code":"BZ","flag":"https:\/\/media-2.api-sports.io\/flags\/bz.svg"},{"name":"Benin","code":"BJ","flag":"https:\/\/media-1.api-sports.io\/flags\/bj.svg"},{"name":"Bermuda","code":"BM","flag":"https:\/\/media-1.api-sports.io\/flags\/bm.svg"},{"name":"Bhutan","code":"BT","flag":"https:\/\/media-1.api-sports.io\/flags\/bt.svg"},{"name":"Bolivia","code":"BO","flag":"https:\/\/media-1.api-sports.io\/flags\/bo.svg"},{"name":"Bosnia","code":"BA","flag":"https:\/\/media-1.api-sports.io\/flags\/ba.svg"},{"name":"Botswana","code":"BW","flag":"https:\/\/media-1.api-sports.io\/flags\/bw.svg"},{"name":"Brazil","code":"BR","flag":"https:\/\/media-2.api-sports.io\/flags\/br.svg"},{"name":"Bulgaria","code":"BG","flag":"https:\/\/media-3.api-sports.io\/flags\/bg.svg"},{"name":"Burkina-Faso","code":"BF","flag":"https:\/\/media-3.api-sports.io\/flags\/bf.svg"},{"name":"Burundi","code":"BI","flag":"https:\/\/media-2.api-sports.io\/flags\/bi.svg"},{"name":"Cambodia","code":"KH","flag":"https:\/\/media-3.api-sports.io\/flags\/kh.svg"},{"name":"Cameroon","code":"CM","flag":"https:\/\/media-2.api-sports.io\/flags\/cm.svg"},{"name":"Canada","code":"CA","flag":"https:\/\/media-3.api-sports.io\/flags\/ca.svg"},{"name":"Chile","code":"CL","flag":"https:\/\/media-1.api-sports.io\/flags\/cl.svg"},{"name":"China","code":"CN","flag":"https:\/\/media-1.api-sports.io\/flags\/cn.svg"},{"name":"Chinese-Taipei","code":"TW","flag":"https:\/\/media-3.api-sports.io\/flags\/tw.svg"},{"name":"Colombia","code":"CO","flag":"https:\/\/media-3.api-sports.io\/flags\/co.svg"},{"name":"Congo","code":"CD","flag":"https:\/\/media-2.api-sports.io\/flags\/cd.svg"},{"name":"Congo-DR","code":"CG","flag":"https:\/\/media-1.api-sports.io\/flags\/cg.svg"},{"name":"Costa-Rica","code":"CR","flag":"https:\/\/media-1.api-sports.io\/flags\/cr.svg"},{"name":"Crimea","code":"UA","flag":"https:\/\/media-2.api-sports.io\/flags\/ua.svg"},{"name":"Croatia","code":"HR","flag":"https:\/\/media-2.api-sports.io\/flags\/hr.svg"},{"name":"Cuba","code":"CU","flag":"https:\/\/media-2.api-sports.io\/flags\/cu.svg"},{"name":"Curacao","code":"CW","flag":"https:\/\/media-2.api-sports.io\/flags\/cw.svg"},{"name":"Cyprus","code":"CY","flag":"https:\/\/media-2.api-sports.io\/flags\/cy.svg"},{"name":"Czech-Republic","code":"CZ","flag":"https:\/\/media-3.api-sports.io\/flags\/cz.svg"},{"name":"Denmark","code":"DK","flag":"https:\/\/media-1.api-sports.io\/flags\/dk.svg"},{"name":"Dominican-Republic","code":"DO","flag":"https:\/\/media-3.api-sports.io\/flags\/do.svg"},{"name":"Ecuador","code":"EC","flag":"https:\/\/media-3.api-sports.io\/flags\/ec.svg"},{"name":"Egypt","code":"EG","flag":"https:\/\/media-1.api-sports.io\/flags\/eg.svg"},{"name":"El-Salvador","code":"SV","flag":"https:\/\/media-2.api-sports.io\/flags\/sv.svg"},{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Estonia","code":"EE","flag":"https:\/\/media-3.api-sports.io\/flags\/ee.svg"},{"name":"Eswatini","code":"SZ","flag":"https:\/\/media-2.api-sports.io\/flags\/sz.svg"},{"name":"Ethiopia","code":"ET","flag":"https:\/\/media-3.api-sports.io\/flags\/et.svg"},{"name":"Faroe-Islands","code":"FO","flag":"https:\/\/media-1.api-sports.io\/flags\/fo.svg"},{"name":"Fiji","code":"FJ","flag":"https:\/\/media-3.api-sports.io\/flags\/fj.svg"},{"name":"Finland","code":"FI","flag":"https:\/\/media-1.api-sports.io\/flags\/fi.svg"},{"name":"France","code":"FR","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg"},{"name":"Gambia","code":"GM","flag":"https:\/\/media-2.api-sports.io\/flags\/gm.svg"},{"name":"Georgia","code":"GE","flag":"https:\/\/media-1.api-sports.io\/flags\/ge.svg"},{"name":"Germany","code":"DE","flag":"https:\/\/media-1.api-sports.io\/flags\/de.svg"},{"name":"Ghana","code":"GH","flag":"https:\/\/media-1.api-sports.io\/flags\/gh.svg"},{"name":"Gibraltar","code":"GI","flag":"https:\/\/media-3.api-sports.io\/flags\/gi.svg"},{"name":"Greece","code":"GR","flag":"https:\/\/media-2.api-sports.io\/flags\/gr.svg"},{"name":"Guadeloupe","code":"GP","flag":"https:\/\/media-2.api-sports.io\/flags\/gp.svg"},{"name":"Guatemala","code":"GT","flag":"https:\/\/media-2.api-sports.io\/flags\/gt.svg"},{"name":"Guinea","code":"GN","flag":"https:\/\/media-1.api-sports.io\/flags\/gn.svg"},{"name":"Haiti","code":"HT","flag":"https:\/\/media-2.api-sports.io\/flags\/ht.svg"},{"name":"Honduras","code":"HN","flag":"https:\/\/media-2.api-sports.io\/flags\/hn.svg"},{"name":"Hong-Kong","code":"HK","flag":"https:\/\/media-3.api-sports.io\/flags\/hk.svg"},{"name":"Hungary","code":"HU","flag":"https:\/\/media-3.api-sports.io\/flags\/hu.svg"},{"name":"Iceland","code":"IS","flag":"https:\/\/media-1.api-sports.io\/flags\/is.svg"},{"name":"India","code":"IN","flag":"https:\/\/media-3.api-sports.io\/flags\/in.svg"},{"name":"Indonesia","code":"ID","flag":"https:\/\/media-1.api-sports.io\/flags\/id.svg"},{"name":"Iran","code":"IR","flag":"https:\/\/media-3.api-sports.io\/flags\/ir.svg"},{"name":"Iraq","code":"IQ","flag":"https:\/\/media-3.api-sports.io\/flags\/iq.svg"},{"name":"Ireland","code":"IE","flag":"https:\/\/media-2.api-sports.io\/flags\/ie.svg"},{"name":"Israel","code":"IL","flag":"https:\/\/media-2.api-sports.io\/flags\/il.svg"},{"name":"Italy","code":"IT","flag":"https:\/\/media-3.api-sports.io\/flags\/it.svg"},{"name":"Ivory-Coast","code":"CI","flag":"https:\/\/media-3.api-sports.io\/flags\/ci.svg"},{"name":"Jamaica","code":"JM","flag":"https:\/\/media-3.api-sports.io\/flags\/jm.svg"},{"name":"Japan","code":"JP","flag":"https:\/\/media-2.api-sports.io\/flags\/jp.svg"},{"name":"Jordan","code":"JO","flag":"https:\/\/media-1.api-sports.io\/flags\/jo.svg"},{"name":"Kazakhstan","code":"KZ","flag":"https:\/\/media-1.api-sports.io\/flags\/kz.svg"},{"name":"Kenya","code":"KE","flag":"https:\/\/media-3.api-sports.io\/flags\/ke.svg"},{"name":"Kosovo","code":"XK","flag":"https:\/\/media-2.api-sports.io\/flags\/xk.svg"},{"name":"Kuwait","code":"KW","flag":"https:\/\/media-1.api-sports.io\/flags\/kw.svg"},{"name":"Kyrgyzstan","code":"KG","flag":"https:\/\/media-1.api-sports.io\/flags\/kg.svg"},{"name":"Laos","code":"LA","flag":"https:\/\/media-1.api-sports.io\/flags\/la.svg"},{"name":"Latvia","code":"LV","flag":"https:\/\/media-1.api-sports.io\/flags\/lv.svg"},{"name":"Lebanon","code":"LB","flag":"https:\/\/media-3.api-sports.io\/flags\/lb.svg"},{"name":"Lesotho","code":"LS","flag":"https:\/\/media-2.api-sports.io\/flags\/ls.svg"},{"name":"Liberia","code":"LR","flag":"https:\/\/media-1.api-sports.io\/flags\/lr.svg"},{"name":"Libya","code":"LY","flag":"https:\/\/media-1.api-sports.io\/flags\/ly.svg"},{"name":"Liechtenstein","code":"LI","flag":"https:\/\/media-2.api-sports.io\/flags\/li.svg"},{"name":"Lithuania","code":"LT","flag":"https:\/\/media-1.api-sports.io\/flags\/lt.svg"},{"name":"Luxembourg","code":"LU","flag":"https:\/\/media-3.api-sports.io\/flags\/lu.svg"},{"name":"Macedonia","code":"MK","flag":"https:\/\/media-3.api-sports.io\/flags\/mk.svg"},{"name":"Malawi","code":"MW","flag":"https:\/\/media-3.api-sports.io\/flags\/mw.svg"},{"name":"Malaysia","code":"MY","flag":"https:\/\/media-2.api-sports.io\/flags\/my.svg"},{"name":"Maldives","code":"MV","flag":"https:\/\/media-2.api-sports.io\/flags\/mv.svg"},{"name":"Mali","code":"ML","flag":"https:\/\/media-2.api-sports.io\/flags\/ml.svg"},{"name":"Malta","code":"MT","flag":"https:\/\/media-2.api-sports.io\/flags\/mt.svg"},{"name":"Mauritania","code":"MR","flag":"https:\/\/media-2.api-sports.io\/flags\/mr.svg"},{"name":"Mauritius","code":"MU","flag":"https:\/\/media-2.api-sports.io\/flags\/mu.svg"},{"name":"Mexico","code":"MX","flag":"https:\/\/media-3.api-sports.io\/flags\/mx.svg"},{"name":"Moldova","code":"MD","flag":"https:\/\/media-3.api-sports.io\/flags\/md.svg"},{"name":"Mongolia","code":"MN","flag":"https:\/\/media-2.api-sports.io\/flags\/mn.svg"},{"name":"Montenegro","code":"ME","flag":"https:\/\/media-2.api-sports.io\/flags\/me.svg"},{"name":"Morocco","code":"MA","flag":"https:\/\/media-2.api-sports.io\/flags\/ma.svg"},{"name":"Myanmar","code":"MM","flag":"https:\/\/media-2.api-sports.io\/flags\/mm.svg"},{"name":"Namibia","code":"NA","flag":"https:\/\/media-1.api-sports.io\/flags\/na.svg"},{"name":"Nepal","code":"NP","flag":"https:\/\/media-2.api-sports.io\/flags\/np.svg"},{"name":"Netherlands","code":"NL","flag":"https:\/\/media-1.api-sports.io\/flags\/nl.svg"},{"name":"New-Zealand","code":"NZ","flag":"https:\/\/media-2.api-sports.io\/flags\/nz.svg"},{"name":"Nicaragua","code":"NI","flag":"https:\/\/media-3.api-sports.io\/flags\/ni.svg"},{"name":"Nigeria","code":"NG","flag":"https:\/\/media-2.api-sports.io\/flags\/ng.svg"},{"name":"Northern-Ireland","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},{"name":"Norway","code":"NO","flag":"https:\/\/media-1.api-sports.io\/flags\/no.svg"},{"name":"Oman","code":"OM","flag":"https:\/\/media-3.api-sports.io\/flags\/om.svg"},{"name":"Pakistan","code":"PK","flag":"https:\/\/media-1.api-sports.io\/flags\/pk.svg"},{"name":"Palestine","code":"PS","flag":"https:\/\/media-2.api-sports.io\/flags\/ps.svg"},{"name":"Panama","code":"PA","flag":"https:\/\/media-3.api-sports.io\/flags\/pa.svg"},{"name":"Paraguay","code":"PY","flag":"https:\/\/media-3.api-sports.io\/flags\/py.svg"},{"name":"Peru","code":"PE","flag":"https:\/\/media-2.api-sports.io\/flags\/pe.svg"},{"name":"Philippines","code":"PH","flag":"https:\/\/media-1.api-sports.io\/flags\/ph.svg"},{"name":"Poland","code":"PL","flag":"https:\/\/media-1.api-sports.io\/flags\/pl.svg"},{"name":"Portugal","code":"PT","flag":"https:\/\/media-2.api-sports.io\/flags\/pt.svg"},{"name":"Qatar","code":"QA","flag":"https:\/\/media-1.api-sports.io\/flags\/qa.svg"},{"name":"Romania","code":"RO","flag":"https:\/\/media-3.api-sports.io\/flags\/ro.svg"},{"name":"Russia","code":"RU","flag":"https:\/\/media-3.api-sports.io\/flags\/ru.svg"},{"name":"Rwanda","code":"RW","flag":"https:\/\/media-1.api-sports.io\/flags\/rw.svg"},{"name":"San-Marino","code":"SM","flag":"https:\/\/media-3.api-sports.io\/flags\/sm.svg"},{"name":"Saudi-Arabia","code":"SA","flag":"https:\/\/media-3.api-sports.io\/flags\/sa.svg"},{"name":"Scotland","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Senegal","code":"SN","flag":"https:\/\/media-3.api-sports.io\/flags\/sn.svg"},{"name":"Serbia","code":"RS","flag":"https:\/\/media-2.api-sports.io\/flags\/rs.svg"},{"name":"Singapore","code":"SG","flag":"https:\/\/media-1.api-sports.io\/flags\/sg.svg"},{"name":"Slovakia","code":"SK","flag":"https:\/\/media-2.api-sports.io\/flags\/sk.svg"},{"name":"Slovenia","code":"SI","flag":"https:\/\/media-1.api-sports.io\/flags\/si.svg"},{"name":"Somalia","code":"SO","flag":"https:\/\/media-1.api-sports.io\/flags\/so.svg"},{"name":"South-Africa","code":"ZA","flag":"https:\/\/media-3.api-sports.io\/flags\/za.svg"},{"name":"South-Korea","code":"KR","flag":"https:\/\/media-2.api-sports.io\/flags\/kr.svg"},{"name":"Spain","code":"ES","flag":"https:\/\/media-1.api-sports.io\/flags\/es.svg"},{"name":"Sudan","code":"SD","flag":"https:\/\/media-3.api-sports.io\/flags\/sd.svg"},{"name":"Surinam","code":"SR","flag":"https:\/\/media-1.api-sports.io\/flags\/sr.svg"},{"name":"Sweden","code":"SE","flag":"https:\/\/media-1.api-sports.io\/flags\/se.svg"},{"name":"Switzerland","code":"CH","flag":"https:\/\/media-2.api-sports.io\/flags\/ch.svg"},{"name":"Syria","code":"SY","flag":"https:\/\/media-1.api-sports.io\/flags\/sy.svg"},{"name":"Tajikistan","code":"TJ","flag":"https:\/\/media-3.api-sports.io\/flags\/tj.svg"},{"name":"Tanzania","code":"TZ","flag":"https:\/\/media-1.api-sports.io\/flags\/tz.svg"},{"name":"Thailand","code":"TH","flag":"https:\/\/media-1.api-sports.io\/flags\/th.svg"},{"name":"Trinidad-And-Tobago","code":"TT","flag":"https:\/\/media-1.api-sports.io\/flags\/tt.svg"},{"name":"Tunisia","code":"TN","flag":"https:\/\/media-1.api-sports.io\/flags\/tn.svg"},{"name":"Turkey","code":"TR","flag":"https:\/\/media-2.api-sports.io\/flags\/tr.svg"},{"name":"Turkmenistan","code":"TM","flag":"https:\/\/media-2.api-sports.io\/flags\/tm.svg"},{"name":"Uganda","code":"UG","flag":"https:\/\/media-3.api-sports.io\/flags\/ug.svg"},{"name":"Ukraine","code":"UA","flag":"https:\/\/media-1.api-sports.io\/flags\/ua.svg"},{"name":"United-Arab-Emirates","code":"AE","flag":"https:\/\/media-2.api-sports.io\/flags\/ae.svg"},{"name":"Uruguay","code":"UY","flag":"https:\/\/media-1.api-sports.io\/flags\/uy.svg"},{"name":"USA","code":"US","flag":"https:\/\/media-3.api-sports.io\/flags\/us.svg"},{"name":"Uzbekistan","code":"UZ","flag":"https:\/\/media-3.api-sports.io\/flags\/uz.svg"},{"name":"Venezuela","code":"VE","flag":"https:\/\/media-1.api-sports.io\/flags\/ve.svg"},{"name":"Vietnam","code":"VN","flag":"https:\/\/media-3.api-sports.io\/flags\/vn.svg"},{"name":"Wales","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"World","code":null,"flag":null},{"name":"Zambia","code":"ZM","flag":"https:\/\/media-1.api-sports.io\/flags\/zm.svg"},{"name":"Zimbabwe","code":"ZW","flag":"https:\/\/media-3.api-sports.io\/flags\/zw.svg"}]} [] [] +[2023-03-20T13:06:09.047586+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"name":"France","code":"FR","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg"}]} [] [] +[2023-03-20T13:15:05.194465+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"F"},"errors":{"code":"The Code field must be at least 2 characters in length."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T13:25:04.510112+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"name":"France","code":"FR","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg"}]} [] [] +[2023-03-20T13:29:44.100404+00:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T13:34:39.924947+00:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"country":"england"},"errors":[],"results":35,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2010,"start":"2010-08-14","end":"2011-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2011,"start":"2011-08-13","end":"2012-05-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-18","end":"2013-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-17","end":"2014-05-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-16","end":"2015-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-08","end":"2016-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-13","end":"2017-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-11","end":"2018-05-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-10","end":"2019-05-12","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-09","end":"2020-07-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-12","end":"2021-05-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-13","end":"2022-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-05","end":"2023-05-28","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":true}}]},{"league":{"id":40,"name":"Championship","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/40.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-08-05","end":"2012-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-17","end":"2013-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-03","end":"2014-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-08","end":"2015-05-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-07","end":"2016-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-05","end":"2017-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-04","end":"2018-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-03","end":"2019-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-02","end":"2020-08-04","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-11","end":"2021-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-06","end":"2022-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2022,"start":"2022-07-29","end":"2023-05-06","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":true}}]},{"league":{"id":46,"name":"EFL Trophy","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/46.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-08-30","end":"2012-03-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-09-04","end":"2013-04-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-09-03","end":"2014-03-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-09-02","end":"2015-03-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-09-01","end":"2016-04-03","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-30","end":"2017-04-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-15","end":"2018-04-08","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-07","end":"2019-03-31","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-06","end":"2020-04-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-01","end":"2021-03-14","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-24","end":"2022-04-03","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-30","end":"2023-04-02","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":45,"name":"FA Cup","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/45.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-09-17","end":"2012-05-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-10","end":"2013-05-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-16","end":"2014-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-15","end":"2015-05-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-14","end":"2016-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-11-04","end":"2017-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-11-03","end":"2018-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-11-09","end":"2019-05-18","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-09","end":"2020-08-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-31","end":"2021-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-06","end":"2022-05-14","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-05","end":"2023-03-18","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":47,"name":"FA Trophy","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/47.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-10-07","end":"2012-05-12","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-09-15","end":"2013-03-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-10-04","end":"2014-03-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-10-17","end":"2015-03-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-10-02","end":"2016-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-10-08","end":"2017-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-10-07","end":"2018-05-20","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-10-12","end":"2019-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-09-28","end":"2020-03-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-26","end":"2021-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-09-25","end":"2022-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-09-12","end":"2023-04-01","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":48,"name":"League Cup","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/48.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-07-29","end":"2012-02-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-11","end":"2013-02-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-05","end":"2014-03-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-11","end":"2015-03-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-11","end":"2016-02-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-09","end":"2017-02-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-08","end":"2018-02-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-14","end":"2019-02-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-06","end":"2020-03-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-29","end":"2021-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-07-31","end":"2022-02-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-02","end":"2023-02-26","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":43,"name":"National League","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/43.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-08-12","end":"2012-05-20","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-10","end":"2013-04-20","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-10","end":"2014-04-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-09","end":"2015-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-08","end":"2016-04-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-06","end":"2017-04-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-05","end":"2018-04-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-04","end":"2019-04-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-03","end":"2020-08-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-10-03","end":"2021-06-20","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-21","end":"2022-06-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-06","end":"2023-04-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":41,"name":"League One","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/41.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-08-06","end":"2012-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-18","end":"2013-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-02","end":"2014-05-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-09","end":"2015-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-08","end":"2016-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-06","end":"2017-05-20","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-05","end":"2018-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-04","end":"2019-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-03","end":"2020-07-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-12","end":"2021-05-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-07","end":"2022-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-07-30","end":"2023-05-06","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":42,"name":"League Two","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/42.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-08-06","end":"2012-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-18","end":"2013-05-18","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-03","end":"2014-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-09","end":"2015-05-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-08","end":"2016-05-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-06","end":"2017-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-05","end":"2018-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-04","end":"2019-05-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-03","end":"2020-06-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-12","end":"2021-05-31","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-07","end":"2022-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-07-30","end":"2023-05-06","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":528,"name":"Community Shield","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/528.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2012,"start":"2012-08-12","end":"2012-08-12","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-11","end":"2013-08-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-10","end":"2014-08-10","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-02","end":"2015-08-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-07","end":"2016-08-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-06","end":"2017-08-06","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-05","end":"2018-08-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-04","end":"2019-08-04","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-29","end":"2020-08-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-07","end":"2021-08-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-07-31","end":"2022-07-31","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":44,"name":"FA WSL","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/44.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2016,"start":"2017-04-22","end":"2017-06-03","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-09-22","end":"2018-05-20","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-09-09","end":"2019-05-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-09-07","end":"2020-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-05","end":"2021-05-09","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-09-03","end":"2022-05-08","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-09-11","end":"2023-05-28","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":49,"name":"National League - Play-offs","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/49.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2018,"start":"2019-05-01","end":"2019-05-11","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":50,"name":"National League - North","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/50.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-03","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-10-05","end":"2021-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-05-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-06","end":"2023-04-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":51,"name":"National League - South","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/51.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-03","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-10-06","end":"2021-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-05-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-06","end":"2023-04-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":52,"name":"Non League Div One - Isthmian North","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/52.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-22","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":53,"name":"Non League Div One - Isthmian South Central","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/53.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-22","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":54,"name":"Non League Div One - Northern West","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/54.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-08","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":55,"name":"Non League Div One - Northern Midlands","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/55.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-08","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":56,"name":"Non League Div One - Southern South","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/56.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-08","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":57,"name":"Non League Div One - Isthmian South East","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/57.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-22","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":58,"name":"Non League Premier - Isthmian","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/58.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-10","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":59,"name":"Non League Premier - Northern","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/59.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-17","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-08","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":60,"name":"Non League Premier - Southern South","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/60.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-08-10","end":"2020-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-19","end":"2021-05-08","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-04-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-06","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":698,"name":"FA Women's Cup","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/698.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2019,"start":"2019-11-10","end":"2020-11-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-12-13","end":"2021-12-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-11-14","end":"2022-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-11-13","end":"2023-03-19","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":670,"name":"Community Shield Women","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/670.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-08-29","end":"2020-08-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":695,"name":"U18 Premier League - North","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/695.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-09-12","end":"2021-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-05-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":696,"name":"U18 Premier League - South","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/696.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-09-12","end":"2021-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-14","end":"2022-05-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-13","end":"2023-04-29","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":697,"name":"WSL Cup","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/697.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-10-07","end":"2021-03-14","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-10-13","end":"2022-03-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-10-01","end":"2023-03-05","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":699,"name":"Women's Championship","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/699.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-09-06","end":"2021-05-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-29","end":"2022-05-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-21","end":"2023-04-30","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":702,"name":"Premier League 2 Division One","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/702.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-09-11","end":"2021-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-13","end":"2022-05-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-05","end":"2023-05-01","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":703,"name":"Professional Development League","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/703.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2020,"start":"2020-09-13","end":"2021-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-16","end":"2022-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-08","end":"2023-05-09","current":true,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":871,"name":"Premier League Cup","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/871.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2021,"start":"2021-08-11","end":"2022-05-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-17","end":"2023-03-13","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":931,"name":"Non League Premier - Southern Central","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/931.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2022,"start":"2022-08-06","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":true,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":932,"name":"Non League Div One - Northern East","type":"League","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/932.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":933,"name":"Non League Div One - Southern Central","type":"League","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/933.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2022,"start":"2022-08-13","end":"2023-04-22","current":true,"coverage":{"fixtures":{"events":false,"lineups":false,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T13:36:16.016416+00:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"team":"33"},"errors":[],"results":9,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","type":"League","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2010,"start":"2010-08-14","end":"2011-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2011,"start":"2011-08-13","end":"2012-05-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-18","end":"2013-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-17","end":"2014-05-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-16","end":"2015-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-08","end":"2016-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-13","end":"2017-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-11","end":"2018-05-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-10","end":"2019-05-12","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-09","end":"2020-07-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-09-12","end":"2021-05-23","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-13","end":"2022-05-22","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-05","end":"2023-05-28","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":true}}]},{"league":{"id":45,"name":"FA Cup","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/45.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-09-17","end":"2012-05-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-10","end":"2013-05-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-16","end":"2014-05-17","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-15","end":"2015-05-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-14","end":"2016-05-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-11-04","end":"2017-05-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-11-03","end":"2018-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-11-09","end":"2019-05-18","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-09","end":"2020-08-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-31","end":"2021-05-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-08-06","end":"2022-05-14","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-05","end":"2023-03-18","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":true}}]},{"league":{"id":48,"name":"League Cup","type":"Cup","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/48.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2011,"start":"2011-07-29","end":"2012-02-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-08-11","end":"2013-02-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-08-05","end":"2014-03-02","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2014,"start":"2014-08-11","end":"2015-03-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-08-11","end":"2016-02-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-09","end":"2017-02-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-08-08","end":"2018-02-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-08-14","end":"2019-02-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-08-06","end":"2020-03-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-29","end":"2021-04-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2021,"start":"2021-07-31","end":"2022-02-27","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-02","end":"2023-02-26","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":2,"name":"UEFA Champions League","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2011,"start":"2011-06-28","end":"2012-05-19","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2012,"start":"2012-07-03","end":"2013-05-25","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2013,"start":"2013-07-02","end":"2014-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2015,"start":"2015-06-30","end":"2016-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-06-27","end":"2018-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-06-26","end":"2019-06-01","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-08","end":"2021-05-29","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2021,"start":"2021-06-22","end":"2022-05-28","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}}]},{"league":{"id":528,"name":"Community Shield","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/528.png"},"country":{"name":"England","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},"seasons":[{"year":2013,"start":"2013-08-11","end":"2013-08-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-08-07","end":"2016-08-07","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":3,"name":"UEFA Europa League","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/3.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2015,"start":"2015-06-30","end":"2016-05-18","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2016,"start":"2016-06-28","end":"2017-05-24","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-06-27","end":"2020-08-21","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}},{"year":2020,"start":"2020-08-18","end":"2021-05-26","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":false}},{"year":2022,"start":"2022-08-04","end":"2023-04-20","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":true,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":true,"predictions":true,"odds":true}}]},{"league":{"id":26,"name":"International Champions Cup","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/26.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2016,"start":"2016-07-22","end":"2016-08-13","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2017,"start":"2017-07-18","end":"2017-07-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2018,"start":"2018-07-21","end":"2018-08-11","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2019,"start":"2019-07-17","end":"2019-08-10","current":true,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":531,"name":"UEFA Super Cup","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/531.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2017,"start":"2017-08-08","end":"2017-08-08","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":true,"statistics_players":true},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]},{"league":{"id":667,"name":"Friendlies Clubs","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/667.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2021,"start":"2021-01-01","end":"2022-03-15","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}},{"year":2022,"start":"2022-03-16","end":"2022-12-30","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":false,"top_scorers":false,"top_assists":false,"top_cards":false,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T13:41:37.220333+00:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T13:44:58.987304+00:00] LiveSoccer.INFO: - {"get":"leagues\/seasons","parameters":[],"errors":[],"results":17,"paging":{"current":1,"total":1},"response":[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024]} [] [] +[2023-03-20T14:07:06.776415+00:00] LiveSoccer.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T14:27:59.506608+00:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T14:29:57.858008+00:00] LiveSoccer.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T14:32:39.770978+00:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T14:38:38.284346+00:00] LiveSoccer.INFO: - {"get":"teams\/seasons","parameters":{"team":"33"},"errors":[],"results":13,"paging":{"current":1,"total":1},"response":[2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022]} [] [] +[2023-03-20T14:42:39.436497+00:00] LiveSoccer.INFO: - {"get":"teams\/countries","parameters":{"team":"33"},"errors":{"team":"The Team field do not exist."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T14:44:59.422030+00:00] LiveSoccer.INFO: - {"get":"teams\/countries","parameters":[],"errors":[],"results":255,"paging":{"current":1,"total":1},"response":[{"name":"Afghanistan","code":null,"flag":null},{"name":"Albania","code":"AL","flag":"https:\/\/media-1.api-sports.io\/flags\/al.svg"},{"name":"Algeria","code":"DZ","flag":"https:\/\/media-1.api-sports.io\/flags\/dz.svg"},{"name":"American-Samoa","code":null,"flag":null},{"name":"Andorra","code":"AD","flag":"https:\/\/media-3.api-sports.io\/flags\/ad.svg"},{"name":"Angola","code":"AO","flag":"https:\/\/media-3.api-sports.io\/flags\/ao.svg"},{"name":"Anguilla","code":null,"flag":null},{"name":"Antigua","code":null,"flag":null},{"name":"Antigua and Barbuda","code":null,"flag":null},{"name":"Argentina","code":"AR","flag":"https:\/\/media-2.api-sports.io\/flags\/ar.svg"},{"name":"Armenia","code":"AM","flag":"https:\/\/media-1.api-sports.io\/flags\/am.svg"},{"name":"Aruba","code":"AW","flag":"https:\/\/media-2.api-sports.io\/flags\/aw.svg"},{"name":"Australia","code":"AU","flag":"https:\/\/media-2.api-sports.io\/flags\/au.svg"},{"name":"Austria","code":"AT","flag":"https:\/\/media-2.api-sports.io\/flags\/at.svg"},{"name":"Azerbaidjan","code":"AZ","flag":"https:\/\/media-3.api-sports.io\/flags\/az.svg"},{"name":"Azerbaijan","code":null,"flag":null},{"name":"Bahamas","code":null,"flag":null},{"name":"Bahrain","code":"BH","flag":"https:\/\/media-1.api-sports.io\/flags\/bh.svg"},{"name":"Bangladesh","code":"BD","flag":"https:\/\/media-1.api-sports.io\/flags\/bd.svg"},{"name":"Barbados","code":"BB","flag":"https:\/\/media-1.api-sports.io\/flags\/bb.svg"},{"name":"Belarus","code":"BY","flag":"https:\/\/media-1.api-sports.io\/flags\/by.svg"},{"name":"Belgium","code":"BE","flag":"https:\/\/media-2.api-sports.io\/flags\/be.svg"},{"name":"Belize","code":"BZ","flag":"https:\/\/media-2.api-sports.io\/flags\/bz.svg"},{"name":"Benin","code":"BJ","flag":"https:\/\/media-2.api-sports.io\/flags\/bj.svg"},{"name":"Bermuda","code":"BM","flag":"https:\/\/media-3.api-sports.io\/flags\/bm.svg"},{"name":"Bhutan","code":"BT","flag":"https:\/\/media-1.api-sports.io\/flags\/bt.svg"},{"name":"Bolivia","code":"BO","flag":"https:\/\/media-1.api-sports.io\/flags\/bo.svg"},{"name":"Bonaire","code":null,"flag":null},{"name":"Bosnia","code":"BA","flag":"https:\/\/media-3.api-sports.io\/flags\/ba.svg"},{"name":"Bosnia and Herzegovina","code":null,"flag":null},{"name":"Botswana","code":"BW","flag":"https:\/\/media-1.api-sports.io\/flags\/bw.svg"},{"name":"Brazil","code":"BR","flag":"https:\/\/media-3.api-sports.io\/flags\/br.svg"},{"name":"British Virgin Islands","code":null,"flag":null},{"name":"Brunei","code":null,"flag":null},{"name":"Brunei-Darussalam","code":null,"flag":null},{"name":"Bulgaria","code":"BG","flag":"https:\/\/media-3.api-sports.io\/flags\/bg.svg"},{"name":"Burkina Faso","code":null,"flag":null},{"name":"Burkina-Faso","code":"BF","flag":"https:\/\/media-3.api-sports.io\/flags\/bf.svg"},{"name":"Burundi","code":"BI","flag":"https:\/\/media-2.api-sports.io\/flags\/bi.svg"},{"name":"Cambodia","code":"KH","flag":"https:\/\/media-2.api-sports.io\/flags\/kh.svg"},{"name":"Cameroon","code":"CM","flag":"https:\/\/media-1.api-sports.io\/flags\/cm.svg"},{"name":"Canada","code":"CA","flag":"https:\/\/media-2.api-sports.io\/flags\/ca.svg"},{"name":"Cape-Verde-Islands","code":null,"flag":null},{"name":"Cayman Islands","code":null,"flag":null},{"name":"Central African Republic","code":null,"flag":null},{"name":"Chad","code":null,"flag":null},{"name":"Chile","code":"CL","flag":"https:\/\/media-1.api-sports.io\/flags\/cl.svg"},{"name":"China","code":"CN","flag":"https:\/\/media-1.api-sports.io\/flags\/cn.svg"},{"name":"Chinese-Taipei","code":"TW","flag":"https:\/\/media-2.api-sports.io\/flags\/tw.svg"},{"name":"Colombia","code":"CO","flag":"https:\/\/media-2.api-sports.io\/flags\/co.svg"},{"name":"Comoros","code":null,"flag":null},{"name":"Congo","code":"CD","flag":"https:\/\/media-3.api-sports.io\/flags\/cd.svg"},{"name":"Congo DR","code":null,"flag":null},{"name":"Congo-DR","code":"CG","flag":"https:\/\/media-2.api-sports.io\/flags\/cg.svg"},{"name":"Cook Islands","code":null,"flag":null},{"name":"Cook-Islands","code":null,"flag":null},{"name":"Costa Rica","code":null,"flag":null},{"name":"Costa-Rica","code":"CR","flag":"https:\/\/media-2.api-sports.io\/flags\/cr.svg"},{"name":"C\u00f4te d'Ivoire","code":null,"flag":null},{"name":"Crimea","code":"UA","flag":"https:\/\/media-2.api-sports.io\/flags\/ua.svg"},{"name":"Croatia","code":"HR","flag":"https:\/\/media-2.api-sports.io\/flags\/hr.svg"},{"name":"Cuba","code":"CU","flag":"https:\/\/media-2.api-sports.io\/flags\/cu.svg"},{"name":"Cura\u00e7ao","code":null,"flag":null},{"name":"Cyprus","code":"CY","flag":"https:\/\/media-2.api-sports.io\/flags\/cy.svg"},{"name":"Czech Republic","code":null,"flag":null},{"name":"Czech-Republic","code":"CZ","flag":"https:\/\/media-2.api-sports.io\/flags\/cz.svg"},{"name":"Czechia","code":null,"flag":null},{"name":"Denmark","code":"DK","flag":"https:\/\/media-3.api-sports.io\/flags\/dk.svg"},{"name":"Djibouti","code":null,"flag":null},{"name":"Dominica","code":null,"flag":null},{"name":"Dominican Republic","code":null,"flag":null},{"name":"Dominican-Republic","code":"DO","flag":"https:\/\/media-1.api-sports.io\/flags\/do.svg"},{"name":"East Timor","code":null,"flag":null},{"name":"Ecuador","code":"EC","flag":"https:\/\/media-1.api-sports.io\/flags\/ec.svg"},{"name":"Egypt","code":"EG","flag":"https:\/\/media-1.api-sports.io\/flags\/eg.svg"},{"name":"El Salvador","code":null,"flag":null},{"name":"El-Salvador","code":"SV","flag":"https:\/\/media-1.api-sports.io\/flags\/sv.svg"},{"name":"England","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Equatorial Guinea","code":null,"flag":null},{"name":"Eritrea","code":null,"flag":null},{"name":"Estonia","code":"EE","flag":"https:\/\/media-3.api-sports.io\/flags\/ee.svg"},{"name":"Eswatini","code":"SZ","flag":"https:\/\/media-2.api-sports.io\/flags\/sz.svg"},{"name":"Ethiopia","code":"ET","flag":"https:\/\/media-1.api-sports.io\/flags\/et.svg"},{"name":"Eurocups","code":null,"flag":null},{"name":"Faroe-Islands","code":"FO","flag":"https:\/\/media-1.api-sports.io\/flags\/fo.svg"},{"name":"Fiji","code":"FJ","flag":"https:\/\/media-1.api-sports.io\/flags\/fj.svg"},{"name":"Finland","code":"FI","flag":"https:\/\/media-3.api-sports.io\/flags\/fi.svg"},{"name":"France","code":"FR","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg"},{"name":"French-Guiana","code":null,"flag":null},{"name":"Gabon","code":null,"flag":null},{"name":"Gambia","code":"GM","flag":"https:\/\/media-2.api-sports.io\/flags\/gm.svg"},{"name":"Georgia","code":"GE","flag":"https:\/\/media-1.api-sports.io\/flags\/ge.svg"},{"name":"Germany","code":"DE","flag":"https:\/\/media-2.api-sports.io\/flags\/de.svg"},{"name":"Ghana","code":"GH","flag":"https:\/\/media-2.api-sports.io\/flags\/gh.svg"},{"name":"Gibraltar","code":"GI","flag":"https:\/\/media-2.api-sports.io\/flags\/gi.svg"},{"name":"Greece","code":"GR","flag":"https:\/\/media-1.api-sports.io\/flags\/gr.svg"},{"name":"Grenada","code":null,"flag":null},{"name":"Guadeloupe","code":"GP","flag":"https:\/\/media-2.api-sports.io\/flags\/gp.svg"},{"name":"Guam","code":null,"flag":null},{"name":"Guatemala","code":"GT","flag":"https:\/\/media-3.api-sports.io\/flags\/gt.svg"},{"name":"Guinea","code":"GN","flag":"https:\/\/media-1.api-sports.io\/flags\/gn.svg"},{"name":"Guinea-Bissau","code":null,"flag":null},{"name":"Guyana","code":null,"flag":null},{"name":"Haiti","code":"HT","flag":"https:\/\/media-3.api-sports.io\/flags\/ht.svg"},{"name":"Holland","code":null,"flag":null},{"name":"Honduras","code":"HN","flag":"https:\/\/media-3.api-sports.io\/flags\/hn.svg"},{"name":"Hong-Kong","code":"HK","flag":"https:\/\/media-1.api-sports.io\/flags\/hk.svg"},{"name":"Hungary","code":"HU","flag":"https:\/\/media-1.api-sports.io\/flags\/hu.svg"},{"name":"Iceland","code":"IS","flag":"https:\/\/media-2.api-sports.io\/flags\/is.svg"},{"name":"India","code":"IN","flag":"https:\/\/media-3.api-sports.io\/flags\/in.svg"},{"name":"Indonesia","code":"ID","flag":"https:\/\/media-2.api-sports.io\/flags\/id.svg"},{"name":"intl","code":null,"flag":null},{"name":"Iran","code":"IR","flag":"https:\/\/media-1.api-sports.io\/flags\/ir.svg"},{"name":"Iraq","code":"IQ","flag":"https:\/\/media-3.api-sports.io\/flags\/iq.svg"},{"name":"Ireland","code":"IE","flag":"https:\/\/media-3.api-sports.io\/flags\/ie.svg"},{"name":"Israel","code":"IL","flag":"https:\/\/media-2.api-sports.io\/flags\/il.svg"},{"name":"Italy","code":"IT","flag":"https:\/\/media-1.api-sports.io\/flags\/it.svg"},{"name":"Ivory Coast","code":null,"flag":null},{"name":"Ivory-Coast","code":"CI","flag":"https:\/\/media-2.api-sports.io\/flags\/ci.svg"},{"name":"Jamaica","code":"JM","flag":"https:\/\/media-1.api-sports.io\/flags\/jm.svg"},{"name":"Japan","code":"JP","flag":"https:\/\/media-3.api-sports.io\/flags\/jp.svg"},{"name":"Jordan","code":"JO","flag":"https:\/\/media-1.api-sports.io\/flags\/jo.svg"},{"name":"Kazakhstan","code":"KZ","flag":"https:\/\/media-1.api-sports.io\/flags\/kz.svg"},{"name":"Kenya","code":"KE","flag":"https:\/\/media-3.api-sports.io\/flags\/ke.svg"},{"name":"Korea","code":null,"flag":null},{"name":"Korea-Republic","code":null,"flag":null},{"name":"Kosovo","code":"XK","flag":"https:\/\/media-2.api-sports.io\/flags\/xk.svg"},{"name":"Kuwait","code":"KW","flag":"https:\/\/media-3.api-sports.io\/flags\/kw.svg"},{"name":"Kyrgyzstan","code":"KG","flag":"https:\/\/media-3.api-sports.io\/flags\/kg.svg"},{"name":"Laos","code":"LA","flag":"https:\/\/media-2.api-sports.io\/flags\/la.svg"},{"name":"Latvia","code":"LV","flag":"https:\/\/media-2.api-sports.io\/flags\/lv.svg"},{"name":"Lebanon","code":"LB","flag":"https:\/\/media-1.api-sports.io\/flags\/lb.svg"},{"name":"Lesotho","code":"LS","flag":"https:\/\/media-2.api-sports.io\/flags\/ls.svg"},{"name":"Liberia","code":"LR","flag":"https:\/\/media-1.api-sports.io\/flags\/lr.svg"},{"name":"Libya","code":"LY","flag":"https:\/\/media-2.api-sports.io\/flags\/ly.svg"},{"name":"Liechtenstein","code":"LI","flag":"https:\/\/media-3.api-sports.io\/flags\/li.svg"},{"name":"Lithuania","code":"LT","flag":"https:\/\/media-3.api-sports.io\/flags\/lt.svg"},{"name":"Luxembourg","code":"LU","flag":"https:\/\/media-1.api-sports.io\/flags\/lu.svg"},{"name":"Lybia","code":null,"flag":null},{"name":"Macao","code":null,"flag":null},{"name":"Macedonia","code":"MK","flag":"https:\/\/media-2.api-sports.io\/flags\/mk.svg"},{"name":"Madagascar","code":null,"flag":null},{"name":"Malawi","code":"MW","flag":"https:\/\/media-3.api-sports.io\/flags\/mw.svg"},{"name":"Malaysia","code":"MY","flag":"https:\/\/media-1.api-sports.io\/flags\/my.svg"},{"name":"Maldives","code":"MV","flag":"https:\/\/media-1.api-sports.io\/flags\/mv.svg"},{"name":"Mali","code":"ML","flag":"https:\/\/media-1.api-sports.io\/flags\/ml.svg"},{"name":"Malta","code":"MT","flag":"https:\/\/media-3.api-sports.io\/flags\/mt.svg"},{"name":"Martinique","code":null,"flag":null},{"name":"Mauritania","code":"MR","flag":"https:\/\/media-1.api-sports.io\/flags\/mr.svg"},{"name":"Mauritius","code":"MU","flag":"https:\/\/media-3.api-sports.io\/flags\/mu.svg"},{"name":"Mexico","code":"MX","flag":"https:\/\/media-2.api-sports.io\/flags\/mx.svg"},{"name":"Moldova","code":"MD","flag":"https:\/\/media-2.api-sports.io\/flags\/md.svg"},{"name":"Mongolia","code":"MN","flag":"https:\/\/media-3.api-sports.io\/flags\/mn.svg"},{"name":"Montenegro","code":"ME","flag":"https:\/\/media-2.api-sports.io\/flags\/me.svg"},{"name":"Morocco","code":"MA","flag":"https:\/\/media-3.api-sports.io\/flags\/ma.svg"},{"name":"Mozambique","code":null,"flag":null},{"name":"Myanmar","code":"MM","flag":"https:\/\/media-2.api-sports.io\/flags\/mm.svg"},{"name":"Namibia","code":"NA","flag":"https:\/\/media-3.api-sports.io\/flags\/na.svg"},{"name":"Nepal","code":"NP","flag":"https:\/\/media-2.api-sports.io\/flags\/np.svg"},{"name":"Netherlands","code":"NL","flag":"https:\/\/media-3.api-sports.io\/flags\/nl.svg"},{"name":"Netherlands Antilles","code":null,"flag":null},{"name":"New Caledonia","code":null,"flag":null},{"name":"New Zealand","code":null,"flag":null},{"name":"New-Zealand","code":"NZ","flag":"https:\/\/media-2.api-sports.io\/flags\/nz.svg"},{"name":"Nicaragua","code":"NI","flag":"https:\/\/media-2.api-sports.io\/flags\/ni.svg"},{"name":"Niger","code":null,"flag":null},{"name":"Nigeria","code":"NG","flag":"https:\/\/media-1.api-sports.io\/flags\/ng.svg"},{"name":"North Macedonia","code":null,"flag":null},{"name":"North-Korea","code":null,"flag":null},{"name":"Northern Ireland","code":null,"flag":null},{"name":"Northern Mariana Islands","code":null,"flag":null},{"name":"Northern-Ireland","code":"GB","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg"},{"name":"Norway","code":"NO","flag":"https:\/\/media-3.api-sports.io\/flags\/no.svg"},{"name":"Oman","code":"OM","flag":"https:\/\/media-3.api-sports.io\/flags\/om.svg"},{"name":"Pakistan","code":"PK","flag":"https:\/\/media-3.api-sports.io\/flags\/pk.svg"},{"name":"Palestine","code":"PS","flag":"https:\/\/media-2.api-sports.io\/flags\/ps.svg"},{"name":"Panama","code":"PA","flag":"https:\/\/media-3.api-sports.io\/flags\/pa.svg"},{"name":"Papua New Guinea","code":null,"flag":null},{"name":"Papua-New-Guinea","code":null,"flag":null},{"name":"Paraguay","code":"PY","flag":"https:\/\/media-1.api-sports.io\/flags\/py.svg"},{"name":"Peru","code":"PE","flag":"https:\/\/media-2.api-sports.io\/flags\/pe.svg"},{"name":"Philippines","code":"PH","flag":"https:\/\/media-2.api-sports.io\/flags\/ph.svg"},{"name":"Poland","code":"PL","flag":"https:\/\/media-2.api-sports.io\/flags\/pl.svg"},{"name":"Portugal","code":"PT","flag":"https:\/\/media-1.api-sports.io\/flags\/pt.svg"},{"name":"Puerto Rico","code":null,"flag":null},{"name":"Puerto-Rico","code":null,"flag":null},{"name":"Qatar","code":"QA","flag":"https:\/\/media-3.api-sports.io\/flags\/qa.svg"},{"name":"R\u00e9union","code":null,"flag":null},{"name":"Romania","code":"RO","flag":"https:\/\/media-1.api-sports.io\/flags\/ro.svg"},{"name":"Russia","code":"RU","flag":"https:\/\/media-3.api-sports.io\/flags\/ru.svg"},{"name":"Rwanda","code":"RW","flag":"https:\/\/media-1.api-sports.io\/flags\/rw.svg"},{"name":"Saint Martin","code":null,"flag":null},{"name":"Samoa","code":null,"flag":null},{"name":"San-Marino","code":"SM","flag":"https:\/\/media-3.api-sports.io\/flags\/sm.svg"},{"name":"S\u00e3o Tom\u00e9 e Pr\u00edncipe","code":null,"flag":null},{"name":"Saudi-Arabia","code":"SA","flag":"https:\/\/media-2.api-sports.io\/flags\/sa.svg"},{"name":"Scotland","code":"GB","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg"},{"name":"Senegal","code":"SN","flag":"https:\/\/media-3.api-sports.io\/flags\/sn.svg"},{"name":"Serbia","code":"RS","flag":"https:\/\/media-1.api-sports.io\/flags\/rs.svg"},{"name":"Seychelles","code":null,"flag":null},{"name":"Sierra Leone","code":null,"flag":null},{"name":"Singapore","code":"SG","flag":"https:\/\/media-2.api-sports.io\/flags\/sg.svg"},{"name":"Sint Maarten","code":null,"flag":null},{"name":"Slovakia","code":"SK","flag":"https:\/\/media-3.api-sports.io\/flags\/sk.svg"},{"name":"Slovenia","code":"SI","flag":"https:\/\/media-3.api-sports.io\/flags\/si.svg"},{"name":"Solomon Islands","code":null,"flag":null},{"name":"Solomon-Islands","code":null,"flag":null},{"name":"Somalia","code":"SO","flag":"https:\/\/media-2.api-sports.io\/flags\/so.svg"},{"name":"South Africa","code":null,"flag":null},{"name":"South-Africa","code":"ZA","flag":"https:\/\/media-3.api-sports.io\/flags\/za.svg"},{"name":"South-Korea","code":"KR","flag":"https:\/\/media-1.api-sports.io\/flags\/kr.svg"},{"name":"South-Sudan","code":null,"flag":null},{"name":"Spain","code":"ES","flag":"https:\/\/media-1.api-sports.io\/flags\/es.svg"},{"name":"Sri Lanka","code":null,"flag":null},{"name":"Sri-Lanka","code":null,"flag":null},{"name":"St. Kitts and Nevis","code":null,"flag":null},{"name":"St. Lucia","code":null,"flag":null},{"name":"St. Vincent and the Grenadines","code":null,"flag":null},{"name":"Sudan","code":"SD","flag":"https:\/\/media-3.api-sports.io\/flags\/sd.svg"},{"name":"Surinam","code":"SR","flag":"https:\/\/media-3.api-sports.io\/flags\/sr.svg"},{"name":"Swaziland","code":null,"flag":null},{"name":"Sweden","code":"SE","flag":"https:\/\/media-3.api-sports.io\/flags\/se.svg"},{"name":"Switzerland","code":"CH","flag":"https:\/\/media-2.api-sports.io\/flags\/ch.svg"},{"name":"Syria","code":"SY","flag":"https:\/\/media-1.api-sports.io\/flags\/sy.svg"},{"name":"Tahiti","code":null,"flag":null},{"name":"Tajikistan","code":"TJ","flag":"https:\/\/media-2.api-sports.io\/flags\/tj.svg"},{"name":"Tanzania","code":"TZ","flag":"https:\/\/media-2.api-sports.io\/flags\/tz.svg"},{"name":"Thailand","code":"TH","flag":"https:\/\/media-2.api-sports.io\/flags\/th.svg"},{"name":"Timor-Leste","code":null,"flag":null},{"name":"Togo","code":null,"flag":null},{"name":"Tonga","code":null,"flag":null},{"name":"Trinidad and Tobago","code":null,"flag":null},{"name":"Trinidad-And-Tobago","code":"TT","flag":"https:\/\/media-2.api-sports.io\/flags\/tt.svg"},{"name":"Tunisia","code":"TN","flag":"https:\/\/media-2.api-sports.io\/flags\/tn.svg"},{"name":"Turkey","code":"TR","flag":"https:\/\/media-1.api-sports.io\/flags\/tr.svg"},{"name":"Turkmenistan","code":"TM","flag":"https:\/\/media-3.api-sports.io\/flags\/tm.svg"},{"name":"Turks and Caicos Islands","code":null,"flag":null},{"name":"UAE","code":null,"flag":null},{"name":"Uganda","code":"UG","flag":"https:\/\/media-2.api-sports.io\/flags\/ug.svg"},{"name":"Ukraine","code":"UA","flag":"https:\/\/media-2.api-sports.io\/flags\/ua.svg"},{"name":"United Arab Emirates","code":null,"flag":null},{"name":"United-Arab-Emirates","code":"AE","flag":"https:\/\/media-3.api-sports.io\/flags\/ae.svg"},{"name":"Uruguay","code":"UY","flag":"https:\/\/media-1.api-sports.io\/flags\/uy.svg"},{"name":"US Virgin Islands","code":null,"flag":null},{"name":"USA","code":"US","flag":"https:\/\/media-2.api-sports.io\/flags\/us.svg"},{"name":"Uzbekistan","code":"UZ","flag":"https:\/\/media-1.api-sports.io\/flags\/uz.svg"},{"name":"Vanuatu","code":null,"flag":null},{"name":"Venezuela","code":"VE","flag":"https:\/\/media-3.api-sports.io\/flags\/ve.svg"},{"name":"Vietnam","code":"VN","flag":"https:\/\/media-3.api-sports.io\/flags\/vn.svg"},{"name":"W","code":null,"flag":null},{"name":"Wales","code":"GB","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg"},{"name":"Yemen","code":null,"flag":null},{"name":"Zambia","code":"ZM","flag":"https:\/\/media-1.api-sports.io\/flags\/zm.svg"},{"name":"Zanzibar","code":null,"flag":null},{"name":"Zimbabwe","code":"ZW","flag":"https:\/\/media-2.api-sports.io\/flags\/zw.svg"}]} [] [] +[2023-03-20T14:52:04.270734+00:00] LiveSoccer.INFO: - {"get":"venues","parameters":[],"errors":{"required":"At least one parameter is required."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T14:52:35.752074+00:00] LiveSoccer.INFO: - {"get":"venues","parameters":{"name":"Old Trafford"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","country":"England","capacity":76212,"surface":"grass","image":"https:\/\/media-3.api-sports.io\/football\/venues\/556.png"}]} [] [] +[2023-03-20T14:55:40.658699+00:00] LiveSoccer.INFO: - {"get":"standings","parameters":{"league":"39","season":"2019"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2019,"standings":[[{"rank":1,"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"points":99,"goalsDiff":52,"group":"Premier League","form":"WWLDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":32,"draw":3,"lose":3,"goals":{"for":85,"against":33}},"home":{"played":19,"win":18,"draw":1,"lose":0,"goals":{"for":52,"against":16}},"away":{"played":19,"win":14,"draw":2,"lose":3,"goals":{"for":33,"against":17}},"update":"2020-07-26T00:00:00+00:00"},{"rank":2,"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/50.png"},"points":81,"goalsDiff":67,"group":"Premier League","form":"WWWWW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":26,"draw":3,"lose":9,"goals":{"for":102,"against":35}},"home":{"played":19,"win":15,"draw":2,"lose":2,"goals":{"for":57,"against":13}},"away":{"played":19,"win":11,"draw":1,"lose":7,"goals":{"for":45,"against":22}},"update":"2020-07-26T00:00:00+00:00"},{"rank":3,"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"points":66,"goalsDiff":30,"group":"Premier League","form":"WDWDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":18,"draw":12,"lose":8,"goals":{"for":66,"against":36}},"home":{"played":19,"win":10,"draw":7,"lose":2,"goals":{"for":40,"against":17}},"away":{"played":19,"win":8,"draw":5,"lose":6,"goals":{"for":26,"against":19}},"update":"2020-07-26T00:00:00+00:00"},{"rank":4,"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"points":66,"goalsDiff":15,"group":"Premier League","form":"WLWLW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":20,"draw":6,"lose":12,"goals":{"for":69,"against":54}},"home":{"played":19,"win":11,"draw":3,"lose":5,"goals":{"for":30,"against":16}},"away":{"played":19,"win":9,"draw":3,"lose":7,"goals":{"for":39,"against":38}},"update":"2020-07-26T00:00:00+00:00"},{"rank":5,"team":{"id":46,"name":"Leicester","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/46.png"},"points":62,"goalsDiff":26,"group":"Premier League","form":"LLWLD","status":"same","description":"Promotion - Europa League (Group Stage)","all":{"played":38,"win":18,"draw":8,"lose":12,"goals":{"for":67,"against":41}},"home":{"played":19,"win":11,"draw":4,"lose":4,"goals":{"for":35,"against":17}},"away":{"played":19,"win":7,"draw":4,"lose":8,"goals":{"for":32,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":6,"team":{"id":47,"name":"Tottenham","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/47.png"},"points":59,"goalsDiff":14,"group":"Premier League","form":"DWWWD","status":"same","description":"Promotion - Europa League (Qualification)","all":{"played":38,"win":16,"draw":11,"lose":11,"goals":{"for":61,"against":47}},"home":{"played":19,"win":12,"draw":3,"lose":4,"goals":{"for":36,"against":17}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":25,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":7,"team":{"id":39,"name":"Wolves","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/39.png"},"points":59,"goalsDiff":11,"group":"Premier League","form":"LWDWL","status":"same","description":null,"all":{"played":38,"win":15,"draw":14,"lose":9,"goals":{"for":51,"against":40}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":27,"against":19}},"away":{"played":19,"win":7,"draw":7,"lose":5,"goals":{"for":24,"against":21}},"update":"2020-07-26T00:00:00+00:00"},{"rank":8,"team":{"id":42,"name":"Arsenal","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/42.png"},"points":56,"goalsDiff":8,"group":"Premier League","form":"WLWLD","status":"same","description":null,"all":{"played":38,"win":14,"draw":14,"lose":10,"goals":{"for":56,"against":48}},"home":{"played":19,"win":10,"draw":6,"lose":3,"goals":{"for":36,"against":24}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":20,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":9,"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/62.png"},"points":54,"goalsDiff":0,"group":"Premier League","form":"LLLWW","status":"same","description":null,"all":{"played":38,"win":14,"draw":12,"lose":12,"goals":{"for":39,"against":39}},"home":{"played":19,"win":10,"draw":3,"lose":6,"goals":{"for":24,"against":15}},"away":{"played":19,"win":4,"draw":9,"lose":6,"goals":{"for":15,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":10,"team":{"id":44,"name":"Burnley","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/44.png"},"points":54,"goalsDiff":-7,"group":"Premier League","form":"LWDDW","status":"same","description":null,"all":{"played":38,"win":15,"draw":9,"lose":14,"goals":{"for":43,"against":50}},"home":{"played":19,"win":8,"draw":4,"lose":7,"goals":{"for":24,"against":23}},"away":{"played":19,"win":7,"draw":5,"lose":7,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":11,"team":{"id":41,"name":"Southampton","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/41.png"},"points":52,"goalsDiff":-9,"group":"Premier League","form":"WWDDD","status":"same","description":null,"all":{"played":38,"win":15,"draw":7,"lose":16,"goals":{"for":51,"against":60}},"home":{"played":19,"win":6,"draw":3,"lose":10,"goals":{"for":21,"against":35}},"away":{"played":19,"win":9,"draw":4,"lose":6,"goals":{"for":30,"against":25}},"update":"2020-07-26T00:00:00+00:00"},{"rank":12,"team":{"id":45,"name":"Everton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/45.png"},"points":49,"goalsDiff":-12,"group":"Premier League","form":"LWDLD","status":"same","description":null,"all":{"played":38,"win":13,"draw":10,"lose":15,"goals":{"for":44,"against":56}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":24,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":20,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":13,"team":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png"},"points":44,"goalsDiff":-20,"group":"Premier League","form":"LDLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":11,"lose":16,"goals":{"for":38,"against":58}},"home":{"played":19,"win":6,"draw":8,"lose":5,"goals":{"for":20,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":18,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":14,"team":{"id":52,"name":"Crystal Palace","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/52.png"},"points":43,"goalsDiff":-19,"group":"Premier League","form":"DLLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":10,"lose":17,"goals":{"for":31,"against":50}},"home":{"played":19,"win":6,"draw":5,"lose":8,"goals":{"for":15,"against":20}},"away":{"played":19,"win":5,"draw":5,"lose":9,"goals":{"for":16,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":15,"team":{"id":51,"name":"Brighton","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/51.png"},"points":41,"goalsDiff":-15,"group":"Premier League","form":"WDDLL","status":"same","description":null,"all":{"played":38,"win":9,"draw":14,"lose":15,"goals":{"for":39,"against":54}},"home":{"played":19,"win":5,"draw":7,"lose":7,"goals":{"for":20,"against":27}},"away":{"played":19,"win":4,"draw":7,"lose":8,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":16,"team":{"id":48,"name":"West Ham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/48.png"},"points":39,"goalsDiff":-13,"group":"Premier League","form":"DDWWL","status":"same","description":null,"all":{"played":38,"win":10,"draw":9,"lose":19,"goals":{"for":49,"against":62}},"home":{"played":19,"win":6,"draw":4,"lose":9,"goals":{"for":30,"against":33}},"away":{"played":19,"win":4,"draw":5,"lose":10,"goals":{"for":19,"against":29}},"update":"2020-07-26T00:00:00+00:00"},{"rank":17,"team":{"id":66,"name":"Aston Villa","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/66.png"},"points":35,"goalsDiff":-26,"group":"Premier League","form":"DWDWL","status":"same","description":null,"all":{"played":38,"win":9,"draw":8,"lose":21,"goals":{"for":41,"against":67}},"home":{"played":19,"win":7,"draw":3,"lose":9,"goals":{"for":22,"against":30}},"away":{"played":19,"win":2,"draw":5,"lose":12,"goals":{"for":19,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":18,"team":{"id":35,"name":"Bournemouth","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/35.png"},"points":34,"goalsDiff":-25,"group":"Premier League","form":"WLLWD","status":"same","description":"Relegation - Championship","all":{"played":38,"win":9,"draw":7,"lose":22,"goals":{"for":40,"against":65}},"home":{"played":19,"win":5,"draw":6,"lose":8,"goals":{"for":22,"against":30}},"away":{"played":19,"win":4,"draw":1,"lose":14,"goals":{"for":18,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":19,"team":{"id":38,"name":"Watford","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/38.png"},"points":34,"goalsDiff":-28,"group":"Premier League","form":"LLLWW","status":"same","description":"Relegation - Championship","all":{"played":38,"win":8,"draw":10,"lose":20,"goals":{"for":36,"against":64}},"home":{"played":19,"win":6,"draw":6,"lose":7,"goals":{"for":22,"against":27}},"away":{"played":19,"win":2,"draw":4,"lose":13,"goals":{"for":14,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":20,"team":{"id":71,"name":"Norwich","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/71.png"},"points":21,"goalsDiff":-49,"group":"Premier League","form":"LLLLL","status":"same","description":"Relegation - Championship","all":{"played":38,"win":5,"draw":6,"lose":27,"goals":{"for":26,"against":75}},"home":{"played":19,"win":4,"draw":3,"lose":12,"goals":{"for":19,"against":37}},"away":{"played":19,"win":1,"draw":3,"lose":15,"goals":{"for":7,"against":38}},"update":"2020-07-26T00:00:00+00:00"}]]}}]} [] [] +[2023-03-20T17:08:52.753884+00:00] LiveSoccer.INFO: - {"get":"fixtures\/rounds","parameters":{"league":"39","season":"2019"},"errors":[],"results":38,"paging":{"current":1,"total":1},"response":["Regular Season - 1","Regular Season - 2","Regular Season - 3","Regular Season - 4","Regular Season - 5","Regular Season - 6","Regular Season - 7","Regular Season - 8","Regular Season - 9","Regular Season - 10","Regular Season - 11","Regular Season - 12","Regular Season - 13","Regular Season - 14","Regular Season - 15","Regular Season - 16","Regular Season - 17","Regular Season - 18","Regular Season - 19","Regular Season - 20","Regular Season - 21","Regular Season - 22","Regular Season - 23","Regular Season - 24","Regular Season - 25","Regular Season - 26","Regular Season - 27","Regular Season - 28","Regular Season - 29","Regular Season - 30","Regular Season - 31","Regular Season - 32","Regular Season - 33","Regular Season - 34","Regular Season - 35","Regular Season - 36","Regular Season - 37","Regular Season - 38"]} [] [] +[2023-03-20T17:10:29.729161+00:00] LiveSoccer.INFO: - {"get":"fixtures","parameters":{"id":"215662"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":215662,"referee":"H. Mastr\u00e1ngelo","timezone":"UTC","date":"2019-10-20T14:00:00+00:00","timestamp":1571580000,"periods":{"first":1571580000,"second":1571583600},"venue":{"id":33,"name":"Estadio Jos\u00e9 Mar\u00eda Minella","city":"Mar del Plata, Provincia de Buenos Aires"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":128,"name":"Liga Profesional Argentina","country":"Argentina","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/128.png","flag":"https:\/\/media-1.api-sports.io\/flags\/ar.svg","season":2019,"round":"Regular Season - 10"},"teams":{"home":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png","winner":true},"away":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}},"events":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}],"lineups":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","colors":null},"coach":{"id":3946,"name":"G. Hoyos","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/3946.png"},"formation":"4-3-3","startXI":[{"player":{"id":6258,"name":"L. Pocrnjic","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":6261,"name":"L. Galeano","number":6,"pos":"D","grid":"2:4"}},{"player":{"id":52701,"name":"M. Miers","number":19,"pos":"D","grid":"2:3"}},{"player":{"id":6268,"name":"L. Villalba","number":23,"pos":"D","grid":"2:2"}},{"player":{"id":6262,"name":"E. I\u00f1\u00edguez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":6474,"name":"G. Gil","number":5,"pos":"M","grid":"3:3"}},{"player":{"id":6269,"name":"F. Acevedo","number":8,"pos":"M","grid":"3:2"}},{"player":{"id":6212,"name":"L. Maciel","number":33,"pos":"M","grid":"3:1"}},{"player":{"id":6093,"name":"G. Ver\u00f3n","number":29,"pos":"F","grid":"4:3"}},{"player":{"id":6126,"name":"F. Andrada","number":10,"pos":"F","grid":"4:2"}},{"player":{"id":6561,"name":"N. Sol\u00eds","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":35845,"name":"H. Burbano","number":11,"pos":"M","grid":null}},{"player":{"id":6396,"name":"N. Bazzana","number":27,"pos":"D","grid":null}},{"player":{"id":6550,"name":"F. Grahl","number":22,"pos":"M","grid":null}},{"player":{"id":152779,"name":"F. Tobares","number":40,"pos":"F","grid":null}},{"player":{"id":6255,"name":"F. Assmann","number":35,"pos":"G","grid":null}},{"player":{"id":6399,"name":"F. Evangelista","number":20,"pos":"D","grid":null}},{"player":{"id":5426,"name":"C. Fara","number":2,"pos":"D","grid":null}}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","colors":null},"coach":{"id":896,"name":"M. Soso","photo":"https:\/\/media-3.api-sports.io\/football\/coachs\/896.png"},"formation":"4-4-2","startXI":[{"player":{"id":5932,"name":"E. Unsain","number":22,"pos":"G","grid":"1:1"}},{"player":{"id":5935,"name":"R. Delgado","number":33,"pos":"D","grid":"2:4"}},{"player":{"id":6540,"name":"J. Rodr\u00edguez","number":28,"pos":"D","grid":"2:3"}},{"player":{"id":5936,"name":"J. Gonz\u00e1lez","number":4,"pos":"D","grid":"2:2"}},{"player":{"id":5991,"name":"H. Mart\u00ednez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":5912,"name":"N. Cardozo","number":10,"pos":"M","grid":"3:4"}},{"player":{"id":35695,"name":"D. Rodr\u00edguez","number":15,"pos":null,"grid":"3:3"}},{"player":{"id":6619,"name":"R. Loaiza","number":30,"pos":"M","grid":"3:2"}},{"player":{"id":5942,"name":"A. Castro","number":11,"pos":"M","grid":"3:1"}},{"player":{"id":5954,"name":"F. M\u00e1rquez","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":5952,"name":"N. Fern\u00e1ndez","number":29,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":5947,"name":"B. Merlini","number":7,"pos":"M","grid":null}},{"player":{"id":6059,"name":"G. Mainero","number":8,"pos":"M","grid":null}},{"player":{"id":70767,"name":"B. Ojeda","number":26,"pos":"M","grid":null}},{"player":{"id":9515,"name":"M. Ben\u00edtez","number":3,"pos":"D","grid":null}},{"player":{"id":5929,"name":"N. Avellaneda","number":17,"pos":"G","grid":null}},{"player":{"id":5943,"name":"F. Cerro","number":18,"pos":"M","grid":null}},{"player":{"id":6433,"name":"G. Piovi","number":16,"pos":"D","grid":null}}]}],"statistics":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}],"players":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":6258,"name":"Luciano Pocrnjic","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6258.png"},"statistics":[{"games":{"minutes":90,"number":1,"position":"G","rating":"7.1","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":0},"passes":{"total":13,"key":0,"accuracy":"44%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":6262,"name":"Emanuel I\u00f1iguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6262.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":8,"key":1,"accuracy":"34%"},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6261,"name":"Leonel Galeano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6261.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":3,"blocks":3,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":2},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":52701,"name":"Marcos Miers","photo":"https:\/\/media-3.api-sports.io\/football\/players\/52701.png"},"statistics":[{"games":{"minutes":90,"number":19,"position":"D","rating":"7.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"46%"},"tackles":{"total":1,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6268,"name":"Lucas Villalba","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6268.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":1,"accuracy":"21%"},"tackles":{"total":1,"blocks":0,"interceptions":6},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6212,"name":"Leandro Maciel","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6212.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":0,"accuracy":"60%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":3},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6474,"name":"Gaston Gil Romero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6474.png"},"statistics":[{"games":{"minutes":79,"number":5,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"38%"},"tackles":{"total":4,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":0,"past":null},"fouls":{"drawn":0,"committed":5},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6269,"name":"Federico Gino","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6269.png"},"statistics":[{"games":{"minutes":90,"number":8,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":19,"key":1,"accuracy":"65%"},"tackles":{"total":2,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6093,"name":"Gonzalo Ver\u00f3n","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6093.png"},"statistics":[{"games":{"minutes":75,"number":29,"position":"F","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6126,"name":"Federico Andrada","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6126.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"F","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6561,"name":"Nazareno Solis","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6561.png"},"statistics":[{"games":{"minutes":74,"number":7,"position":"F","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"61%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6396,"name":"Nicol\u00e1s Bazzana","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6396.png"},"statistics":[{"games":{"minutes":15,"number":27,"position":"D","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35845,"name":"Hern\u00e1n Burbano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35845.png"},"statistics":[{"games":{"minutes":15,"number":11,"position":"M","rating":"3.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":2,"key":0,"accuracy":"40%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":2,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6550,"name":"Francisco Grahl","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6550.png"},"statistics":[{"games":{"minutes":11,"number":22,"position":"M","rating":"6.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":4,"key":0,"accuracy":"100%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":5932,"name":"Ezequiel Unsain","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5932.png"},"statistics":[{"games":{"minutes":90,"number":22,"position":"G","rating":"6.7","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":2},"passes":{"total":39,"key":0,"accuracy":"86%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":5936,"name":"Julio Gonz\u00e1lez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5936.png"},"statistics":[{"games":{"minutes":79,"number":4,"position":"D","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"64%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6540,"name":"Juan Rodriguez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6540.png"},"statistics":[{"games":{"minutes":90,"number":28,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":45,"key":0,"accuracy":"73%"},"tackles":{"total":3,"blocks":0,"interceptions":3},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5991,"name":"H\u00e9ctor Mart\u00ednez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5991.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":76,"key":0,"accuracy":"80%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5935,"name":"Rafael Delgado","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5935.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":37,"key":1,"accuracy":"74%"},"tackles":{"total":null,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5942,"name":"Alexis Castro","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5942.png"},"statistics":[{"games":{"minutes":73,"number":11,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":1,"past":2},"fouls":{"drawn":3,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5931,"name":"Diego Rodr\u00edguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5931.png"},"statistics":[{"games":{"minutes":45,"number":15,"position":"M","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"94%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6619,"name":"Raul Loaiza","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6619.png"},"statistics":[{"games":{"minutes":90,"number":30,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":53,"key":0,"accuracy":"85%"},"tackles":{"total":1,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5912,"name":"Neri Cardozo","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5912.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":47,"key":0,"accuracy":"81%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5954,"name":"Fernando M\u00e1rquez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5954.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"5.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":4,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":1,"accuracy":"60%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":3},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5952,"name":"Nicol\u00e1s Fern\u00e1ndez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5952.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":1,"accuracy":"46%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":1,"past":1},"fouls":{"drawn":4,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":70767,"name":"Braian Ojeda","photo":"https:\/\/media-2.api-sports.io\/football\/players\/70767.png"},"statistics":[{"games":{"minutes":11,"number":26,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5947,"name":"Bautista Merlini","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5947.png"},"statistics":[{"games":{"minutes":45,"number":7,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"100%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":3,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6059,"name":"Guido Mainero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6059.png"},"statistics":[{"games":{"minutes":17,"number":8,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":1,"accuracy":"77%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]}]} [] [] +[2023-03-20T17:11:52.737745+00:00] LiveSoccer.INFO: - {"get":"fixtures\/headtohead","parameters":{"h2h":"33-34"},"errors":[],"results":26,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":141,"referee":"Anthony Taylor, England","timezone":"UTC","date":"2018-10-06T16:30:00+00:00","timestamp":1538843400,"periods":{"first":1538843400,"second":1538847000},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2018,"round":"Regular Season - 8"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":3,"away":2},"score":{"halftime":{"home":0,"away":2},"fulltime":{"home":3,"away":2},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":11794,"referee":"Craig Pawson, England","timezone":"UTC","date":"2017-11-18T17:30:00+00:00","timestamp":1511026200,"periods":{"first":1511026200,"second":1511029800},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2017,"round":"Regular Season - 12"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":4,"away":1},"score":{"halftime":{"home":2,"away":1},"fulltime":{"home":4,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":157201,"referee":"Kevin Friend, England","timezone":"UTC","date":"2019-12-26T17:30:00+00:00","timestamp":1577381400,"periods":{"first":1577381400,"second":1577385000},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019,"round":"Regular Season - 19"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":4,"away":1},"score":{"halftime":{"home":3,"away":1},"fulltime":{"home":4,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":192317,"referee":"Craig Pawson, England","timezone":"UTC","date":"2015-08-22T11:45:00+00:00","timestamp":1440243900,"periods":{"first":1440243900,"second":1440247500},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2015,"round":"Regular Season - 3"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":null},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":null}},"goals":{"home":0,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":192852,"referee":null,"timezone":"UTC","date":"2014-12-26T15:00:00+00:00","timestamp":1419606000,"periods":{"first":1419606000,"second":1419609600},"venue":{"id":null,"name":"Old Trafford (Manchester)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2014,"round":"Regular Season - 18"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":3,"away":1},"score":{"halftime":{"home":2,"away":0},"fulltime":{"home":3,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":193197,"referee":null,"timezone":"UTC","date":"2013-12-07T12:45:00+00:00","timestamp":1386420300,"periods":{"first":1386420300,"second":1386423900},"venue":{"id":null,"name":"Old Trafford (Manchester)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2013,"round":"Regular Season - 15"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":false},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":true}},"goals":{"home":0,"away":1},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":193619,"referee":null,"timezone":"UTC","date":"2012-12-26T15:00:00+00:00","timestamp":1356534000,"periods":{"first":1356534000,"second":1356537600},"venue":{"id":null,"name":"Old Trafford (Manchester)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2012,"round":"Regular Season - 19"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":4,"away":3},"score":{"halftime":{"home":1,"away":2},"fulltime":{"home":4,"away":3},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":193940,"referee":null,"timezone":"UTC","date":"2011-11-26T15:00:00+00:00","timestamp":1322319600,"periods":{"first":1322319600,"second":1322323200},"venue":{"id":null,"name":"Old Trafford (Manchester)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2011,"round":"Regular Season - 13"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":null},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":null}},"goals":{"home":1,"away":1},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":1,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":194206,"referee":null,"timezone":"UTC","date":"2010-08-16T19:00:00+00:00","timestamp":1281985200,"periods":{"first":null,"second":null},"venue":{"id":null,"name":"Old Trafford (Manchester)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2010,"round":"Regular Season - 38"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":3,"away":0},"score":{"halftime":{"home":2,"away":0},"fulltime":{"home":3,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":455536,"referee":null,"timezone":"UTC","date":"2012-09-26T18:45:00+00:00","timestamp":1348685100,"periods":{"first":1348685100,"second":1348688700},"venue":{"id":null,"name":"Old Trafford","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":48,"name":"League Cup","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/48.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2012,"round":"3rd Round"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":2,"away":1},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":2,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":592742,"referee":"P. Tierney","timezone":"UTC","date":"2021-02-21T19:00:00+00:00","timestamp":1613934000,"periods":{"first":1613934000,"second":1613937600},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2020,"round":"Regular Season - 25"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":3,"away":1},"score":{"halftime":{"home":1,"away":1},"fulltime":{"home":3,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":710593,"referee":"A. Taylor","timezone":"UTC","date":"2021-09-11T14:00:00+00:00","timestamp":1631368800,"periods":{"first":1631368800,"second":1631372400},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2021,"round":"Regular Season - 4"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":4,"away":1},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":4,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":868052,"referee":"Craig Pawson, England","timezone":"UTC","date":"2022-10-16T13:00:00+00:00","timestamp":1665925200,"periods":{"first":1665925200,"second":1665928800},"venue":{"id":556,"name":"Old Trafford","city":"Manchester"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2022,"round":"Regular Season - 11"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":null},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":null}},"goals":{"home":0,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":998280,"referee":"David Coote, England","timezone":"UTC","date":"2023-02-26T16:30:00+00:00","timestamp":1677429000,"periods":{"first":1677429000,"second":1677432600},"venue":{"id":489,"name":"Wembley Stadium","city":"London"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":48,"name":"League Cup","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/48.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2022,"round":"Final"},"teams":{"home":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":true},"away":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false}},"goals":{"home":2,"away":0},"score":{"halftime":{"home":2,"away":0},"fulltime":{"home":2,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":272,"referee":"Andre Marriner, England","timezone":"UTC","date":"2019-01-02T20:00:00+00:00","timestamp":1546459200,"periods":{"first":1546459200,"second":1546462800},"venue":{"id":562,"name":"St James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2018,"round":"Regular Season - 21"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true}},"goals":{"home":0,"away":2},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":2},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":11644,"referee":"Craig Pawson, England","timezone":"UTC","date":"2018-02-11T14:15:00+00:00","timestamp":1518358500,"periods":{"first":1518358500,"second":1518362100},"venue":{"id":562,"name":"St James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2017,"round":"Regular Season - 27"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":true},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":157090,"referee":"Mike Dean, England","timezone":"UTC","date":"2019-10-06T15:30:00+00:00","timestamp":1570375800,"periods":{"first":1570375800,"second":1570379400},"venue":{"id":562,"name":"St. James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019,"round":"Regular Season - 8"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":true},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":192499,"referee":"Mike Dean, England","timezone":"UTC","date":"2016-01-12T19:45:00+00:00","timestamp":1452627900,"periods":{"first":1452627900,"second":1452631500},"venue":{"id":562,"name":"St James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2015,"round":"Regular Season - 21"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":null},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":null}},"goals":{"home":3,"away":3},"score":{"halftime":{"home":1,"away":2},"fulltime":{"home":3,"away":3},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":192953,"referee":"Anthony Taylor, England","timezone":"UTC","date":"2015-03-04T19:45:00+00:00","timestamp":1425498300,"periods":{"first":1425498300,"second":1425501900},"venue":{"id":562,"name":"St James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2014,"round":"Regular Season - 28"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true}},"goals":{"home":0,"away":1},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":193381,"referee":null,"timezone":"UTC","date":"2014-04-05T14:00:00+00:00","timestamp":1396706400,"periods":{"first":1396706400,"second":1396710000},"venue":{"id":null,"name":"St. James' Park (Newcastle-upon-Tyne)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2013,"round":"Regular Season - 33"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":false},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":true}},"goals":{"home":0,"away":4},"score":{"halftime":{"home":0,"away":1},"fulltime":{"home":0,"away":4},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":193506,"referee":null,"timezone":"UTC","date":"2012-10-07T15:00:00+00:00","timestamp":1349622000,"periods":{"first":1349622000,"second":1349625600},"venue":{"id":null,"name":"St. James' Park (Newcastle-upon-Tyne)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2012,"round":"Regular Season - 7"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/34.png","winner":false},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":true}},"goals":{"home":0,"away":3},"score":{"halftime":{"home":0,"away":2},"fulltime":{"home":0,"away":3},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":194016,"referee":null,"timezone":"UTC","date":"2012-01-04T20:00:00+00:00","timestamp":1325707200,"periods":{"first":1325707200,"second":1325710800},"venue":{"id":null,"name":"Sports Direct Arena (Newcastle-upon-Tyne)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2011,"round":"Regular Season - 20"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":true},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png","winner":false}},"goals":{"home":3,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":3,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":194251,"referee":null,"timezone":"UTC","date":"2011-04-19T18:45:00+00:00","timestamp":1303238700,"periods":{"first":null,"second":null},"venue":{"id":null,"name":"Sports Direct Arena (Newcastle-upon-Tyne)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2010,"round":"Regular Season - 6"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":null},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png","winner":null}},"goals":{"home":0,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":592187,"referee":"C. Pawson","timezone":"UTC","date":"2020-10-17T19:00:00+00:00","timestamp":1602961200,"periods":{"first":1602961200,"second":1602964800},"venue":{"id":562,"name":"St. James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2020,"round":"Regular Season - 5"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/34.png","winner":false},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":true}},"goals":{"home":1,"away":4},"score":{"halftime":{"home":1,"away":1},"fulltime":{"home":1,"away":4},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":710741,"referee":"C. Pawson","timezone":"UTC","date":"2021-12-27T20:00:00+00:00","timestamp":1640635200,"periods":{"first":1640635200,"second":1640638800},"venue":{"id":562,"name":"St. James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2021,"round":"Regular Season - 19"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":null},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":null}},"goals":{"home":1,"away":1},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":868233,"referee":null,"timezone":"UTC","date":"2023-04-02T15:30:00+00:00","timestamp":1680449400,"periods":{"first":null,"second":null},"venue":{"id":562,"name":"St. James' Park","city":"Newcastle upon Tyne"},"status":{"long":"Not Started","short":"NS","elapsed":null}},"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-3.api-sports.io\/flags\/gb.svg","season":2022,"round":"Regular Season - 29"},"teams":{"home":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png","winner":null},"away":{"id":33,"name":"Manchester United","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/33.png","winner":null}},"goals":{"home":null,"away":null},"score":{"halftime":{"home":null,"away":null},"fulltime":{"home":null,"away":null},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}}]} [] [] +[2023-03-20T17:13:43.894223+00:00] LiveSoccer.INFO: - {"get":"fixtures\/statistics","parameters":{"fixture":"215662"},"errors":[],"results":2,"paging":{"current":1,"total":1},"response":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}]} [] [] +[2023-03-20T17:15:00.651845+00:00] LiveSoccer.INFO: - {"get":"fixtures\/events","parameters":{"fixture":"215662"},"errors":[],"results":18,"paging":{"current":1,"total":1},"response":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}]} [] [] +[2023-03-20T17:16:08.572125+00:00] LiveSoccer.INFO: - {"get":"fixtures\/lineups","parameters":{"fixture":"592872"},"errors":[],"results":2,"paging":{"current":1,"total":1},"response":[{"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/50.png","colors":{"player":{"primary":"5badff","number":"ffffff","border":"99ff99"},"goalkeeper":{"primary":"99ff99","number":"000000","border":"99ff99"}}},"formation":"4-3-3","startXI":[{"player":{"id":617,"name":"Ederson","number":31,"pos":"G","grid":"1:1"}},{"player":{"id":627,"name":"Kyle Walker","number":2,"pos":"D","grid":"2:4"}},{"player":{"id":626,"name":"John Stones","number":5,"pos":"D","grid":"2:3"}},{"player":{"id":567,"name":"R\u00faben Dias","number":3,"pos":"D","grid":"2:2"}},{"player":{"id":641,"name":"Oleksandr Zinchenko","number":11,"pos":"D","grid":"2:1"}},{"player":{"id":629,"name":"Kevin De Bruyne","number":17,"pos":"M","grid":"3:3"}},{"player":{"id":640,"name":"Fernandinho","number":25,"pos":"M","grid":"3:2"}},{"player":{"id":631,"name":"Phil Foden","number":47,"pos":"M","grid":"3:1"}},{"player":{"id":635,"name":"Riyad Mahrez","number":26,"pos":"F","grid":"4:3"}},{"player":{"id":643,"name":"Gabriel Jesus","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":645,"name":"Raheem Sterling","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":50828,"name":"Zack Steffen","number":13,"pos":"G","grid":null}},{"player":{"id":623,"name":"Benjamin Mendy","number":22,"pos":"D","grid":null}},{"player":{"id":18861,"name":"Nathan Ak\u00e9","number":6,"pos":"D","grid":null}},{"player":{"id":622,"name":"Aymeric Laporte","number":14,"pos":"D","grid":null}},{"player":{"id":633,"name":"\u0130lkay G\u00fcndo\u011fan","number":8,"pos":"M","grid":null}},{"player":{"id":44,"name":"Rodri","number":16,"pos":"M","grid":null}},{"player":{"id":931,"name":"Ferr\u00e1n Torres","number":21,"pos":"F","grid":null}},{"player":{"id":636,"name":"Bernardo Silva","number":20,"pos":"M","grid":null}},{"player":{"id":642,"name":"Sergio Ag\u00fcero","number":10,"pos":"F","grid":null}}],"coach":{"id":4,"name":"Guardiola","photo":"https:\/\/media-1.api-sports.io\/football\/coachs\/4.png"}},{"team":{"id":45,"name":"Everton","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/45.png","colors":{"player":{"primary":"070707","number":"ffffff","border":"66ff00"},"goalkeeper":{"primary":"66ff00","number":"000000","border":"66ff00"}}},"formation":"4-3-1-2","startXI":[{"player":{"id":2932,"name":"Jordan Pickford","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":19150,"name":"Mason Holgate","number":4,"pos":"D","grid":"2:4"}},{"player":{"id":2934,"name":"Michael Keane","number":5,"pos":"D","grid":"2:3"}},{"player":{"id":19073,"name":"Ben Godfrey","number":22,"pos":"D","grid":"2:2"}},{"player":{"id":2724,"name":"Lucas Digne","number":12,"pos":"D","grid":"2:1"}},{"player":{"id":18805,"name":"Abdoulaye Doucour\u00e9","number":16,"pos":"M","grid":"3:3"}},{"player":{"id":326,"name":"Allan","number":6,"pos":"M","grid":"3:2"}},{"player":{"id":18762,"name":"Tom Davies","number":26,"pos":"M","grid":"3:1"}},{"player":{"id":2795,"name":"Gylfi Sigur\u00f0sson","number":10,"pos":"M","grid":"4:1"}},{"player":{"id":18766,"name":"Dominic Calvert-Lewin","number":9,"pos":"F","grid":"5:2"}},{"player":{"id":2413,"name":"Richarlison","number":7,"pos":"F","grid":"5:1"}}],"substitutes":[{"player":{"id":18755,"name":"Jo\u00e3o Virg\u00ednia","number":31,"pos":"G","grid":null}},{"player":{"id":766,"name":"Robin Olsen","number":33,"pos":"G","grid":null}},{"player":{"id":156490,"name":"Niels Nkounkou","number":18,"pos":"D","grid":null}},{"player":{"id":18758,"name":"S\u00e9amus Coleman","number":23,"pos":"D","grid":null}},{"player":{"id":138849,"name":"Kyle John","number":48,"pos":"D","grid":null}},{"player":{"id":18765,"name":"Andr\u00e9 Gomes","number":21,"pos":"M","grid":null}},{"player":{"id":1455,"name":"Alex Iwobi","number":17,"pos":"F","grid":null}},{"player":{"id":18761,"name":"Bernard","number":20,"pos":"F","grid":null}}],"coach":{"id":2407,"name":"C. Ancelotti","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/2407.png"}}]} [] [] +[2023-03-20T17:17:19.395543+00:00] LiveSoccer.INFO: - {"get":"fixtures\/players","parameters":{"fixture":"169080"},"errors":[],"results":2,"paging":{"current":1,"total":1},"response":[{"team":{"id":2284,"name":"Monarcas","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/2284.png","update":"2020-05-13T15:02:15+00:00"},"players":[{"player":{"id":35931,"name":"Sebasti\u00e1n Sosa","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35931.png"},"statistics":[{"games":{"minutes":90,"number":13,"position":"G","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":1},"passes":{"total":17,"key":0,"accuracy":"68%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":0,"won":0},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":35661,"name":"Joaqu\u00edn Mart\u00ednez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35661.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":1,"accuracy":"70%"},"tackles":{"total":1,"blocks":0,"interceptions":0},"duels":{"total":8,"won":7},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2570,"name":"Gabriel Achilier","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2570.png"},"statistics":[{"games":{"minutes":90,"number":24,"position":"D","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":24,"key":0,"accuracy":"63%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":12,"won":6},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":4},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2556,"name":"Sebasti\u00e1n Vegas","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2556.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":30,"key":0,"accuracy":"81%"},"tackles":{"total":4,"blocks":0,"interceptions":2},"duels":{"total":12,"won":10},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35937,"name":"Efrain Velarde","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35937.png"},"statistics":[{"games":{"minutes":90,"number":2,"position":"D","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":16,"key":2,"accuracy":"72%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":10,"won":5},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35729,"name":"Luis Mendoza","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35729.png"},"statistics":[{"games":{"minutes":63,"number":21,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":1,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":4,"accuracy":"75%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":7,"won":4},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35949,"name":"Aldo Rocha","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35949.png"},"statistics":[{"games":{"minutes":90,"number":26,"position":"M","rating":"6.3","captain":true,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":35,"key":0,"accuracy":"85%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":5,"won":3},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35946,"name":"Mario Osuna","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35946.png"},"statistics":[{"games":{"minutes":69,"number":8,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":23,"key":2,"accuracy":"79%"},"tackles":{"total":1,"blocks":1,"interceptions":2},"duels":{"total":9,"won":3},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35956,"name":"Gast\u00f3n Lezcano","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35956.png"},"statistics":[{"games":{"minutes":90,"number":31,"position":"M","rating":"7.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":2,"accuracy":"66%"},"tackles":{"total":1,"blocks":0,"interceptions":0},"duels":{"total":14,"won":9},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":7,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":1,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2455,"name":"Fernando Aristeguieta","photo":"https:\/\/media-3.api-sports.io\/football\/players\/2455.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":7,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":16,"key":2,"accuracy":"57%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":24,"won":13},"dribbles":{"attempts":0,"success":0,"past":3},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2429,"name":"Edison Flores","photo":"https:\/\/media-2.api-sports.io\/football\/players\/2429.png"},"statistics":[{"games":{"minutes":72,"number":10,"position":"F","rating":"7.7","captain":false,"substitute":false},"offsides":1,"shots":{"total":3,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":16,"key":2,"accuracy":"76%"},"tackles":{"total":1,"blocks":0,"interceptions":0},"duels":{"total":7,"won":6},"dribbles":{"attempts":3,"success":3,"past":null},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35948,"name":"Candido Ramirez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35948.png"},"statistics":[{"games":{"minutes":27,"number":15,"position":"M","rating":"6.9","captain":false,"substitute":true},"offsides":null,"shots":{"total":1,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":3,"key":0,"accuracy":"42%"},"tackles":{"total":1,"blocks":0,"interceptions":0},"duels":{"total":6,"won":4},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35944,"name":"Rodrigo Millar","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35944.png"},"statistics":[{"games":{"minutes":21,"number":20,"position":"M","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":2,"won":1},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":49943,"name":"Lucas Villafanez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/49943.png"},"statistics":[{"games":{"minutes":18,"number":19,"position":"M","rating":"6.2","captain":false,"substitute":true},"offsides":null,"shots":{"total":1,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":10,"key":1,"accuracy":"90%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":1,"won":1},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":2283,"name":"Atlas","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/2283.png","update":"2020-05-13T15:02:15+00:00"},"players":[{"player":{"id":2482,"name":"Camilo Vargas","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2482.png"},"statistics":[{"games":{"minutes":90,"number":12,"position":"G","rating":"8.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":5},"passes":{"total":13,"key":0,"accuracy":"41%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":0,"won":0},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":36160,"name":"Diego Barbosa","photo":"https:\/\/media-3.api-sports.io\/football\/players\/36160.png"},"statistics":[{"games":{"minutes":90,"number":15,"position":"D","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"71%"},"tackles":{"total":5,"blocks":2,"interceptions":0},"duels":{"total":14,"won":9},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35779,"name":"Hugo Nervo","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35779.png"},"statistics":[{"games":{"minutes":90,"number":2,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":26,"key":0,"accuracy":"68%"},"tackles":{"total":null,"blocks":2,"interceptions":0},"duels":{"total":14,"won":5},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35836,"name":"Jorge Segura","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35836.png"},"statistics":[{"games":{"minutes":90,"number":4,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":28,"key":0,"accuracy":"87%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":8,"won":3},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35773,"name":"Jes\u00fas Angulo","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35773.png"},"statistics":[{"games":{"minutes":87,"number":27,"position":"D","rating":"5.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":16,"key":0,"accuracy":"76%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":13,"won":5},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":2,"committed":4},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":1,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35856,"name":"Edgar Zald\u00edvar","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35856.png"},"statistics":[{"games":{"minutes":62,"number":6,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":24,"key":0,"accuracy":"88%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":2,"won":2},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35849,"name":"Jes\u00fas Isijara","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35849.png"},"statistics":[{"games":{"minutes":90,"number":26,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":1,"shots":{"total":1,"on":1},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"78%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":15,"won":6},"dribbles":{"attempts":3,"success":2,"past":2},"fouls":{"drawn":3,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35851,"name":"Osvaldo Mart\u00ednez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35851.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.2","captain":true,"substitute":false},"offsides":null,"shots":{"total":1,"on":1},"goals":{"total":null,"conceded":0,"assists":1,"saves":null},"passes":{"total":34,"key":1,"accuracy":"87%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":7,"won":0},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":36180,"name":"Edson Rivera","photo":"https:\/\/media-2.api-sports.io\/football\/players\/36180.png"},"statistics":[{"games":{"minutes":45,"number":25,"position":"M","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":15,"key":0,"accuracy":"88%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":6,"won":3},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35864,"name":"Ian Torres","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35864.png"},"statistics":[{"games":{"minutes":90,"number":7,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":17,"key":0,"accuracy":"89%"},"tackles":{"total":null,"blocks":0,"interceptions":3},"duels":{"total":11,"won":5},"dribbles":{"attempts":2,"success":2,"past":null},"fouls":{"drawn":3,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35790,"name":"Javier Correa","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35790.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"45%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":14,"won":4},"dribbles":{"attempts":4,"success":0,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35841,"name":"Daniel Aguilar","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35841.png"},"statistics":[{"games":{"minutes":3,"number":16,"position":"M","rating":"\u2013","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":0,"won":0},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35843,"name":"Andr\u00e9s Andrade","photo":"https:\/\/media-1.api-sports.io\/football\/players\/35843.png"},"statistics":[{"games":{"minutes":45,"number":8,"position":"M","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"58%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":9,"won":1},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":0,"committed":4},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]} [] [] +[2023-03-20T17:21:08.667878+00:00] LiveSoccer.INFO: - {"get":"injuries","parameters":{"league":"2","season":"2020"},"errors":[],"results":84,"paging":{"current":1,"total":1},"response":[{"player":{"id":161919,"name":"Y. Moukoko","photo":"https:\/\/media-2.api-sports.io\/football\/players\/161919.png","type":"Missing Fixture","reason":"Shin Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686308,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":18,"name":"J. Sancho","photo":"https:\/\/media-1.api-sports.io\/football\/players\/18.png","type":"Missing Fixture","reason":"Hip Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686308,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":11,"name":"M. Schmelzer","photo":"https:\/\/media-3.api-sports.io\/football\/players\/11.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686308,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":20,"name":"A. Witsel","photo":"https:\/\/media-2.api-sports.io\/football\/players\/20.png","type":"Missing Fixture","reason":"Achilles Tendon Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686308,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":13,"name":"D. Zagadou","photo":"https:\/\/media-2.api-sports.io\/football\/players\/13.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686308,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":733,"name":"D. Carvajal","photo":"https:\/\/media-3.api-sports.io\/football\/players\/733.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2296,"name":"E. Hazard","photo":"https:\/\/media-2.api-sports.io\/football\/players\/2296.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":738,"name":"S. Ramos","photo":"https:\/\/media-3.api-sports.io\/football\/players\/738.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":742,"name":"R. Varane","photo":"https:\/\/media-2.api-sports.io\/football\/players\/742.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":284,"name":"J. Gomez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/284.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":292,"name":"J. Henderson","photo":"https:\/\/media-2.api-sports.io\/football\/players\/292.png","type":"Missing Fixture","reason":"Groin Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":281,"name":"C. Kelleher","photo":"https:\/\/media-1.api-sports.io\/football\/players\/281.png","type":"Missing Fixture","reason":"Abdominal strain"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":286,"name":"J. Matip","photo":"https:\/\/media-1.api-sports.io\/football\/players\/286.png","type":"Missing Fixture","reason":"Ankle Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":305,"name":"D. Origi","photo":"https:\/\/media-2.api-sports.io\/football\/players\/305.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":290,"name":"V. van Dijk","photo":"https:\/\/media-3.api-sports.io\/football\/players\/290.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686310,"timezone":"UTC","date":"2021-04-06T19:00:00+00:00","timestamp":1617735600},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":865,"name":"D. Costa","photo":"https:\/\/media-2.api-sports.io\/football\/players\/865.png","type":"Missing Fixture","reason":"Broken ankle"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":510,"name":"S. Gnabry","photo":"https:\/\/media-3.api-sports.io\/football\/players\/510.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":496,"name":"R. Hoffmann","photo":"https:\/\/media-2.api-sports.io\/football\/players\/496.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":521,"name":"R. Lewandowski","photo":"https:\/\/media-1.api-sports.io\/football\/players\/521.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":47341,"name":"M. Roca","photo":"https:\/\/media-3.api-sports.io\/football\/players\/47341.png","type":"Missing Fixture","reason":"Knock"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":162037,"name":"M. Tillman","photo":"https:\/\/media-1.api-sports.io\/football\/players\/162037.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":519,"name":"C. Tolisso","photo":"https:\/\/media-3.api-sports.io\/football\/players\/519.png","type":"Missing Fixture","reason":"Tendon Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":258,"name":"J. Bernat","photo":"https:\/\/media-2.api-sports.io\/football\/players\/258.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":769,"name":"A. Florenzi","photo":"https:\/\/media-1.api-sports.io\/football\/players\/769.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":216,"name":"M. Icardi","photo":"https:\/\/media-2.api-sports.io\/football\/players\/216.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":263,"name":"L. Kurzawa","photo":"https:\/\/media-1.api-sports.io\/football\/players\/263.png","type":"Missing Fixture","reason":"Calf Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":271,"name":"L. Paredes","photo":"https:\/\/media-3.api-sports.io\/football\/players\/271.png","type":"Missing Fixture","reason":"Suspended"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":273,"name":"M. Verratti","photo":"https:\/\/media-3.api-sports.io\/football\/players\/273.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686314,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":369,"name":"D. Costa","photo":"https:\/\/media-2.api-sports.io\/football\/players\/369.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686312,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":773,"name":"I. Marcano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/773.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686312,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":41714,"name":"M. Mbaye","photo":"https:\/\/media-2.api-sports.io\/football\/players\/41714.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686312,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2375,"name":"Sergio Oliveira","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2375.png","type":"Missing Fixture","reason":"Suspended"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686312,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":42315,"name":"M. Taremi","photo":"https:\/\/media-3.api-sports.io\/football\/players\/42315.png","type":"Missing Fixture","reason":"Suspended"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686312,"timezone":"UTC","date":"2021-04-07T19:00:00+00:00","timestamp":1617822000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2291,"name":"M. Kovacic","photo":"https:\/\/media-2.api-sports.io\/football\/players\/2291.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/49.png"},"fixture":{"id":686313,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":369,"name":"D. Costa","photo":"https:\/\/media-3.api-sports.io\/football\/players\/369.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686313,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":773,"name":"I. Marcano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/773.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686313,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":41714,"name":"M. Mbaye","photo":"https:\/\/media-2.api-sports.io\/football\/players\/41714.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":212,"name":"FC Porto","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/212.png"},"fixture":{"id":686313,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":258,"name":"J. Bernat","photo":"https:\/\/media-2.api-sports.io\/football\/players\/258.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":216,"name":"M. Icardi","photo":"https:\/\/media-2.api-sports.io\/football\/players\/216.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":263,"name":"L. Kurzawa","photo":"https:\/\/media-3.api-sports.io\/football\/players\/263.png","type":"Missing Fixture","reason":"Calf Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":257,"name":"Marquinhos","photo":"https:\/\/media-2.api-sports.io\/football\/players\/257.png","type":"Missing Fixture","reason":"Groin Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":865,"name":"D. Costa","photo":"https:\/\/media-3.api-sports.io\/football\/players\/865.png","type":"Missing Fixture","reason":"Broken ankle"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":510,"name":"S. Gnabry","photo":"https:\/\/media-3.api-sports.io\/football\/players\/510.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":496,"name":"R. Hoffmann","photo":"https:\/\/media-1.api-sports.io\/football\/players\/496.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":521,"name":"R. Lewandowski","photo":"https:\/\/media-3.api-sports.io\/football\/players\/521.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":47341,"name":"M. Roca","photo":"https:\/\/media-3.api-sports.io\/football\/players\/47341.png","type":"Missing Fixture","reason":"Knock"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":506,"name":"N. Sule","photo":"https:\/\/media-3.api-sports.io\/football\/players\/506.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":162037,"name":"M. Tillman","photo":"https:\/\/media-1.api-sports.io\/football\/players\/162037.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":519,"name":"C. Tolisso","photo":"https:\/\/media-1.api-sports.io\/football\/players\/519.png","type":"Missing Fixture","reason":"Tendon Injury"},"team":{"id":157,"name":"Bayern Munich","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/157.png"},"fixture":{"id":686315,"timezone":"UTC","date":"2021-04-13T19:00:00+00:00","timestamp":1618340400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":161919,"name":"Y. Moukoko","photo":"https:\/\/media-2.api-sports.io\/football\/players\/161919.png","type":"Missing Fixture","reason":"Shin Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":18,"name":"J. Sancho","photo":"https:\/\/media-1.api-sports.io\/football\/players\/18.png","type":"Missing Fixture","reason":"Hip Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":11,"name":"M. Schmelzer","photo":"https:\/\/media-2.api-sports.io\/football\/players\/11.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":20,"name":"A. Witsel","photo":"https:\/\/media-1.api-sports.io\/football\/players\/20.png","type":"Missing Fixture","reason":"Achilles Tendon Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":13,"name":"D. Zagadou","photo":"https:\/\/media-3.api-sports.io\/football\/players\/13.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/165.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":642,"name":"S. Aguero","photo":"https:\/\/media-3.api-sports.io\/football\/players\/642.png","type":"Missing Fixture","reason":"Injury"},"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/50.png"},"fixture":{"id":686309,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":284,"name":"J. Gomez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/284.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":292,"name":"J. Henderson","photo":"https:\/\/media-1.api-sports.io\/football\/players\/292.png","type":"Missing Fixture","reason":"Groin Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":286,"name":"J. Matip","photo":"https:\/\/media-2.api-sports.io\/football\/players\/286.png","type":"Missing Fixture","reason":"Ankle Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":290,"name":"V. van Dijk","photo":"https:\/\/media-2.api-sports.io\/football\/players\/290.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":293,"name":"C. Jones","photo":"https:\/\/media-3.api-sports.io\/football\/players\/293.png","type":"Questionable","reason":"Muscle Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":281,"name":"C. Kelleher","photo":"https:\/\/media-3.api-sports.io\/football\/players\/281.png","type":"Questionable","reason":"Abdominal strain"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":305,"name":"D. Origi","photo":"https:\/\/media-3.api-sports.io\/football\/players\/305.png","type":"Questionable","reason":"Muscle Injury"},"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/40.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":733,"name":"D. Carvajal","photo":"https:\/\/media-1.api-sports.io\/football\/players\/733.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2296,"name":"E. Hazard","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2296.png","type":"Missing Fixture","reason":"Ankle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":757,"name":"Lucas","photo":"https:\/\/media-1.api-sports.io\/football\/players\/757.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":738,"name":"S. Ramos","photo":"https:\/\/media-1.api-sports.io\/football\/players\/738.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":742,"name":"R. Varane","photo":"https:\/\/media-1.api-sports.io\/football\/players\/742.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":686311,"timezone":"UTC","date":"2021-04-14T19:00:00+00:00","timestamp":1618426800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":757,"name":"Lucas","photo":"https:\/\/media-1.api-sports.io\/football\/players\/757.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698179,"timezone":"UTC","date":"2021-04-27T19:00:00+00:00","timestamp":1619550000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":653,"name":"F. Mendy","photo":"https:\/\/media-2.api-sports.io\/football\/players\/653.png","type":"Missing Fixture","reason":"Calf Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698179,"timezone":"UTC","date":"2021-04-27T19:00:00+00:00","timestamp":1619550000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":738,"name":"S. Ramos","photo":"https:\/\/media-3.api-sports.io\/football\/players\/738.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698179,"timezone":"UTC","date":"2021-04-27T19:00:00+00:00","timestamp":1619550000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":756,"name":"F. Valverde","photo":"https:\/\/media-3.api-sports.io\/football\/players\/756.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698179,"timezone":"UTC","date":"2021-04-27T19:00:00+00:00","timestamp":1619550000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2291,"name":"M. Kovacic","photo":"https:\/\/media-3.api-sports.io\/football\/players\/2291.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"fixture":{"id":698179,"timezone":"UTC","date":"2021-04-27T19:00:00+00:00","timestamp":1619550000},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":258,"name":"J. Bernat","photo":"https:\/\/media-2.api-sports.io\/football\/players\/258.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698181,"timezone":"UTC","date":"2021-04-28T19:00:00+00:00","timestamp":1619636400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":20568,"name":"A. Letellier","photo":"https:\/\/media-1.api-sports.io\/football\/players\/20568.png","type":"Missing Fixture","reason":"Thigh Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698181,"timezone":"UTC","date":"2021-04-28T19:00:00+00:00","timestamp":1619636400},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":619,"name":"E. Garcia","photo":"https:\/\/media-3.api-sports.io\/football\/players\/619.png","type":"Missing Fixture","reason":"Illness"},"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/50.png"},"fixture":{"id":698182,"timezone":"UTC","date":"2021-05-04T19:00:00+00:00","timestamp":1620154800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":258,"name":"J. Bernat","photo":"https:\/\/media-1.api-sports.io\/football\/players\/258.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698182,"timezone":"UTC","date":"2021-05-04T19:00:00+00:00","timestamp":1620154800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2990,"name":"I. Gueye","photo":"https:\/\/media-3.api-sports.io\/football\/players\/2990.png","type":"Missing Fixture","reason":"Suspended"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698182,"timezone":"UTC","date":"2021-05-04T19:00:00+00:00","timestamp":1620154800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":20568,"name":"A. Letellier","photo":"https:\/\/media-3.api-sports.io\/football\/players\/20568.png","type":"Missing Fixture","reason":"Finger Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698182,"timezone":"UTC","date":"2021-05-04T19:00:00+00:00","timestamp":1620154800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":278,"name":"K. Mbappe","photo":"https:\/\/media-3.api-sports.io\/football\/players\/278.png","type":"Questionable","reason":"Calf Injury"},"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"fixture":{"id":698182,"timezone":"UTC","date":"2021-05-04T19:00:00+00:00","timestamp":1620154800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":2291,"name":"M. Kovacic","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2291.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/49.png"},"fixture":{"id":698180,"timezone":"UTC","date":"2021-05-05T19:00:00+00:00","timestamp":1620241200},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":733,"name":"D. Carvajal","photo":"https:\/\/media-2.api-sports.io\/football\/players\/733.png","type":"Missing Fixture","reason":"Thigh Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698180,"timezone":"UTC","date":"2021-05-05T19:00:00+00:00","timestamp":1620241200},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":757,"name":"Lucas","photo":"https:\/\/media-3.api-sports.io\/football\/players\/757.png","type":"Missing Fixture","reason":"Knee Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698180,"timezone":"UTC","date":"2021-05-05T19:00:00+00:00","timestamp":1620241200},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":742,"name":"R. Varane","photo":"https:\/\/media-1.api-sports.io\/football\/players\/742.png","type":"Missing Fixture","reason":"Muscle Injury"},"team":{"id":541,"name":"Real Madrid","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/541.png"},"fixture":{"id":698180,"timezone":"UTC","date":"2021-05-05T19:00:00+00:00","timestamp":1620241200},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/2.png","flag":null}},{"player":{"id":633,"name":"I. Gundogan","photo":"https:\/\/media-1.api-sports.io\/football\/players\/633.png","type":"Questionable","reason":"Thigh Injury"},"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/50.png"},"fixture":{"id":701961,"timezone":"UTC","date":"2021-05-29T19:00:00+00:00","timestamp":1622314800},"league":{"id":2,"season":2020,"name":"UEFA Champions League","country":"World","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/2.png","flag":null}}]} [] [] +[2023-03-20T17:23:34.696013+00:00] LiveSoccer.INFO: - {"get":"predictions","parameters":{"fixture":"198772"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"predictions":{"winner":{"id":1189,"name":"Deportivo Santani","comment":"Win or draw"},"win_or_draw":true,"under_over":"-3.5","goals":{"home":"-2.5","away":"-1.5"},"advice":"Combo Double chance : Deportivo Santani or draw and -3.5 goals","percent":{"home":"45%","draw":"45%","away":"10%"}},"league":{"id":252,"name":"Division Profesional - Clausura","country":"Paraguay","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/252.png","flag":"https:\/\/media-3.api-sports.io\/flags\/py.svg","season":2019},"teams":{"home":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1189.png","last_5":{"form":"60%","att":"60%","def":"0%","goals":{"for":{"total":3,"average":"0.6"},"against":{"total":5,"average":"1.0"}}},"league":{"form":"LDLDLDLWLWWLW","fixtures":{"played":{"home":6,"away":7,"total":13},"wins":{"home":2,"away":2,"total":4},"draws":{"home":3,"away":0,"total":3},"loses":{"home":1,"away":5,"total":6}},"goals":{"for":{"total":{"home":7,"away":4,"total":11},"average":{"home":"1.2","away":"0.6","total":"0.8"},"minute":{"0-15":{"total":null,"percentage":null},"16-30":{"total":4,"percentage":"40.00%"},"31-45":{"total":2,"percentage":"20.00%"},"46-60":{"total":null,"percentage":null},"61-75":{"total":3,"percentage":"30.00%"},"76-90":{"total":1,"percentage":"10.00%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":6,"away":14,"total":20},"average":{"home":"1.0","away":"2.0","total":"1.5"},"minute":{"0-15":{"total":3,"percentage":"14.29%"},"16-30":{"total":4,"percentage":"19.05%"},"31-45":{"total":2,"percentage":"9.52%"},"46-60":{"total":null,"percentage":null},"61-75":{"total":5,"percentage":"23.81%"},"76-90":{"total":4,"percentage":"19.05%"},"91-105":{"total":3,"percentage":"14.29%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":2,"draws":1,"loses":1},"wins":{"home":"3-1","away":"0-1"},"loses":{"home":"0-2","away":"4-0"},"goals":{"for":{"home":3,"away":1},"against":{"home":2,"away":4}}},"clean_sheet":{"home":1,"away":2,"total":3},"failed_to_score":{"home":1,"away":3,"total":4},"penalty":{"scored":{"total":0,"percentage":"0%"},"missed":{"total":0,"percentage":"0%"},"total":0},"lineups":[],"cards":{"yellow":{"0-15":{"total":3,"percentage":"9.38%"},"16-30":{"total":5,"percentage":"15.63%"},"31-45":{"total":3,"percentage":"9.38%"},"46-60":{"total":5,"percentage":"15.63%"},"61-75":{"total":4,"percentage":"12.50%"},"76-90":{"total":12,"percentage":"37.50%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}},"away":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/1180.png","last_5":{"form":"40%","att":"80%","def":"0%","goals":{"for":{"total":4,"average":"0.8"},"against":{"total":8,"average":"1.6"}}},"league":{"form":"WLWLDLDLLLLWW","fixtures":{"played":{"home":7,"away":6,"total":13},"wins":{"home":3,"away":1,"total":4},"draws":{"home":0,"away":2,"total":2},"loses":{"home":4,"away":3,"total":7}},"goals":{"for":{"total":{"home":8,"away":3,"total":11},"average":{"home":"1.1","away":"0.5","total":"0.8"},"minute":{"0-15":{"total":2,"percentage":"18.18%"},"16-30":{"total":null,"percentage":null},"31-45":{"total":1,"percentage":"9.09%"},"46-60":{"total":1,"percentage":"9.09%"},"61-75":{"total":4,"percentage":"36.36%"},"76-90":{"total":1,"percentage":"9.09%"},"91-105":{"total":2,"percentage":"18.18%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":14,"away":10,"total":24},"average":{"home":"2.0","away":"1.7","total":"1.8"},"minute":{"0-15":{"total":5,"percentage":"20.83%"},"16-30":{"total":2,"percentage":"8.33%"},"31-45":{"total":4,"percentage":"16.67%"},"46-60":{"total":4,"percentage":"16.67%"},"61-75":{"total":4,"percentage":"16.67%"},"76-90":{"total":3,"percentage":"12.50%"},"91-105":{"total":2,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":1,"draws":1,"loses":4},"wins":{"home":"3-1","away":"0-1"},"loses":{"home":"0-6","away":"3-0"},"goals":{"for":{"home":3,"away":1},"against":{"home":6,"away":3}}},"clean_sheet":{"home":1,"away":1,"total":2},"failed_to_score":{"home":3,"away":3,"total":6},"penalty":{"scored":{"total":2,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":2},"lineups":[],"cards":{"yellow":{"0-15":{"total":5,"percentage":"12.20%"},"16-30":{"total":5,"percentage":"12.20%"},"31-45":{"total":7,"percentage":"17.07%"},"46-60":{"total":12,"percentage":"29.27%"},"61-75":{"total":6,"percentage":"14.63%"},"76-90":{"total":6,"percentage":"14.63%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":1,"percentage":"50.00%"},"61-75":{"total":1,"percentage":"50.00%"},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}}},"comparison":{"form":{"home":"60%","away":"40%"},"att":{"home":"43%","away":"57%"},"def":{"home":"62%","away":"38%"},"poisson_distribution":{"home":"75%","away":"25%"},"h2h":{"home":"29%","away":"71%"},"goals":{"home":"40%","away":"60%"},"total":{"home":"51.5%","away":"48.5%"}},"h2h":[{"fixture":{"id":198706,"referee":"J. M\u00e9ndez","timezone":"UTC","date":"2019-07-27T19:30:00+00:00","timestamp":1564255800,"periods":{"first":1564255800,"second":1564259400},"venue":{"id":null,"name":"Estadio Lic. Erico Galeano Segovia (Capiat\u00e1)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":252,"name":"Division Profesional - Clausura","country":"Paraguay","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/252.png","flag":"https:\/\/media-2.api-sports.io\/flags\/py.svg","season":2019,"round":"Clausura - 3"},"teams":{"home":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1180.png","winner":true},"away":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1189.png","winner":false}},"goals":{"home":3,"away":1},"score":{"halftime":{"home":1,"away":1},"fulltime":{"home":3,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":144182,"referee":null,"timezone":"UTC","date":"2019-03-25T23:15:00+00:00","timestamp":1553555700,"periods":{"first":1553555700,"second":1553559300},"venue":{"id":null,"name":"Estadio Lic. Erico Galeano Segovia (Capiat\u00e1)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":250,"name":"Division Profesional - Apertura","country":"Paraguay","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/250.png","flag":"https:\/\/media-3.api-sports.io\/flags\/py.svg","season":2019,"round":"Regular Season - 12"},"teams":{"home":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1180.png","winner":true},"away":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1189.png","winner":false}},"goals":{"home":2,"away":1},"score":{"halftime":{"home":2,"away":1},"fulltime":{"home":2,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":144113,"referee":null,"timezone":"UTC","date":"2019-01-23T21:00:00+00:00","timestamp":1548277200,"periods":{"first":1548277200,"second":1548280800},"venue":{"id":null,"name":"Estadio Juan Jos\u00e9 V\u00e1zquez (San Estanislao)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":250,"name":"Division Profesional - Apertura","country":"Paraguay","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/250.png","flag":"https:\/\/media-3.api-sports.io\/flags\/py.svg","season":2019,"round":"Regular Season - 1"},"teams":{"home":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/1189.png","winner":null},"away":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/1180.png","winner":null}},"goals":{"home":0,"away":0},"score":{"halftime":{"home":0,"away":0},"fulltime":{"home":0,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":144745,"referee":null,"timezone":"UTC","date":"2018-11-12T20:45:00+00:00","timestamp":1542055500,"periods":{"first":1542055500,"second":1542059100},"venue":{"id":null,"name":"Estadio Lic. Erico Galeano Segovia (Capiat\u00e1)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":252,"name":"Division Profesional - Clausura","country":"Paraguay","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/252.png","flag":"https:\/\/media-1.api-sports.io\/flags\/py.svg","season":2018,"round":"Regular Season - 18"},"teams":{"home":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/1180.png","winner":false},"away":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1189.png","winner":true}},"goals":{"home":0,"away":2},"score":{"halftime":{"home":0,"away":1},"fulltime":{"home":0,"away":2},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}},{"fixture":{"id":144679,"referee":null,"timezone":"UTC","date":"2018-08-26T19:30:00+00:00","timestamp":1535311800,"periods":{"first":1535311800,"second":1535315400},"venue":{"id":null,"name":"Estadio Juan Jos\u00e9 V\u00e1zquez (San Estanislao)","city":null},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":252,"name":"Division Profesional - Clausura","country":"Paraguay","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/252.png","flag":"https:\/\/media-1.api-sports.io\/flags\/py.svg","season":2018,"round":"Regular Season - 7"},"teams":{"home":{"id":1189,"name":"Deportivo Santani","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1189.png","winner":false},"away":{"id":1180,"name":"Deportivo Capiata","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1180.png","winner":true}},"goals":{"home":0,"away":1},"score":{"halftime":{"home":0,"away":1},"fulltime":{"home":0,"away":1},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}}}]}]} [] [] +[2023-03-20T17:26:53.788548+00:00] LiveSoccer.INFO: - {"get":"coachs","parameters":{"id":"1"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"J. Klopp","firstname":"J\u00fcrgen Norbert","lastname":"Klopp","age":56,"birth":{"date":"1967-06-16","place":"Stuttgart","country":"Germany"},"nationality":"Germany","height":"191 cm","weight":"83 kg","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/1.png","team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"career":[{"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"start":"2015-10-01","end":null},{"team":{"id":165,"name":"Borussia Dortmund","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/165.png"},"start":"2008-07-01","end":"2015-07-01"},{"team":{"id":null,"name":"Mainz","logo":null},"start":"2001-02-01","end":"2008-06-01"}]}]} [] [] +[2023-03-20T17:31:45.476951+00:00] LiveSoccer.INFO: - {"get":"players\/seasons","parameters":{"player":"276"},"errors":[],"results":14,"paging":{"current":1,"total":1},"response":[2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022]} [] [] +[2023-03-20T17:32:42.065537+00:00] LiveSoccer.INFO: - {"get":"players","parameters":{"player":"19088","season":"2018"},"errors":{"player":"The Player field do not exist."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T17:33:01.415398+00:00] LiveSoccer.INFO: - {"get":"players","parameters":{"id":"19088","season":"2018"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"player":{"id":19088,"name":"D. Henderson","firstname":"Dean Bradley","lastname":"Henderson","age":26,"birth":{"date":"1997-03-12","place":"Whitehaven","country":"England"},"nationality":"England","height":"188 cm","weight":"85 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/19088.png"},"statistics":[{"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/62.png"},"league":{"id":40,"name":"Championship","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/40.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2018},"games":{"appearences":46,"lineups":46,"minutes":4140,"number":null,"position":"Goalkeeper","rating":"6.882608","captain":false},"substitutes":{"in":0,"out":0,"bench":0},"shots":{"total":0,"on":0},"goals":{"total":0,"conceded":41,"assists":1,"saves":113},"passes":{"total":439,"key":1,"accuracy":42},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":31,"won":28},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":11,"committed":0},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}},{"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/62.png"},"league":{"id":48,"name":"League Cup","country":"England","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/48.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2018},"games":{"appearences":0,"lineups":0,"minutes":0,"number":null,"position":"Goalkeeper","rating":null,"captain":false},"substitutes":{"in":0,"out":0,"bench":1},"shots":{"total":null,"on":null},"goals":{"total":0,"conceded":null,"assists":null,"saves":null},"passes":{"total":null,"key":null,"accuracy":null},"tackles":{"total":null,"blocks":null,"interceptions":null},"duels":{"total":null,"won":null},"dribbles":{"attempts":null,"success":null,"past":null},"fouls":{"drawn":null,"committed":null},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":null,"missed":null,"saved":null}},{"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/62.png"},"league":{"id":45,"name":"FA Cup","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/45.png","flag":"https:\/\/media-1.api-sports.io\/flags\/gb.svg","season":2018},"games":{"appearences":0,"lineups":0,"minutes":0,"number":null,"position":"Goalkeeper","rating":null,"captain":false},"substitutes":{"in":0,"out":0,"bench":1},"shots":{"total":null,"on":null},"goals":{"total":0,"conceded":null,"assists":null,"saves":null},"passes":{"total":null,"key":null,"accuracy":null},"tackles":{"total":null,"blocks":null,"interceptions":null},"duels":{"total":null,"won":null},"dribbles":{"attempts":null,"success":null,"past":null},"fouls":{"drawn":null,"committed":null},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":null,"missed":null,"saved":null}},{"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/62.png"},"league":{"id":null,"name":"Club Friendlies","country":null,"logo":null,"flag":null,"season":"2018"},"games":{"appearences":1,"lineups":1,"minutes":46,"number":null,"position":"Goalkeeper","rating":null,"captain":false},"substitutes":{"in":0,"out":1,"bench":0},"shots":{"total":null,"on":null},"goals":{"total":0,"conceded":null,"assists":null,"saves":null},"passes":{"total":null,"key":null,"accuracy":null},"tackles":{"total":null,"blocks":null,"interceptions":null},"duels":{"total":null,"won":null},"dribbles":{"attempts":null,"success":null,"past":null},"fouls":{"drawn":null,"committed":null},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":null,"missed":null,"saved":null}}]}]} [] [] +[2023-03-20T17:34:22.404398+00:00] LiveSoccer.INFO: - {"get":"players\/squads","parameters":{"team":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"players":[{"id":882,"name":"David de Gea","age":33,"number":1,"position":"Goalkeeper","photo":"https:\/\/media-1.api-sports.io\/football\/players\/882.png"},{"id":2931,"name":"T. Heaton","age":37,"number":22,"position":"Goalkeeper","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2931.png"},{"id":20319,"name":"N. Bishop","age":24,"number":30,"position":"Goalkeeper","photo":"https:\/\/media-1.api-sports.io\/football\/players\/20319.png"},{"id":2930,"name":"J. Butland","age":30,"number":31,"position":"Goalkeeper","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2930.png"},{"id":889,"name":"V. Lindel\u00f6f","age":29,"number":2,"position":"Defender","photo":"https:\/\/media-1.api-sports.io\/football\/players\/889.png"},{"id":888,"name":"P. Jones","age":31,"number":4,"position":"Defender","photo":"https:\/\/media-2.api-sports.io\/football\/players\/888.png"},{"id":2935,"name":"H. Maguire","age":30,"number":5,"position":"Defender","photo":"https:\/\/media-3.api-sports.io\/football\/players\/2935.png"},{"id":2467,"name":"Lisandro Mart\u00ednez","age":25,"number":6,"position":"Defender","photo":"https:\/\/media-1.api-sports.io\/football\/players\/2467.png"},{"id":37145,"name":"T. Malacia","age":24,"number":12,"position":"Defender","photo":"https:\/\/media-1.api-sports.io\/football\/players\/37145.png"},{"id":742,"name":"R. Varane","age":30,"number":19,"position":"Defender","photo":"https:\/\/media-3.api-sports.io\/football\/players\/742.png"},{"id":886,"name":"Diogo Dalot","age":24,"number":20,"position":"Defender","photo":"https:\/\/media-1.api-sports.io\/football\/players\/886.png"},{"id":891,"name":"L. Shaw","age":28,"number":23,"position":"Defender","photo":"https:\/\/media-3.api-sports.io\/football\/players\/891.png"},{"id":18846,"name":"A. Wan-Bissaka","age":26,"number":29,"position":"Defender","photo":"https:\/\/media-2.api-sports.io\/football\/players\/18846.png"},{"id":138806,"name":"B. Williams","age":23,"number":33,"position":"Defender","photo":"https:\/\/media-1.api-sports.io\/football\/players\/138806.png"},{"id":284363,"name":"R. Bennett","age":20,"number":66,"position":"Defender","photo":"https:\/\/media-2.api-sports.io\/football\/players\/284363.png"},{"id":1485,"name":"Bruno Fernandes","age":29,"number":8,"position":"Midfielder","photo":"https:\/\/media-2.api-sports.io\/football\/players\/1485.png"},{"id":174,"name":"C. Eriksen","age":31,"number":14,"position":"Midfielder","photo":"https:\/\/media-3.api-sports.io\/football\/players\/174.png"},{"id":1159,"name":"M. Sabitzer","age":29,"number":15,"position":"Midfielder","photo":"https:\/\/media-2.api-sports.io\/football\/players\/1159.png"},{"id":905,"name":"Fred","age":30,"number":17,"position":"Midfielder","photo":"https:\/\/media-1.api-sports.io\/football\/players\/905.png"},{"id":747,"name":"Casemiro","age":31,"number":18,"position":"Midfielder","photo":"https:\/\/media-1.api-sports.io\/football\/players\/747.png"},{"id":70078,"name":"F. Pellistri","age":22,"number":28,"position":"Midfielder","photo":"https:\/\/media-3.api-sports.io\/football\/players\/70078.png"},{"id":547,"name":"D. van de Beek","age":26,"number":34,"position":"Midfielder","photo":"https:\/\/media-1.api-sports.io\/football\/players\/547.png"},{"id":903,"name":"S. McTominay","age":27,"number":39,"position":"Midfielder","photo":"https:\/\/media-1.api-sports.io\/football\/players\/903.png"},{"id":284295,"name":"Zidane Iqbal","age":20,"number":55,"position":"Midfielder","photo":"https:\/\/media-3.api-sports.io\/football\/players\/284295.png"},{"id":284322,"name":"K. Mainoo","age":18,"number":73,"position":"Midfielder","photo":"https:\/\/media-2.api-sports.io\/football\/players\/284322.png"},{"id":908,"name":"A. Martial","age":28,"number":9,"position":"Attacker","photo":"https:\/\/media-1.api-sports.io\/football\/players\/908.png"},{"id":909,"name":"M. Rashford","age":26,"number":10,"position":"Attacker","photo":"https:\/\/media-1.api-sports.io\/football\/players\/909.png"},{"id":9971,"name":"Antony","age":23,"number":21,"position":"Attacker","photo":"https:\/\/media-2.api-sports.io\/football\/players\/9971.png"},{"id":18,"name":"J. Sancho","age":23,"number":25,"position":"Attacker","photo":"https:\/\/media-3.api-sports.io\/football\/players\/18.png"},{"id":25416,"name":"W. Weghorst","age":31,"number":27,"position":"Attacker","photo":"https:\/\/media-2.api-sports.io\/football\/players\/25416.png"},{"id":153430,"name":"A. Elanga","age":21,"number":36,"position":"Attacker","photo":"https:\/\/media-1.api-sports.io\/football\/players\/153430.png"},{"id":284324,"name":"A. Garnacho","age":19,"number":49,"position":"Attacker","photo":"https:\/\/media-2.api-sports.io\/football\/players\/284324.png"}]}]} [] [] +[2023-03-20T17:35:43.844914+00:00] LiveSoccer.INFO: - {"get":"players\/topscorers","parameters":{"season":"2018","league":"61"},"errors":[],"results":20,"paging":{"current":0,"total":1},"response":[{"player":{"id":278,"name":"K. Mbapp\u00e9","firstname":"Kylian","lastname":"Mbapp\u00e9 Lottin","age":25,"birth":{"date":"1998-12-20","place":"Paris","country":"France"},"nationality":"France","height":"178 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/278.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":29,"lineups":24,"minutes":2340,"number":null,"position":"Attacker","rating":"7.871428","captain":false},"substitutes":{"in":5,"out":1,"bench":5},"shots":{"total":122,"on":68},"goals":{"total":33,"conceded":null,"assists":7,"saves":null},"passes":{"total":591,"key":48,"accuracy":78},"tackles":{"total":4,"blocks":0,"interceptions":4},"duels":{"total":232,"won":112},"dribbles":{"attempts":115,"success":64,"past":null},"fouls":{"drawn":39,"committed":19},"cards":{"yellow":5,"yellowred":0,"red":1},"penalty":{"won":3,"commited":null,"scored":1,"missed":0,"saved":null}}]},{"player":{"id":3246,"name":"N. P\u00e9p\u00e9","firstname":"Nicolas","lastname":"P\u00e9p\u00e9","age":28,"birth":{"date":"1995-05-29","place":"Mantes-la-Jolie","country":"France"},"nationality":"C\u00f4te d'Ivoire","height":"183 cm","weight":"73 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/3246.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":38,"lineups":37,"minutes":3332,"number":null,"position":"Attacker","rating":"7.281578","captain":false},"substitutes":{"in":1,"out":9,"bench":1},"shots":{"total":118,"on":61},"goals":{"total":22,"conceded":null,"assists":11,"saves":null},"passes":{"total":946,"key":70,"accuracy":78},"tackles":{"total":9,"blocks":0,"interceptions":12},"duels":{"total":556,"won":279},"dribbles":{"attempts":182,"success":102,"past":null},"fouls":{"drawn":108,"committed":24},"cards":{"yellow":1,"yellowred":0,"red":0},"penalty":{"won":5,"commited":null,"scored":9,"missed":1,"saved":null}}]},{"player":{"id":274,"name":"E. Cavani","firstname":"Edinson Roberto","lastname":"Cavani G\u00f3mez","age":36,"birth":{"date":"1987-02-14","place":"Salto","country":"Uruguay"},"nationality":"Uruguay","height":"184 cm","weight":"71 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/274.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":21,"lineups":20,"minutes":1676,"number":null,"position":"Attacker","rating":"7.400000","captain":false},"substitutes":{"in":1,"out":6,"bench":3},"shots":{"total":52,"on":24},"goals":{"total":18,"conceded":null,"assists":5,"saves":null},"passes":{"total":267,"key":13,"accuracy":77},"tackles":{"total":9,"blocks":2,"interceptions":6},"duels":{"total":96,"won":42},"dribbles":{"attempts":20,"success":11,"past":null},"fouls":{"drawn":16,"committed":11},"cards":{"yellow":1,"yellowred":0,"red":0},"penalty":{"won":2,"commited":null,"scored":4,"missed":1,"saved":null}}]},{"player":{"id":1922,"name":"F. Thauvin","firstname":"Florian Trist\u00e1n Mariano","lastname":"Thauvin","age":30,"birth":{"date":"1993-01-26","place":"Orleans","country":"France"},"nationality":"France","height":"179 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/1922.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":33,"lineups":30,"minutes":2624,"number":null,"position":"Midfielder","rating":"7.331250","captain":false},"substitutes":{"in":3,"out":13,"bench":3},"shots":{"total":100,"on":35},"goals":{"total":16,"conceded":null,"assists":8,"saves":null},"passes":{"total":825,"key":47,"accuracy":75},"tackles":{"total":22,"blocks":1,"interceptions":7},"duels":{"total":349,"won":166},"dribbles":{"attempts":112,"success":59,"past":null},"fouls":{"drawn":47,"committed":28},"cards":{"yellow":5,"yellowred":0,"red":1},"penalty":{"won":1,"commited":null,"scored":2,"missed":0,"saved":null}}]},{"player":{"id":666,"name":"M. Demb\u00e9l\u00e9","firstname":"Moussa","lastname":"Demb\u00e9l\u00e9","age":27,"birth":{"date":"1996-07-12","place":"Pontoise","country":"France"},"nationality":"France","height":"183 cm","weight":"73 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/666.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":33,"lineups":21,"minutes":2013,"number":null,"position":"Attacker","rating":"7.035483","captain":false},"substitutes":{"in":12,"out":9,"bench":13},"shots":{"total":86,"on":38},"goals":{"total":15,"conceded":null,"assists":4,"saves":null},"passes":{"total":282,"key":32,"accuracy":70},"tackles":{"total":4,"blocks":2,"interceptions":2},"duels":{"total":237,"won":97},"dribbles":{"attempts":39,"success":23,"past":null},"fouls":{"drawn":13,"committed":34},"cards":{"yellow":1,"yellowred":0,"red":0},"penalty":{"won":3,"commited":null,"scored":1,"missed":1,"saved":null}}]},{"player":{"id":119,"name":"R. Falcao","firstname":"Radamel Falcao","lastname":"Garc\u00eda Z\u00e1rate","age":37,"birth":{"date":"1986-02-10","place":"Santa Marta","country":"Colombia"},"nationality":"Colombia","height":"177 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/119.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":33,"lineups":29,"minutes":2564,"number":null,"position":"Attacker","rating":"7.018181","captain":false},"substitutes":{"in":4,"out":11,"bench":4},"shots":{"total":94,"on":42},"goals":{"total":15,"conceded":null,"assists":2,"saves":null},"passes":{"total":508,"key":18,"accuracy":77},"tackles":{"total":16,"blocks":6,"interceptions":3},"duels":{"total":444,"won":203},"dribbles":{"attempts":33,"success":13,"past":null},"fouls":{"drawn":63,"committed":70},"cards":{"yellow":10,"yellowred":0,"red":0},"penalty":{"won":1,"commited":1,"scored":3,"missed":1,"saved":null}}]},{"player":{"id":276,"name":"Neymar","firstname":"Neymar","lastname":"da Silva Santos J\u00fanior","age":31,"birth":{"date":"1992-02-05","place":"Mogi das Cruzes","country":"Brazil"},"nationality":"Brazil","height":"175 cm","weight":"68 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/276.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":17,"lineups":16,"minutes":1443,"number":null,"position":"Attacker","rating":"8.164705","captain":false},"substitutes":{"in":1,"out":5,"bench":1},"shots":{"total":55,"on":27},"goals":{"total":15,"conceded":null,"assists":7,"saves":null},"passes":{"total":797,"key":46,"accuracy":80},"tackles":{"total":8,"blocks":0,"interceptions":5},"duels":{"total":304,"won":153},"dribbles":{"attempts":123,"success":74,"past":null},"fouls":{"drawn":58,"committed":12},"cards":{"yellow":2,"yellowred":0,"red":0},"penalty":{"won":2,"commited":null,"scored":5,"missed":0,"saved":null}}]},{"player":{"id":21591,"name":"A. Delort","firstname":"Andy","lastname":"Delort","age":32,"birth":{"date":"1991-10-09","place":"Sete","country":"France"},"nationality":"Algeria","height":"182 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/21591.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":36,"lineups":36,"minutes":3132,"number":null,"position":"Attacker","rating":"7.297142","captain":false},"substitutes":{"in":0,"out":17,"bench":0},"shots":{"total":117,"on":37},"goals":{"total":14,"conceded":null,"assists":6,"saves":null},"passes":{"total":657,"key":55,"accuracy":63},"tackles":{"total":17,"blocks":7,"interceptions":4},"duels":{"total":632,"won":260},"dribbles":{"attempts":93,"success":52,"past":null},"fouls":{"drawn":52,"committed":90},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":3,"missed":0,"saved":null}}]},{"player":{"id":22235,"name":"J. Bamba","firstname":"Jonathan","lastname":"Bamba","age":27,"birth":{"date":"1996-03-26","place":"Alfortville","country":"France"},"nationality":"France","height":"175 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/22235.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":38,"lineups":35,"minutes":3011,"number":null,"position":"Attacker","rating":"6.918421","captain":false},"substitutes":{"in":3,"out":10,"bench":3},"shots":{"total":67,"on":29},"goals":{"total":13,"conceded":null,"assists":3,"saves":null},"passes":{"total":911,"key":43,"accuracy":76},"tackles":{"total":19,"blocks":0,"interceptions":39},"duels":{"total":362,"won":155},"dribbles":{"attempts":76,"success":35,"past":null},"fouls":{"drawn":65,"committed":25},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":1,"missed":0,"saved":null}}]},{"player":{"id":22102,"name":"W. Khazri","firstname":"Wahbi","lastname":"Khazri","age":32,"birth":{"date":"1991-02-08","place":"Ajaccio","country":"France"},"nationality":"Tunisia","height":"176 cm","weight":"80 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/22102.png"},"statistics":[{"team":{"id":1063,"name":"Saint Etienne","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1063.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":32,"lineups":32,"minutes":2825,"number":null,"position":"Attacker","rating":"7.412500","captain":false},"substitutes":{"in":0,"out":7,"bench":0},"shots":{"total":94,"on":38},"goals":{"total":13,"conceded":null,"assists":6,"saves":null},"passes":{"total":655,"key":71,"accuracy":73},"tackles":{"total":26,"blocks":2,"interceptions":11},"duels":{"total":382,"won":148},"dribbles":{"attempts":76,"success":43,"past":null},"fouls":{"drawn":52,"committed":54},"cards":{"yellow":10,"yellowred":0,"red":1},"penalty":{"won":3,"commited":null,"scored":4,"missed":0,"saved":null}}]},{"player":{"id":266,"name":"\u00c1. Di Mar\u00eda","firstname":"\u00c1ngel Fabi\u00e1n","lastname":"Di Mar\u00eda","age":35,"birth":{"date":"1988-02-14","place":"Rosario","country":"Argentina"},"nationality":"Argentina","height":"180 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/266.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":30,"lineups":28,"minutes":2339,"number":null,"position":"Midfielder","rating":"7.427586","captain":false},"substitutes":{"in":2,"out":16,"bench":3},"shots":{"total":95,"on":32},"goals":{"total":12,"conceded":null,"assists":10,"saves":null},"passes":{"total":973,"key":56,"accuracy":77},"tackles":{"total":16,"blocks":1,"interceptions":15},"duels":{"total":195,"won":74},"dribbles":{"attempts":74,"success":32,"past":null},"fouls":{"drawn":15,"committed":11},"cards":{"yellow":2,"yellowred":0,"red":0},"penalty":{"won":1,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":84054,"name":"E. Sala","firstname":"Emiliano","lastname":"Sala","age":31,"birth":{"date":"1990-10-31","place":"Cululu' las Colonias","country":"Argentina"},"nationality":"Argentina","height":"187 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/84054.png"},"statistics":[{"team":{"id":83,"name":"Nantes","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/83.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":19,"lineups":16,"minutes":1376,"number":null,"position":"Attacker","rating":"7.189473","captain":false},"substitutes":{"in":3,"out":10,"bench":3},"shots":{"total":36,"on":18},"goals":{"total":12,"conceded":null,"assists":2,"saves":null},"passes":{"total":233,"key":23,"accuracy":62},"tackles":{"total":5,"blocks":1,"interceptions":2},"duels":{"total":211,"won":86},"dribbles":{"attempts":15,"success":3,"past":null},"fouls":{"drawn":34,"committed":16},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":1,"commited":null,"scored":2,"missed":0,"saved":null}}]},{"player":{"id":21592,"name":"G. Laborde","firstname":"Ga\u00ebtan","lastname":"Laborde","age":29,"birth":{"date":"1994-05-03","place":"Mont-de-Marsan","country":"France"},"nationality":"France","height":"182 cm","weight":"81 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/21592.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":36,"lineups":35,"minutes":2916,"number":null,"position":"Attacker","rating":"6.300000","captain":false},"substitutes":{"in":1,"out":19,"bench":1},"shots":{"total":0,"on":0},"goals":{"total":11,"conceded":null,"assists":null,"saves":null},"passes":{"total":10,"key":1,"accuracy":45},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":26,"won":9},"dribbles":{"attempts":6,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2216,"name":"M. Niang","firstname":"M'Baye Babacar","lastname":"Niang","age":29,"birth":{"date":"1994-12-19","place":"Meulan-en-Yvelines","country":"France"},"nationality":"Senegal","height":"184 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/2216.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":29,"lineups":19,"minutes":1794,"number":null,"position":"Attacker","rating":"6.964285","captain":false},"substitutes":{"in":10,"out":11,"bench":12},"shots":{"total":61,"on":23},"goals":{"total":11,"conceded":null,"assists":4,"saves":null},"passes":{"total":275,"key":11,"accuracy":74},"tackles":{"total":9,"blocks":3,"interceptions":7},"duels":{"total":281,"won":130},"dribbles":{"attempts":53,"success":19,"past":null},"fouls":{"drawn":45,"committed":44},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":2,"commited":null,"scored":2,"missed":0,"saved":null}}]},{"player":{"id":3407,"name":"S. Bahoken","firstname":"St\u00e9phane C\u00e9dric","lastname":"Bahoken","age":31,"birth":{"date":"1992-05-28","place":"Grasse","country":"France"},"nationality":"Cameroon","height":"185 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/3407.png"},"statistics":[{"team":{"id":77,"name":"Angers","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/77.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":32,"lineups":31,"minutes":2493,"number":null,"position":"Attacker","rating":"6.812500","captain":false},"substitutes":{"in":1,"out":25,"bench":1},"shots":{"total":66,"on":33},"goals":{"total":11,"conceded":null,"assists":1,"saves":null},"passes":{"total":328,"key":23,"accuracy":75},"tackles":{"total":7,"blocks":3,"interceptions":7},"duels":{"total":309,"won":94},"dribbles":{"attempts":17,"success":6,"past":null},"fouls":{"drawn":35,"committed":54},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":2,"missed":1,"saved":null}}]},{"player":{"id":3244,"name":"M. Gradel","firstname":"Max-Alain","lastname":"Gradel","age":36,"birth":{"date":"1987-11-30","place":"Abidjan","country":"C\u00f4te d'Ivoire"},"nationality":"C\u00f4te d'Ivoire","height":"175 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/3244.png"},"statistics":[{"team":{"id":96,"name":"Toulouse","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/96.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":36,"lineups":36,"minutes":3240,"number":null,"position":"Midfielder","rating":"7.022222","captain":false},"substitutes":{"in":0,"out":0,"bench":0},"shots":{"total":120,"on":43},"goals":{"total":11,"conceded":null,"assists":5,"saves":null},"passes":{"total":832,"key":53,"accuracy":73},"tackles":{"total":35,"blocks":9,"interceptions":18},"duels":{"total":637,"won":280},"dribbles":{"attempts":162,"success":88,"past":null},"fouls":{"drawn":94,"committed":71},"cards":{"yellow":6,"yellowred":0,"red":0},"penalty":{"won":3,"commited":null,"scored":4,"missed":4,"saved":null}}]},{"player":{"id":667,"name":"M. Depay","firstname":"Memphis","lastname":"Depay","age":29,"birth":{"date":"1994-02-13","place":"Moordrecht","country":"Netherlands"},"nationality":"Netherlands","height":"178 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/667.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":36,"lineups":29,"minutes":2737,"number":null,"position":"Attacker","rating":"7.466666","captain":false},"substitutes":{"in":7,"out":7,"bench":9},"shots":{"total":110,"on":39},"goals":{"total":10,"conceded":null,"assists":10,"saves":null},"passes":{"total":1003,"key":111,"accuracy":78},"tackles":{"total":9,"blocks":2,"interceptions":10},"duels":{"total":293,"won":117},"dribbles":{"attempts":105,"success":60,"past":null},"fouls":{"drawn":33,"committed":36},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":2,"saved":null}}]},{"player":{"id":22016,"name":"R. Oudin","firstname":"R\u00e9mi","lastname":"Oudin","age":27,"birth":{"date":"1996-11-18","place":"Ch\u00e2lons-en-Champagne","country":"France"},"nationality":"France","height":"185 cm","weight":"79 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/22016.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":37,"lineups":32,"minutes":2627,"number":null,"position":"Attacker","rating":"6.847222","captain":false},"substitutes":{"in":5,"out":22,"bench":6},"shots":{"total":76,"on":22},"goals":{"total":10,"conceded":null,"assists":4,"saves":null},"passes":{"total":441,"key":25,"accuracy":59},"tackles":{"total":32,"blocks":5,"interceptions":41},"duels":{"total":281,"won":104},"dribbles":{"attempts":30,"success":10,"past":null},"fouls":{"drawn":16,"committed":31},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1277,"name":"F. Kamano","firstname":"Fran\u00e7ois","lastname":"Kamano","age":27,"birth":{"date":"1996-05-02","place":"Conakry","country":"Guinea"},"nationality":"Guinea","height":"175 cm","weight":"77 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/1277.png"},"statistics":[{"team":{"id":78,"name":"Bordeaux","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/78.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":37,"lineups":29,"minutes":2569,"number":null,"position":"Attacker","rating":"6.888888","captain":false},"substitutes":{"in":8,"out":17,"bench":8},"shots":{"total":79,"on":31},"goals":{"total":10,"conceded":null,"assists":1,"saves":null},"passes":{"total":706,"key":33,"accuracy":81},"tackles":{"total":19,"blocks":0,"interceptions":15},"duels":{"total":302,"won":124},"dribbles":{"attempts":82,"success":39,"past":null},"fouls":{"drawn":49,"committed":48},"cards":{"yellow":6,"yellowred":0,"red":0},"penalty":{"won":1,"commited":null,"scored":4,"missed":0,"saved":null}}]},{"player":{"id":22264,"name":"L. Ajorque","firstname":"Ludovic","lastname":"Ajorque","age":29,"birth":{"date":"1994-02-25","place":"Saint-Denis","country":"R\u00e9union"},"nationality":"France","height":"197 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22264.png"},"statistics":[{"team":{"id":95,"name":"Strasbourg","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/95.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2018},"games":{"appearences":25,"lineups":18,"minutes":1536,"number":null,"position":"Attacker","rating":"7.079166","captain":false},"substitutes":{"in":7,"out":12,"bench":10},"shots":{"total":46,"on":17},"goals":{"total":9,"conceded":null,"assists":1,"saves":null},"passes":{"total":339,"key":13,"accuracy":74},"tackles":{"total":14,"blocks":0,"interceptions":4},"duels":{"total":284,"won":146},"dribbles":{"attempts":19,"success":10,"past":null},"fouls":{"drawn":16,"committed":45},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":1,"commited":null,"scored":0,"missed":0,"saved":null}}]}]} [] [] +[2023-03-20T17:37:05.971777+00:00] LiveSoccer.INFO: - {"get":"players\/topscorers","parameters":{"season":"2020","league":"61"},"errors":[],"results":20,"paging":{"current":0,"total":1},"response":[{"player":{"id":278,"name":"K. Mbapp\u00e9","firstname":"Kylian","lastname":"Mbapp\u00e9 Lottin","age":25,"birth":{"date":"1998-12-20","place":"Paris","country":"France"},"nationality":"France","height":"178 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/278.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":27,"minutes":2389,"number":null,"position":"Attacker","rating":"7.393548","captain":false},"substitutes":{"in":4,"out":11,"bench":4},"shots":{"total":90,"on":55},"goals":{"total":27,"conceded":0,"assists":7,"saves":null},"passes":{"total":952,"key":35,"accuracy":24},"tackles":{"total":4,"blocks":1,"interceptions":3},"duels":{"total":318,"won":137},"dribbles":{"attempts":181,"success":90,"past":null},"fouls":{"drawn":38,"committed":23},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":6,"missed":0,"saved":null}}]},{"player":{"id":667,"name":"M. Depay","firstname":"Memphis","lastname":"Depay","age":29,"birth":{"date":"1994-02-13","place":"Moordrecht","country":"Netherlands"},"nationality":"Netherlands","height":"178 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/667.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":37,"lineups":33,"minutes":2931,"number":null,"position":"Attacker","rating":"7.613513","captain":false},"substitutes":{"in":4,"out":13,"bench":4},"shots":{"total":94,"on":54},"goals":{"total":20,"conceded":0,"assists":12,"saves":null},"passes":{"total":1108,"key":97,"accuracy":24},"tackles":{"total":4,"blocks":1,"interceptions":5},"duels":{"total":349,"won":146},"dribbles":{"attempts":148,"success":76,"past":null},"fouls":{"drawn":52,"committed":31},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":8,"missed":0,"saved":null}}]},{"player":{"id":2059,"name":"W. Ben Yedder","firstname":"Wissam","lastname":"Ben Yedder","age":33,"birth":{"date":"1990-08-12","place":"Sarcelles","country":"France"},"nationality":"France","height":"170 cm","weight":"68 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/2059.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":37,"lineups":32,"minutes":2625,"number":null,"position":"Attacker","rating":"7.140540","captain":false},"substitutes":{"in":5,"out":24,"bench":5},"shots":{"total":59,"on":33},"goals":{"total":20,"conceded":0,"assists":7,"saves":null},"passes":{"total":845,"key":43,"accuracy":19},"tackles":{"total":18,"blocks":0,"interceptions":13},"duels":{"total":293,"won":127},"dribbles":{"attempts":59,"success":30,"past":null},"fouls":{"drawn":39,"committed":12},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":10,"missed":2,"saved":null}}]},{"player":{"id":21592,"name":"G. Laborde","firstname":"Ga\u00ebtan","lastname":"Laborde","age":29,"birth":{"date":"1994-05-03","place":"Mont-de-Marsan","country":"France"},"nationality":"France","height":"182 cm","weight":"81 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21592.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":38,"lineups":38,"minutes":3270,"number":null,"position":"Attacker","rating":"7.121052","captain":false},"substitutes":{"in":0,"out":14,"bench":0},"shots":{"total":77,"on":41},"goals":{"total":16,"conceded":0,"assists":8,"saves":null},"passes":{"total":828,"key":37,"accuracy":16},"tackles":{"total":43,"blocks":3,"interceptions":16},"duels":{"total":535,"won":240},"dribbles":{"attempts":70,"success":33,"past":null},"fouls":{"drawn":30,"committed":62},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":989,"name":"K. Volland","firstname":"Kevin","lastname":"Volland","age":31,"birth":{"date":"1992-07-30","place":"Marktoberdorf","country":"Germany"},"nationality":"Germany","height":"178 cm","weight":"85 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/989.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":34,"minutes":2789,"number":null,"position":"Attacker","rating":"7.051428","captain":false},"substitutes":{"in":1,"out":21,"bench":1},"shots":{"total":43,"on":30},"goals":{"total":16,"conceded":0,"assists":7,"saves":null},"passes":{"total":755,"key":33,"accuracy":14},"tackles":{"total":33,"blocks":null,"interceptions":4},"duels":{"total":366,"won":151},"dribbles":{"attempts":42,"success":17,"past":null},"fouls":{"drawn":45,"committed":60},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2006,"name":"B. Y\u0131lmaz","firstname":"Burak","lastname":"Y\u0131lmaz","age":38,"birth":{"date":"1985-07-15","place":"Antalya","country":"T\u00fcrkiye"},"nationality":"T\u00fcrkiye","height":"188 cm","weight":"80 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/2006.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":28,"lineups":23,"minutes":2056,"number":null,"position":"Attacker","rating":"7.182142","captain":false},"substitutes":{"in":5,"out":10,"bench":5},"shots":{"total":55,"on":33},"goals":{"total":16,"conceded":0,"assists":5,"saves":null},"passes":{"total":492,"key":28,"accuracy":18},"tackles":{"total":13,"blocks":0,"interceptions":5},"duels":{"total":254,"won":102},"dribbles":{"attempts":29,"success":15,"past":null},"fouls":{"drawn":37,"committed":33},"cards":{"yellow":6,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":4,"missed":0,"saved":null}}]},{"player":{"id":22264,"name":"L. Ajorque","firstname":"Ludovic","lastname":"Ajorque","age":29,"birth":{"date":"1994-02-25","place":"Saint-Denis","country":"R\u00e9union"},"nationality":"France","height":"197 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22264.png"},"statistics":[{"team":{"id":95,"name":"Strasbourg","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/95.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":34,"minutes":2972,"number":null,"position":"Attacker","rating":"7.200000","captain":false},"substitutes":{"in":1,"out":6,"bench":2},"shots":{"total":57,"on":36},"goals":{"total":16,"conceded":0,"assists":4,"saves":null},"passes":{"total":880,"key":36,"accuracy":20},"tackles":{"total":30,"blocks":5,"interceptions":11},"duels":{"total":488,"won":252},"dribbles":{"attempts":23,"success":10,"past":null},"fouls":{"drawn":46,"committed":38},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":4,"missed":1,"saved":null}}]},{"player":{"id":21591,"name":"A. Delort","firstname":"Andy","lastname":"Delort","age":32,"birth":{"date":"1991-10-09","place":"Sete","country":"France"},"nationality":"Algeria","height":"182 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/21591.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":30,"lineups":30,"minutes":2494,"number":null,"position":"Attacker","rating":"7.430000","captain":false},"substitutes":{"in":0,"out":12,"bench":0},"shots":{"total":69,"on":37},"goals":{"total":15,"conceded":0,"assists":9,"saves":null},"passes":{"total":789,"key":55,"accuracy":16},"tackles":{"total":12,"blocks":1,"interceptions":4},"duels":{"total":440,"won":219},"dribbles":{"attempts":62,"success":31,"past":null},"fouls":{"drawn":41,"committed":54},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":1,"saved":null}}]},{"player":{"id":1709,"name":"K. Toko Ekambi","firstname":"Karl Louis-Brillant","lastname":"Toko Ekambi","age":31,"birth":{"date":"1992-09-14","place":"Paris","country":"France"},"nationality":"Cameroon","height":"183 cm","weight":"74 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/1709.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":34,"minutes":2829,"number":null,"position":"Attacker","rating":"7.214285","captain":false},"substitutes":{"in":1,"out":20,"bench":1},"shots":{"total":72,"on":39},"goals":{"total":14,"conceded":0,"assists":6,"saves":null},"passes":{"total":903,"key":49,"accuracy":22},"tackles":{"total":16,"blocks":1,"interceptions":25},"duels":{"total":300,"won":139},"dribbles":{"attempts":105,"success":61,"past":null},"fouls":{"drawn":27,"committed":27},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":69971,"name":"T. Moffi","firstname":"Teremas Igobor","lastname":"Moffi","age":24,"birth":{"date":"1999-05-25","place":null,"country":"Nigeria"},"nationality":"Nigeria","height":"188 cm","weight":"87 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/69971.png"},"statistics":[{"team":{"id":97,"name":"Lorient","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/97.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":26,"minutes":2091,"number":null,"position":"Attacker","rating":"6.846875","captain":false},"substitutes":{"in":6,"out":23,"bench":6},"shots":{"total":45,"on":25},"goals":{"total":14,"conceded":0,"assists":2,"saves":null},"passes":{"total":379,"key":26,"accuracy":9},"tackles":{"total":13,"blocks":2,"interceptions":4},"duels":{"total":292,"won":93},"dribbles":{"attempts":58,"success":24,"past":null},"fouls":{"drawn":18,"committed":30},"cards":{"yellow":2,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":1,"missed":0,"saved":null}}]},{"player":{"id":22015,"name":"B. Dia","firstname":"Boulaye","lastname":"Dia","age":27,"birth":{"date":"1996-11-16","place":"Oyonnax","country":"France"},"nationality":"Senegal","height":"180 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/22015.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":35,"minutes":2947,"number":null,"position":"Attacker","rating":"6.944444","captain":false},"substitutes":{"in":1,"out":19,"bench":2},"shots":{"total":49,"on":27},"goals":{"total":14,"conceded":0,"assists":1,"saves":null},"passes":{"total":601,"key":29,"accuracy":15},"tackles":{"total":23,"blocks":5,"interceptions":12},"duels":{"total":365,"won":136},"dribbles":{"attempts":83,"success":46,"past":null},"fouls":{"drawn":36,"committed":31},"cards":{"yellow":2,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":5,"missed":0,"saved":null}}]},{"player":{"id":8489,"name":"J. David","firstname":"Jonathan Christian","lastname":"David","age":23,"birth":{"date":"2000-01-14","place":"New York","country":"USA"},"nationality":"Canada","height":"175 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/8489.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":37,"lineups":29,"minutes":2367,"number":null,"position":"Attacker","rating":"6.894444","captain":false},"substitutes":{"in":8,"out":22,"bench":8},"shots":{"total":47,"on":33},"goals":{"total":13,"conceded":0,"assists":2,"saves":null},"passes":{"total":551,"key":35,"accuracy":15},"tackles":{"total":17,"blocks":1,"interceptions":3},"duels":{"total":281,"won":99},"dribbles":{"attempts":47,"success":24,"past":null},"fouls":{"drawn":43,"committed":33},"cards":{"yellow":0,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":877,"name":"M. Kean","firstname":"Moise Bioty","lastname":"Kean","age":23,"birth":{"date":"2000-02-28","place":"Vercelli","country":"Italy"},"nationality":"Italy","height":"183 cm","weight":"67 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/877.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":26,"lineups":22,"minutes":1708,"number":null,"position":"Attacker","rating":"6.933333","captain":false},"substitutes":{"in":4,"out":16,"bench":8},"shots":{"total":47,"on":24},"goals":{"total":13,"conceded":0,"assists":null,"saves":null},"passes":{"total":302,"key":8,"accuracy":9},"tackles":{"total":11,"blocks":1,"interceptions":8},"duels":{"total":168,"won":58},"dribbles":{"attempts":50,"success":27,"past":null},"fouls":{"drawn":6,"committed":33},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2910,"name":"Hwang Ui-Jo","firstname":"Ui-Jo","lastname":"Hwang","age":31,"birth":{"date":"1992-08-28","place":"Seongnam","country":"Korea Republic"},"nationality":"Korea Republic","height":"185 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/2910.png"},"statistics":[{"team":{"id":78,"name":"Bordeaux","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/78.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":32,"minutes":2524,"number":null,"position":"Attacker","rating":"6.766666","captain":false},"substitutes":{"in":4,"out":26,"bench":5},"shots":{"total":60,"on":30},"goals":{"total":12,"conceded":0,"assists":3,"saves":null},"passes":{"total":458,"key":21,"accuracy":13},"tackles":{"total":13,"blocks":2,"interceptions":8},"duels":{"total":266,"won":104},"dribbles":{"attempts":54,"success":26,"past":null},"fouls":{"drawn":35,"committed":32},"cards":{"yellow":1,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":3,"missed":0,"saved":null}}]},{"player":{"id":85041,"name":"A. Gouiri","firstname":"Amine Ferid","lastname":"Gouiri","age":23,"birth":{"date":"2000-02-16","place":"Bourgoin-Jallieu","country":"France"},"nationality":"France","height":"180 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/85041.png"},"statistics":[{"team":{"id":84,"name":"Nice","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/84.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":31,"minutes":2753,"number":null,"position":"Attacker","rating":"7.144117","captain":false},"substitutes":{"in":3,"out":10,"bench":3},"shots":{"total":66,"on":34},"goals":{"total":12,"conceded":0,"assists":7,"saves":null},"passes":{"total":1034,"key":51,"accuracy":27},"tackles":{"total":31,"blocks":6,"interceptions":17},"duels":{"total":350,"won":139},"dribbles":{"attempts":103,"success":52,"past":null},"fouls":{"drawn":36,"committed":45},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":4,"missed":0,"saved":null}}]},{"player":{"id":21451,"name":"R. Ripart","firstname":"Renaud","lastname":"Ripart","age":30,"birth":{"date":"1993-03-14","place":"N\u00eemes","country":"France"},"nationality":"France","height":"181 cm","weight":"73 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/21451.png"},"statistics":[{"team":{"id":92,"name":"Nimes","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/92.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":38,"lineups":35,"minutes":3063,"number":null,"position":"Midfielder","rating":"6.759459","captain":false},"substitutes":{"in":3,"out":10,"bench":3},"shots":{"total":48,"on":26},"goals":{"total":11,"conceded":0,"assists":null,"saves":null},"passes":{"total":1034,"key":18,"accuracy":21},"tackles":{"total":52,"blocks":12,"interceptions":37},"duels":{"total":473,"won":215},"dribbles":{"attempts":72,"success":28,"past":null},"fouls":{"drawn":63,"committed":29},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":6,"missed":1,"saved":null}}]},{"player":{"id":47545,"name":"G. Kakuta","firstname":"Ga\u00ebl Romeo","lastname":"Kakuta Mambenga","age":32,"birth":{"date":"1991-06-21","place":"Lille","country":"France"},"nationality":"Congo DR","height":"173 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/47545.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":30,"minutes":2414,"number":null,"position":"Midfielder","rating":"7.008571","captain":false},"substitutes":{"in":5,"out":25,"bench":5},"shots":{"total":41,"on":15},"goals":{"total":11,"conceded":0,"assists":5,"saves":null},"passes":{"total":1024,"key":51,"accuracy":24},"tackles":{"total":38,"blocks":3,"interceptions":17},"duels":{"total":371,"won":149},"dribbles":{"attempts":102,"success":52,"past":null},"fouls":{"drawn":38,"committed":31},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":7,"missed":2,"saved":null}}]},{"player":{"id":21497,"name":"L. Blas","firstname":"Ludovic R\u00e9gis","lastname":"Ars\u00e8ne Blas","age":26,"birth":{"date":"1997-12-31","place":"Colombes","country":"France"},"nationality":"France","height":"180 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/21497.png"},"statistics":[{"team":{"id":83,"name":"Nantes","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/83.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":32,"minutes":2803,"number":null,"position":"Midfielder","rating":"6.932432","captain":false},"substitutes":{"in":4,"out":18,"bench":5},"shots":{"total":52,"on":26},"goals":{"total":10,"conceded":0,"assists":4,"saves":null},"passes":{"total":984,"key":32,"accuracy":24},"tackles":{"total":59,"blocks":4,"interceptions":22},"duels":{"total":494,"won":225},"dribbles":{"attempts":164,"success":97,"past":null},"fouls":{"drawn":53,"committed":54},"cards":{"yellow":5,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":3084,"name":"T. Kadewere","firstname":"Philana Tinotenda","lastname":"Kadewere","age":27,"birth":{"date":"1996-01-05","place":"Harare","country":"Zimbabwe"},"nationality":"Zimbabwe","height":"183 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/3084.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":24,"minutes":2018,"number":null,"position":"Attacker","rating":"7.000000","captain":false},"substitutes":{"in":9,"out":19,"bench":9},"shots":{"total":45,"on":23},"goals":{"total":10,"conceded":0,"assists":3,"saves":null},"passes":{"total":592,"key":22,"accuracy":13},"tackles":{"total":35,"blocks":3,"interceptions":21},"duels":{"total":284,"won":122},"dribbles":{"attempts":55,"success":29,"past":null},"fouls":{"drawn":25,"committed":35},"cards":{"yellow":4,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21393,"name":"S. Guirassy","firstname":"Serhou Yadaly","lastname":"Guirassy","age":27,"birth":{"date":"1996-03-12","place":"Arles","country":"France"},"nationality":"Guinea","height":"187 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/21393.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":27,"lineups":19,"minutes":1765,"number":null,"position":"Attacker","rating":"7.059259","captain":false},"substitutes":{"in":8,"out":9,"bench":8},"shots":{"total":44,"on":25},"goals":{"total":10,"conceded":0,"assists":1,"saves":null},"passes":{"total":485,"key":27,"accuracy":16},"tackles":{"total":4,"blocks":1,"interceptions":5},"duels":{"total":291,"won":152},"dribbles":{"attempts":38,"success":24,"past":null},"fouls":{"drawn":55,"committed":38},"cards":{"yellow":3,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":1,"missed":0,"saved":null}}]}]} [] [] +[2023-03-20T17:37:57.535397+00:00] LiveSoccer.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":[],"results":20,"paging":{"current":0,"total":1},"response":[{"player":{"id":1689,"name":"\u00c1lvaro Gonz\u00e1lez","firstname":"\u00c1lvaro","lastname":"Gonz\u00e1lez Sober\u00f3n","age":33,"birth":{"date":"1990-01-08","place":"Potes","country":"Spain"},"nationality":"Spain","height":"178 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/1689.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":32,"minutes":2834,"number":null,"position":"Defender","rating":"6.931250","captain":false},"substitutes":{"in":0,"out":3,"bench":0},"shots":{"total":13,"on":3},"goals":{"total":2,"conceded":0,"assists":3,"saves":null},"passes":{"total":1940,"key":5,"accuracy":53},"tackles":{"total":26,"blocks":18,"interceptions":33},"duels":{"total":186,"won":105},"dribbles":{"attempts":3,"success":3,"past":null},"fouls":{"drawn":30,"committed":31},"cards":{"yellow":14,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":8694,"name":"W. Faes","firstname":"Wout Felix Lina","lastname":"Faes","age":25,"birth":{"date":"1998-04-03","place":null,"country":"Belgium"},"nationality":"Belgium","height":"187 cm","weight":"84 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/8694.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":33,"minutes":2901,"number":null,"position":"Defender","rating":"6.863636","captain":false},"substitutes":{"in":0,"out":0,"bench":0},"shots":{"total":7,"on":1},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":1584,"key":2,"accuracy":44},"tackles":{"total":35,"blocks":31,"interceptions":68},"duels":{"total":212,"won":119},"dribbles":{"attempts":16,"success":12,"past":null},"fouls":{"drawn":15,"committed":23},"cards":{"yellow":12,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6231,"name":"F. Medina","firstname":"Facundo Axel","lastname":"Medina","age":24,"birth":{"date":"1999-05-28","place":"Buenos Aires","country":"Argentina"},"nationality":"Argentina","height":"177 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/6231.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":24,"lineups":23,"minutes":2007,"number":null,"position":"Defender","rating":"6.762500","captain":false},"substitutes":{"in":1,"out":3,"bench":7},"shots":{"total":7,"on":4},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":1543,"key":8,"accuracy":56},"tackles":{"total":39,"blocks":9,"interceptions":39},"duels":{"total":169,"won":78},"dribbles":{"attempts":11,"success":7,"past":null},"fouls":{"drawn":7,"committed":33},"cards":{"yellow":11,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20696,"name":"P. Gueye","firstname":"Pape Alassane","lastname":"Gueye","age":24,"birth":{"date":"1999-01-24","place":"Montreuil","country":"France"},"nationality":"Senegal","height":"189 cm","weight":"79 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/20696.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":22,"minutes":2057,"number":null,"position":"Midfielder","rating":"6.753125","captain":false},"substitutes":{"in":10,"out":6,"bench":12},"shots":{"total":10,"on":4},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":1371,"key":6,"accuracy":36},"tackles":{"total":49,"blocks":6,"interceptions":47},"duels":{"total":285,"won":148},"dribbles":{"attempts":12,"success":7,"past":null},"fouls":{"drawn":46,"committed":47},"cards":{"yellow":10,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":174918,"name":"L. Bad\u00e9","firstname":"Lo\u00efc","lastname":"Bad\u00e9","age":23,"birth":{"date":"2000-04-11","place":"S\u00e8vres","country":"France"},"nationality":"France","height":"191 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/174918.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":29,"minutes":2610,"number":null,"position":"Defender","rating":"6.974193","captain":false},"substitutes":{"in":2,"out":1,"bench":2},"shots":{"total":7,"on":3},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1942,"key":7,"accuracy":57},"tackles":{"total":57,"blocks":17,"interceptions":74},"duels":{"total":353,"won":208},"dribbles":{"attempts":26,"success":23,"past":null},"fouls":{"drawn":16,"committed":44},"cards":{"yellow":10,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2204,"name":"B. Andr\u00e9","firstname":"Benjamin","lastname":"Andr\u00e9","age":33,"birth":{"date":"1990-08-03","place":"Nice","country":"France"},"nationality":"France","height":"180 cm","weight":"76 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/2204.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":35,"minutes":2903,"number":null,"position":"Midfielder","rating":"7.057142","captain":false},"substitutes":{"in":0,"out":18,"bench":0},"shots":{"total":15,"on":7},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":2002,"key":22,"accuracy":50},"tackles":{"total":114,"blocks":10,"interceptions":76},"duels":{"total":555,"won":280},"dribbles":{"attempts":44,"success":29,"past":null},"fouls":{"drawn":53,"committed":70},"cards":{"yellow":10,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":3335,"name":"K. Kouyat\u00e9","firstname":"Boubakar","lastname":"Kouyat\u00e9","age":26,"birth":{"date":"1997-04-15","place":"Bamako","country":"Mali"},"nationality":"Mali","height":"193 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/3335.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":25,"lineups":21,"minutes":1960,"number":null,"position":"Defender","rating":"7.150000","captain":false},"substitutes":{"in":4,"out":0,"bench":13},"shots":{"total":10,"on":4},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":873,"key":3,"accuracy":29},"tackles":{"total":59,"blocks":27,"interceptions":59},"duels":{"total":300,"won":191},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":30,"committed":38},"cards":{"yellow":10,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22254,"name":"Y. Fofana","firstname":"Youssouf","lastname":"Fofana","age":24,"birth":{"date":"1999-01-10","place":"Paris","country":"France"},"nationality":"France","height":"185 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22254.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":35,"minutes":2883,"number":null,"position":"Midfielder","rating":"6.868571","captain":false},"substitutes":{"in":0,"out":10,"bench":1},"shots":{"total":22,"on":4},"goals":{"total":0,"conceded":0,"assists":3,"saves":null},"passes":{"total":1646,"key":28,"accuracy":43},"tackles":{"total":90,"blocks":7,"interceptions":34},"duels":{"total":331,"won":174},"dribbles":{"attempts":61,"success":32,"past":null},"fouls":{"drawn":33,"committed":47},"cards":{"yellow":9,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20654,"name":"F. Centonze","firstname":"Fabien","lastname":"Centonze","age":27,"birth":{"date":"1996-01-16","place":"Voiron","country":"France"},"nationality":"France","height":"182 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/20654.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":36,"minutes":3222,"number":null,"position":"Defender","rating":"7.088888","captain":false},"substitutes":{"in":0,"out":1,"bench":0},"shots":{"total":18,"on":6},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":1348,"key":22,"accuracy":30},"tackles":{"total":104,"blocks":17,"interceptions":112},"duels":{"total":471,"won":276},"dribbles":{"attempts":119,"success":59,"past":null},"fouls":{"drawn":57,"committed":43},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":41976,"name":"Y. Neyou","firstname":"Yvan Latour","lastname":"Neyou Noupa","age":26,"birth":{"date":"1997-01-03","place":"Douala","country":"Cameroon"},"nationality":"Cameroon","height":"180 cm","weight":"63 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/41976.png"},"statistics":[{"team":{"id":1063,"name":"Saint Etienne","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1063.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":29,"minutes":2449,"number":null,"position":"Midfielder","rating":"6.903225","captain":false},"substitutes":{"in":2,"out":15,"bench":2},"shots":{"total":19,"on":7},"goals":{"total":1,"conceded":0,"assists":2,"saves":null},"passes":{"total":1285,"key":15,"accuracy":37},"tackles":{"total":58,"blocks":5,"interceptions":31},"duels":{"total":310,"won":190},"dribbles":{"attempts":74,"success":61,"past":null},"fouls":{"drawn":45,"committed":45},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20531,"name":"H. Ma\u00efga","firstname":"Digbo G'nampa Habib","lastname":"Ma\u00efga","age":27,"birth":{"date":"1996-01-01","place":"Gagnoa","country":"C\u00f4te d'Ivoire"},"nationality":"C\u00f4te d'Ivoire","height":"181 cm","weight":"80 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/20531.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":31,"minutes":2698,"number":null,"position":"Midfielder","rating":"6.880645","captain":false},"substitutes":{"in":0,"out":5,"bench":0},"shots":{"total":20,"on":5},"goals":{"total":1,"conceded":0,"assists":3,"saves":null},"passes":{"total":1376,"key":26,"accuracy":38},"tackles":{"total":82,"blocks":6,"interceptions":48},"duels":{"total":373,"won":191},"dribbles":{"attempts":50,"success":34,"past":null},"fouls":{"drawn":36,"committed":62},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22143,"name":"Yannick Cahuzac","firstname":"Yannick","lastname":"Cahuzac","age":37,"birth":{"date":"1985-01-18","place":"Ajaccio","country":"France"},"nationality":"France","height":"178 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22143.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":30,"lineups":26,"minutes":2256,"number":null,"position":"Midfielder","rating":"6.710714","captain":false},"substitutes":{"in":4,"out":8,"bench":10},"shots":{"total":6,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":859,"key":12,"accuracy":25},"tackles":{"total":26,"blocks":5,"interceptions":33},"duels":{"total":162,"won":80},"dribbles":{"attempts":7,"success":4,"past":null},"fouls":{"drawn":20,"committed":30},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":103,"name":"J. Aholou","firstname":"Jean-Eudes","lastname":"Pascal Aholou","age":29,"birth":{"date":"1994-03-20","place":"Yopougnon","country":"C\u00f4te d'Ivoire"},"nationality":"C\u00f4te d'Ivoire","height":"186 cm","weight":"71 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/103.png"},"statistics":[{"team":{"id":95,"name":"Strasbourg","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/95.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":27,"lineups":26,"minutes":2156,"number":null,"position":"Midfielder","rating":"6.550000","captain":false},"substitutes":{"in":1,"out":12,"bench":1},"shots":{"total":2,"on":1},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":62},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":5,"won":3},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":4399,"name":"H. Boudaoui","firstname":"Hicham","lastname":"Boudaoui","age":24,"birth":{"date":"1999-09-23","place":"B\u00e9char","country":"Algeria"},"nationality":"Algeria","height":"175 cm","weight":"61 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/4399.png"},"statistics":[{"team":{"id":84,"name":"Nice","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/84.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":25,"lineups":22,"minutes":1749,"number":null,"position":"Midfielder","rating":"6.736000","captain":false},"substitutes":{"in":3,"out":16,"bench":4},"shots":{"total":13,"on":9},"goals":{"total":3,"conceded":0,"assists":2,"saves":null},"passes":{"total":834,"key":8,"accuracy":27},"tackles":{"total":52,"blocks":4,"interceptions":23},"duels":{"total":241,"won":110},"dribbles":{"attempts":39,"success":24,"past":null},"fouls":{"drawn":20,"committed":29},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1271,"name":"A. Tchouam\u00e9ni","firstname":"Aur\u00e9lien Djani","lastname":"Tchouam\u00e9ni","age":23,"birth":{"date":"2000-01-27","place":"Rouen","country":"France"},"nationality":"France","height":"187 cm","weight":"81 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/1271.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":36,"minutes":3073,"number":null,"position":"Midfielder","rating":"7.180555","captain":false},"substitutes":{"in":0,"out":9,"bench":0},"shots":{"total":37,"on":11},"goals":{"total":2,"conceded":0,"assists":3,"saves":null},"passes":{"total":1811,"key":18,"accuracy":44},"tackles":{"total":127,"blocks":11,"interceptions":60},"duels":{"total":475,"won":292},"dribbles":{"attempts":35,"success":22,"past":null},"fouls":{"drawn":62,"committed":57},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21635,"name":"J. Gradit","firstname":"Jonathan","lastname":"Gradit","age":31,"birth":{"date":"1992-11-24","place":"Talence","country":"France"},"nationality":"France","height":"180 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21635.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":33,"minutes":2828,"number":null,"position":"Defender","rating":"6.948484","captain":false},"substitutes":{"in":0,"out":5,"bench":1},"shots":{"total":2,"on":0},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":1715,"key":7,"accuracy":46},"tackles":{"total":60,"blocks":19,"interceptions":56},"duels":{"total":354,"won":211},"dribbles":{"attempts":48,"success":34,"past":null},"fouls":{"drawn":62,"committed":51},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":18764,"name":"M. Schneiderlin","firstname":"Morgan Fernand G\u00e9rard","lastname":"Schneiderlin","age":34,"birth":{"date":"1989-11-08","place":"Zellwiller","country":"France"},"nationality":"France","height":"181 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/18764.png"},"statistics":[{"team":{"id":84,"name":"Nice","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/84.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":28,"lineups":24,"minutes":2196,"number":null,"position":"Midfielder","rating":"6.917857","captain":false},"substitutes":{"in":4,"out":2,"bench":6},"shots":{"total":9,"on":3},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1593,"key":13,"accuracy":52},"tackles":{"total":51,"blocks":11,"interceptions":53},"duels":{"total":228,"won":114},"dribbles":{"attempts":18,"success":14,"past":null},"fouls":{"drawn":10,"committed":43},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22004,"name":"Moreto Cassam\u00e1","firstname":"Moreto","lastname":"Moro Cassam\u00e1","age":25,"birth":{"date":"1998-02-16","place":"Bissau","country":"Portugal"},"nationality":"Guinea-Bissau","height":"165 cm","weight":"63 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/22004.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":26,"minutes":2043,"number":null,"position":"Midfielder","rating":"6.841379","captain":false},"substitutes":{"in":3,"out":12,"bench":5},"shots":{"total":9,"on":2},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":1361,"key":15,"accuracy":45},"tackles":{"total":49,"blocks":6,"interceptions":36},"duels":{"total":189,"won":109},"dribbles":{"attempts":33,"success":27,"past":null},"fouls":{"drawn":27,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":3},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":780,"name":"S. Nzonzi","firstname":"Steven N'Kemboanza Mike Christ","lastname":"Nzonzi","age":35,"birth":{"date":"1988-12-15","place":"Colombes","country":"France"},"nationality":"France","height":"196 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/780.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":33,"minutes":2910,"number":null,"position":"Midfielder","rating":"6.897058","captain":false},"substitutes":{"in":1,"out":2,"bench":2},"shots":{"total":15,"on":4},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":2888,"key":12,"accuracy":79},"tackles":{"total":34,"blocks":10,"interceptions":16},"duels":{"total":251,"won":148},"dribbles":{"attempts":24,"success":20,"past":null},"fouls":{"drawn":13,"committed":36},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1902,"name":"D. \u0106aleta-Car","firstname":"Duje","lastname":"\u0106aleta-Car","age":27,"birth":{"date":"1996-09-17","place":"\u0160ibenik","country":"Croatia"},"nationality":"Croatia","height":"192 cm","weight":"89 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/1902.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":32,"minutes":2816,"number":null,"position":"Defender","rating":"6.943750","captain":false},"substitutes":{"in":1,"out":3,"bench":1},"shots":{"total":9,"on":3},"goals":{"total":2,"conceded":0,"assists":1,"saves":null},"passes":{"total":1889,"key":7,"accuracy":52},"tackles":{"total":29,"blocks":22,"interceptions":44},"duels":{"total":205,"won":123},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":15,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]} [] [] +[2023-03-20T17:38:36.010539+00:00] LiveSoccer.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":[],"results":20,"paging":{"current":0,"total":1},"response":[{"player":{"id":1689,"name":"\u00c1lvaro Gonz\u00e1lez","firstname":"\u00c1lvaro","lastname":"Gonz\u00e1lez Sober\u00f3n","age":33,"birth":{"date":"1990-01-08","place":"Potes","country":"Spain"},"nationality":"Spain","height":"178 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/1689.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":32,"minutes":2834,"number":null,"position":"Defender","rating":"6.931250","captain":false},"substitutes":{"in":0,"out":3,"bench":0},"shots":{"total":13,"on":3},"goals":{"total":2,"conceded":0,"assists":3,"saves":null},"passes":{"total":1940,"key":5,"accuracy":53},"tackles":{"total":26,"blocks":18,"interceptions":33},"duels":{"total":186,"won":105},"dribbles":{"attempts":3,"success":3,"past":null},"fouls":{"drawn":30,"committed":31},"cards":{"yellow":14,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":8694,"name":"W. Faes","firstname":"Wout Felix Lina","lastname":"Faes","age":25,"birth":{"date":"1998-04-03","place":null,"country":"Belgium"},"nationality":"Belgium","height":"187 cm","weight":"84 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/8694.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":33,"minutes":2901,"number":null,"position":"Defender","rating":"6.863636","captain":false},"substitutes":{"in":0,"out":0,"bench":0},"shots":{"total":7,"on":1},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":1584,"key":2,"accuracy":44},"tackles":{"total":35,"blocks":31,"interceptions":68},"duels":{"total":212,"won":119},"dribbles":{"attempts":16,"success":12,"past":null},"fouls":{"drawn":15,"committed":23},"cards":{"yellow":12,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6231,"name":"F. Medina","firstname":"Facundo Axel","lastname":"Medina","age":24,"birth":{"date":"1999-05-28","place":"Buenos Aires","country":"Argentina"},"nationality":"Argentina","height":"177 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/6231.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":24,"lineups":23,"minutes":2007,"number":null,"position":"Defender","rating":"6.762500","captain":false},"substitutes":{"in":1,"out":3,"bench":7},"shots":{"total":7,"on":4},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":1543,"key":8,"accuracy":56},"tackles":{"total":39,"blocks":9,"interceptions":39},"duels":{"total":169,"won":78},"dribbles":{"attempts":11,"success":7,"past":null},"fouls":{"drawn":7,"committed":33},"cards":{"yellow":11,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20696,"name":"P. Gueye","firstname":"Pape Alassane","lastname":"Gueye","age":24,"birth":{"date":"1999-01-24","place":"Montreuil","country":"France"},"nationality":"Senegal","height":"189 cm","weight":"79 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/20696.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":22,"minutes":2057,"number":null,"position":"Midfielder","rating":"6.753125","captain":false},"substitutes":{"in":10,"out":6,"bench":12},"shots":{"total":10,"on":4},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":1371,"key":6,"accuracy":36},"tackles":{"total":49,"blocks":6,"interceptions":47},"duels":{"total":285,"won":148},"dribbles":{"attempts":12,"success":7,"past":null},"fouls":{"drawn":46,"committed":47},"cards":{"yellow":10,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":174918,"name":"L. Bad\u00e9","firstname":"Lo\u00efc","lastname":"Bad\u00e9","age":23,"birth":{"date":"2000-04-11","place":"S\u00e8vres","country":"France"},"nationality":"France","height":"191 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/174918.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":29,"minutes":2610,"number":null,"position":"Defender","rating":"6.974193","captain":false},"substitutes":{"in":2,"out":1,"bench":2},"shots":{"total":7,"on":3},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1942,"key":7,"accuracy":57},"tackles":{"total":57,"blocks":17,"interceptions":74},"duels":{"total":353,"won":208},"dribbles":{"attempts":26,"success":23,"past":null},"fouls":{"drawn":16,"committed":44},"cards":{"yellow":10,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2204,"name":"B. Andr\u00e9","firstname":"Benjamin","lastname":"Andr\u00e9","age":33,"birth":{"date":"1990-08-03","place":"Nice","country":"France"},"nationality":"France","height":"180 cm","weight":"76 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/2204.png"},"statistics":[{"team":{"id":79,"name":"Lille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/79.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":35,"minutes":2903,"number":null,"position":"Midfielder","rating":"7.057142","captain":false},"substitutes":{"in":0,"out":18,"bench":0},"shots":{"total":15,"on":7},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":2002,"key":22,"accuracy":50},"tackles":{"total":114,"blocks":10,"interceptions":76},"duels":{"total":555,"won":280},"dribbles":{"attempts":44,"success":29,"past":null},"fouls":{"drawn":53,"committed":70},"cards":{"yellow":10,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":3335,"name":"K. Kouyat\u00e9","firstname":"Boubakar","lastname":"Kouyat\u00e9","age":26,"birth":{"date":"1997-04-15","place":"Bamako","country":"Mali"},"nationality":"Mali","height":"193 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/3335.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":25,"lineups":21,"minutes":1960,"number":null,"position":"Defender","rating":"7.150000","captain":false},"substitutes":{"in":4,"out":0,"bench":13},"shots":{"total":10,"on":4},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":873,"key":3,"accuracy":29},"tackles":{"total":59,"blocks":27,"interceptions":59},"duels":{"total":300,"won":191},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":30,"committed":38},"cards":{"yellow":10,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22254,"name":"Y. Fofana","firstname":"Youssouf","lastname":"Fofana","age":24,"birth":{"date":"1999-01-10","place":"Paris","country":"France"},"nationality":"France","height":"185 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22254.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":35,"minutes":2883,"number":null,"position":"Midfielder","rating":"6.868571","captain":false},"substitutes":{"in":0,"out":10,"bench":1},"shots":{"total":22,"on":4},"goals":{"total":0,"conceded":0,"assists":3,"saves":null},"passes":{"total":1646,"key":28,"accuracy":43},"tackles":{"total":90,"blocks":7,"interceptions":34},"duels":{"total":331,"won":174},"dribbles":{"attempts":61,"success":32,"past":null},"fouls":{"drawn":33,"committed":47},"cards":{"yellow":9,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20654,"name":"F. Centonze","firstname":"Fabien","lastname":"Centonze","age":27,"birth":{"date":"1996-01-16","place":"Voiron","country":"France"},"nationality":"France","height":"182 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/20654.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":36,"minutes":3222,"number":null,"position":"Defender","rating":"7.088888","captain":false},"substitutes":{"in":0,"out":1,"bench":0},"shots":{"total":18,"on":6},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":1348,"key":22,"accuracy":30},"tackles":{"total":104,"blocks":17,"interceptions":112},"duels":{"total":471,"won":276},"dribbles":{"attempts":119,"success":59,"past":null},"fouls":{"drawn":57,"committed":43},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":41976,"name":"Y. Neyou","firstname":"Yvan Latour","lastname":"Neyou Noupa","age":26,"birth":{"date":"1997-01-03","place":"Douala","country":"Cameroon"},"nationality":"Cameroon","height":"180 cm","weight":"63 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/41976.png"},"statistics":[{"team":{"id":1063,"name":"Saint Etienne","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1063.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":29,"minutes":2449,"number":null,"position":"Midfielder","rating":"6.903225","captain":false},"substitutes":{"in":2,"out":15,"bench":2},"shots":{"total":19,"on":7},"goals":{"total":1,"conceded":0,"assists":2,"saves":null},"passes":{"total":1285,"key":15,"accuracy":37},"tackles":{"total":58,"blocks":5,"interceptions":31},"duels":{"total":310,"won":190},"dribbles":{"attempts":74,"success":61,"past":null},"fouls":{"drawn":45,"committed":45},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20531,"name":"H. Ma\u00efga","firstname":"Digbo G'nampa Habib","lastname":"Ma\u00efga","age":27,"birth":{"date":"1996-01-01","place":"Gagnoa","country":"C\u00f4te d'Ivoire"},"nationality":"C\u00f4te d'Ivoire","height":"181 cm","weight":"80 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/20531.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":31,"minutes":2698,"number":null,"position":"Midfielder","rating":"6.880645","captain":false},"substitutes":{"in":0,"out":5,"bench":0},"shots":{"total":20,"on":5},"goals":{"total":1,"conceded":0,"assists":3,"saves":null},"passes":{"total":1376,"key":26,"accuracy":38},"tackles":{"total":82,"blocks":6,"interceptions":48},"duels":{"total":373,"won":191},"dribbles":{"attempts":50,"success":34,"past":null},"fouls":{"drawn":36,"committed":62},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22143,"name":"Yannick Cahuzac","firstname":"Yannick","lastname":"Cahuzac","age":37,"birth":{"date":"1985-01-18","place":"Ajaccio","country":"France"},"nationality":"France","height":"178 cm","weight":"72 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/22143.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":30,"lineups":26,"minutes":2256,"number":null,"position":"Midfielder","rating":"6.710714","captain":false},"substitutes":{"in":4,"out":8,"bench":10},"shots":{"total":6,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":859,"key":12,"accuracy":25},"tackles":{"total":26,"blocks":5,"interceptions":33},"duels":{"total":162,"won":80},"dribbles":{"attempts":7,"success":4,"past":null},"fouls":{"drawn":20,"committed":30},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":103,"name":"J. Aholou","firstname":"Jean-Eudes","lastname":"Pascal Aholou","age":29,"birth":{"date":"1994-03-20","place":"Yopougnon","country":"C\u00f4te d'Ivoire"},"nationality":"C\u00f4te d'Ivoire","height":"186 cm","weight":"71 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/103.png"},"statistics":[{"team":{"id":95,"name":"Strasbourg","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/95.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":27,"lineups":26,"minutes":2156,"number":null,"position":"Midfielder","rating":"6.550000","captain":false},"substitutes":{"in":1,"out":12,"bench":1},"shots":{"total":2,"on":1},"goals":{"total":2,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":62},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":5,"won":3},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":4399,"name":"H. Boudaoui","firstname":"Hicham","lastname":"Boudaoui","age":24,"birth":{"date":"1999-09-23","place":"B\u00e9char","country":"Algeria"},"nationality":"Algeria","height":"175 cm","weight":"61 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/4399.png"},"statistics":[{"team":{"id":84,"name":"Nice","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/84.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":25,"lineups":22,"minutes":1749,"number":null,"position":"Midfielder","rating":"6.736000","captain":false},"substitutes":{"in":3,"out":16,"bench":4},"shots":{"total":13,"on":9},"goals":{"total":3,"conceded":0,"assists":2,"saves":null},"passes":{"total":834,"key":8,"accuracy":27},"tackles":{"total":52,"blocks":4,"interceptions":23},"duels":{"total":241,"won":110},"dribbles":{"attempts":39,"success":24,"past":null},"fouls":{"drawn":20,"committed":29},"cards":{"yellow":9,"yellowred":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1271,"name":"A. Tchouam\u00e9ni","firstname":"Aur\u00e9lien Djani","lastname":"Tchouam\u00e9ni","age":23,"birth":{"date":"2000-01-27","place":"Rouen","country":"France"},"nationality":"France","height":"187 cm","weight":"81 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/1271.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":36,"lineups":36,"minutes":3073,"number":null,"position":"Midfielder","rating":"7.180555","captain":false},"substitutes":{"in":0,"out":9,"bench":0},"shots":{"total":37,"on":11},"goals":{"total":2,"conceded":0,"assists":3,"saves":null},"passes":{"total":1811,"key":18,"accuracy":44},"tackles":{"total":127,"blocks":11,"interceptions":60},"duels":{"total":475,"won":292},"dribbles":{"attempts":35,"success":22,"past":null},"fouls":{"drawn":62,"committed":57},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21635,"name":"J. Gradit","firstname":"Jonathan","lastname":"Gradit","age":31,"birth":{"date":"1992-11-24","place":"Talence","country":"France"},"nationality":"France","height":"180 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21635.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":33,"minutes":2828,"number":null,"position":"Defender","rating":"6.948484","captain":false},"substitutes":{"in":0,"out":5,"bench":1},"shots":{"total":2,"on":0},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":1715,"key":7,"accuracy":46},"tackles":{"total":60,"blocks":19,"interceptions":56},"duels":{"total":354,"won":211},"dribbles":{"attempts":48,"success":34,"past":null},"fouls":{"drawn":62,"committed":51},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":18764,"name":"M. Schneiderlin","firstname":"Morgan Fernand G\u00e9rard","lastname":"Schneiderlin","age":34,"birth":{"date":"1989-11-08","place":"Zellwiller","country":"France"},"nationality":"France","height":"181 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/18764.png"},"statistics":[{"team":{"id":84,"name":"Nice","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/84.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":28,"lineups":24,"minutes":2196,"number":null,"position":"Midfielder","rating":"6.917857","captain":false},"substitutes":{"in":4,"out":2,"bench":6},"shots":{"total":9,"on":3},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1593,"key":13,"accuracy":52},"tackles":{"total":51,"blocks":11,"interceptions":53},"duels":{"total":228,"won":114},"dribbles":{"attempts":18,"success":14,"past":null},"fouls":{"drawn":10,"committed":43},"cards":{"yellow":8,"yellowred":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":22004,"name":"Moreto Cassam\u00e1","firstname":"Moreto","lastname":"Moro Cassam\u00e1","age":25,"birth":{"date":"1998-02-16","place":"Bissau","country":"Portugal"},"nationality":"Guinea-Bissau","height":"165 cm","weight":"63 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/22004.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":26,"minutes":2043,"number":null,"position":"Midfielder","rating":"6.841379","captain":false},"substitutes":{"in":3,"out":12,"bench":5},"shots":{"total":9,"on":2},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":1361,"key":15,"accuracy":45},"tackles":{"total":49,"blocks":6,"interceptions":36},"duels":{"total":189,"won":109},"dribbles":{"attempts":33,"success":27,"past":null},"fouls":{"drawn":27,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":3},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":780,"name":"S. Nzonzi","firstname":"Steven N'Kemboanza Mike Christ","lastname":"Nzonzi","age":35,"birth":{"date":"1988-12-15","place":"Colombes","country":"France"},"nationality":"France","height":"196 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/780.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":33,"minutes":2910,"number":null,"position":"Midfielder","rating":"6.897058","captain":false},"substitutes":{"in":1,"out":2,"bench":2},"shots":{"total":15,"on":4},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":2888,"key":12,"accuracy":79},"tackles":{"total":34,"blocks":10,"interceptions":16},"duels":{"total":251,"won":148},"dribbles":{"attempts":24,"success":20,"past":null},"fouls":{"drawn":13,"committed":36},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1902,"name":"D. \u0106aleta-Car","firstname":"Duje","lastname":"\u0106aleta-Car","age":27,"birth":{"date":"1996-09-17","place":"\u0160ibenik","country":"Croatia"},"nationality":"Croatia","height":"192 cm","weight":"89 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/1902.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":32,"minutes":2816,"number":null,"position":"Defender","rating":"6.943750","captain":false},"substitutes":{"in":1,"out":3,"bench":1},"shots":{"total":9,"on":3},"goals":{"total":2,"conceded":0,"assists":1,"saves":null},"passes":{"total":1889,"key":7,"accuracy":52},"tackles":{"total":29,"blocks":22,"interceptions":44},"duels":{"total":205,"won":123},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":15,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]} [] [] +[2023-03-20T17:38:49.207262+00:00] LiveSoccer.INFO: - {"get":"players\/topredcards","parameters":{"season":"2020","league":"61"},"errors":[],"results":20,"paging":{"current":0,"total":1},"response":[{"player":{"id":22004,"name":"Moreto Cassam\u00e1","firstname":"Moreto","lastname":"Moro Cassam\u00e1","age":25,"birth":{"date":"1998-02-16","place":"Bissau","country":"Portugal"},"nationality":"Guinea-Bissau","height":"165 cm","weight":"63 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/22004.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":26,"minutes":2043,"number":null,"position":"Midfielder","rating":"6.841379","captain":false},"substitutes":{"in":3,"out":12,"bench":5},"shots":{"total":9,"on":2},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":1361,"key":15,"accuracy":45},"tackles":{"total":49,"blocks":6,"interceptions":36},"duels":{"total":189,"won":109},"dribbles":{"attempts":33,"success":27,"past":null},"fouls":{"drawn":27,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":3},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21582,"name":"F. Mollet","firstname":"Florent","lastname":"Mollet","age":32,"birth":{"date":"1991-11-19","place":"Fontaine-l\u00e8s-Dijon","country":"France"},"nationality":"France","height":"170 cm","weight":"67 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/21582.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":30,"minutes":2370,"number":null,"position":"Midfielder","rating":"6.720588","captain":false},"substitutes":{"in":4,"out":17,"bench":4},"shots":{"total":39,"on":16},"goals":{"total":3,"conceded":0,"assists":5,"saves":null},"passes":{"total":1127,"key":42,"accuracy":32},"tackles":{"total":20,"blocks":4,"interceptions":32},"duels":{"total":221,"won":74},"dribbles":{"attempts":37,"success":15,"past":null},"fouls":{"drawn":28,"committed":35},"cards":{"yellow":5,"yellowred":0,"red":2},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1912,"name":"D. Payet","firstname":"Dimitri","lastname":"Payet","age":36,"birth":{"date":"1987-03-29","place":"Saint-Pierre","country":"R\u00e9union"},"nationality":"France","height":"175 cm","weight":"77 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/1912.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":28,"minutes":2428,"number":null,"position":"Midfielder","rating":"7.163636","captain":false},"substitutes":{"in":5,"out":14,"bench":5},"shots":{"total":38,"on":18},"goals":{"total":7,"conceded":0,"assists":10,"saves":null},"passes":{"total":1206,"key":67,"accuracy":28},"tackles":{"total":27,"blocks":2,"interceptions":8},"duels":{"total":214,"won":114},"dribbles":{"attempts":61,"success":37,"past":null},"fouls":{"drawn":46,"committed":16},"cards":{"yellow":4,"yellowred":0,"red":2},"penalty":{"won":null,"commited":null,"scored":0,"missed":1,"saved":null}}]},{"player":{"id":21998,"name":"A. Disasi","firstname":"Axel Wilson Arthur","lastname":"Disasi Mhakinis Belho","age":25,"birth":{"date":"1998-03-11","place":"Gonesse","country":"France"},"nationality":"France","height":"190 cm","weight":"83 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21998.png"},"statistics":[{"team":{"id":91,"name":"Monaco","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/91.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":24,"minutes":2014,"number":null,"position":"Defender","rating":"6.781481","captain":false},"substitutes":{"in":5,"out":6,"bench":11},"shots":{"total":13,"on":6},"goals":{"total":3,"conceded":0,"assists":null,"saves":null},"passes":{"total":1500,"key":4,"accuracy":47},"tackles":{"total":29,"blocks":11,"interceptions":26},"duels":{"total":187,"won":106},"dribbles":{"attempts":11,"success":8,"past":null},"fouls":{"drawn":19,"committed":28},"cards":{"yellow":4,"yellowred":0,"red":2},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21571,"name":"Hilton","firstname":"Vitorino","lastname":"Hilton da Silva","age":44,"birth":{"date":"1977-09-13","place":"Bras\u00edlia","country":"Brazil"},"nationality":"Brazil","height":"180 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21571.png"},"statistics":[{"team":{"id":82,"name":"Montpellier","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/82.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":24,"minutes":2114,"number":null,"position":"Defender","rating":"6.716000","captain":false},"substitutes":{"in":5,"out":0,"bench":8},"shots":{"total":11,"on":3},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":1055,"key":1,"accuracy":31},"tackles":{"total":15,"blocks":26,"interceptions":38},"duels":{"total":134,"won":76},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":16,"committed":18},"cards":{"yellow":4,"yellowred":0,"red":2},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":8694,"name":"W. Faes","firstname":"Wout Felix Lina","lastname":"Faes","age":25,"birth":{"date":"1998-04-03","place":null,"country":"Belgium"},"nationality":"Belgium","height":"187 cm","weight":"84 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/8694.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":33,"minutes":2901,"number":null,"position":"Defender","rating":"6.863636","captain":false},"substitutes":{"in":0,"out":0,"bench":0},"shots":{"total":7,"on":1},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":1584,"key":2,"accuracy":44},"tackles":{"total":35,"blocks":31,"interceptions":68},"duels":{"total":212,"won":119},"dribbles":{"attempts":16,"success":12,"past":null},"fouls":{"drawn":15,"committed":23},"cards":{"yellow":12,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":651,"name":"Marcelo","firstname":"Marcelo Ant\u00f4nio","lastname":"Guedes Filho","age":36,"birth":{"date":"1987-05-20","place":"S\u00e3o Vicente","country":"Brazil"},"nationality":"Brazil","height":"191 cm","weight":"85 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/651.png"},"statistics":[{"team":{"id":80,"name":"Lyon","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/80.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":34,"minutes":2912,"number":null,"position":"Defender","rating":"7.097058","captain":false},"substitutes":{"in":0,"out":4,"bench":0},"shots":{"total":19,"on":8},"goals":{"total":3,"conceded":0,"assists":null,"saves":null},"passes":{"total":2058,"key":8,"accuracy":54},"tackles":{"total":44,"blocks":25,"interceptions":50},"duels":{"total":265,"won":169},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":9,"committed":38},"cards":{"yellow":6,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":276,"name":"Neymar","firstname":"Neymar","lastname":"da Silva Santos J\u00fanior","age":31,"birth":{"date":"1992-02-05","place":"Mogi das Cruzes","country":"Brazil"},"nationality":"Brazil","height":"175 cm","weight":"68 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/276.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":18,"lineups":15,"minutes":1416,"number":null,"position":"Attacker","rating":"7.455555","captain":false},"substitutes":{"in":3,"out":2,"bench":3},"shots":{"total":53,"on":21},"goals":{"total":9,"conceded":0,"assists":5,"saves":null},"passes":{"total":916,"key":61,"accuracy":40},"tackles":{"total":14,"blocks":null,"interceptions":9},"duels":{"total":362,"won":173},"dribbles":{"attempts":155,"success":87,"past":null},"fouls":{"drawn":67,"committed":33},"cards":{"yellow":6,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":5,"missed":1,"saved":null}}]},{"player":{"id":3416,"name":"John Boye","firstname":"John","lastname":"Boye","age":35,"birth":{"date":"1987-04-23","place":"Accra","country":"Ghana"},"nationality":"Ghana","height":"184 cm","weight":"73 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/3416.png"},"statistics":[{"team":{"id":112,"name":"Metz","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/112.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":35,"minutes":3047,"number":null,"position":"Defender","rating":"6.874285","captain":false},"substitutes":{"in":0,"out":4,"bench":0},"shots":{"total":11,"on":2},"goals":{"total":1,"conceded":0,"assists":2,"saves":null},"passes":{"total":1220,"key":7,"accuracy":30},"tackles":{"total":58,"blocks":20,"interceptions":79},"duels":{"total":245,"won":137},"dribbles":{"attempts":4,"success":3,"past":null},"fouls":{"drawn":20,"committed":32},"cards":{"yellow":5,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":21433,"name":"F. Miguel","firstname":"Florian","lastname":"Miguel","age":27,"birth":{"date":"1996-09-01","place":"Brugge","country":"France"},"nationality":"France","height":"179 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/21433.png"},"statistics":[{"team":{"id":92,"name":"Nimes","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/92.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":21,"lineups":18,"minutes":1537,"number":null,"position":"Defender","rating":"6.760000","captain":false},"substitutes":{"in":3,"out":2,"bench":13},"shots":{"total":8,"on":3},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":883,"key":1,"accuracy":39},"tackles":{"total":14,"blocks":13,"interceptions":45},"duels":{"total":143,"won":80},"dribbles":{"attempts":4,"success":3,"past":null},"fouls":{"drawn":32,"committed":17},"cards":{"yellow":3,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2478,"name":"D. Benedetto","firstname":"Dar\u00edo Ismael","lastname":"Benedetto","age":33,"birth":{"date":"1990-05-17","place":"Berazategui","country":"Argentina"},"nationality":"Argentina","height":"177 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/2478.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":32,"lineups":19,"minutes":1583,"number":null,"position":"Attacker","rating":"6.570967","captain":false},"substitutes":{"in":13,"out":16,"bench":15},"shots":{"total":35,"on":15},"goals":{"total":5,"conceded":0,"assists":3,"saves":null},"passes":{"total":337,"key":13,"accuracy":8},"tackles":{"total":6,"blocks":2,"interceptions":3},"duels":{"total":176,"won":61},"dribbles":{"attempts":17,"success":11,"past":null},"fouls":{"drawn":19,"committed":19},"cards":{"yellow":2,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":1,"missed":0,"saved":null}}]},{"player":{"id":20946,"name":"C. Michelin","firstname":"Cl\u00e9ment J\u00e9r\u00f4me","lastname":"Michelin","age":26,"birth":{"date":"1997-05-11","place":"Montauban","country":"France"},"nationality":"France","height":"179 cm","weight":"70 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/20946.png"},"statistics":[{"team":{"id":116,"name":"Lens","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/116.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":26,"lineups":13,"minutes":1147,"number":null,"position":"Defender","rating":"6.819230","captain":false},"substitutes":{"in":13,"out":5,"bench":17},"shots":{"total":8,"on":2},"goals":{"total":0,"conceded":0,"assists":4,"saves":null},"passes":{"total":484,"key":17,"accuracy":17},"tackles":{"total":25,"blocks":4,"interceptions":25},"duels":{"total":122,"won":67},"dribbles":{"attempts":7,"success":4,"past":null},"fouls":{"drawn":13,"committed":23},"cards":{"yellow":2,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":7,"name":"A. Diallo","firstname":"Abdou-Lakhad","lastname":"Diallo","age":27,"birth":{"date":"1996-05-04","place":"Tours","country":"France"},"nationality":"Senegal","height":"187 cm","weight":"79 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/7.png"},"statistics":[{"team":{"id":85,"name":"Paris Saint Germain","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/85.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":22,"lineups":17,"minutes":1488,"number":null,"position":"Defender","rating":"6.952380","captain":false},"substitutes":{"in":5,"out":2,"bench":9},"shots":{"total":4,"on":null},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":1127,"key":1,"accuracy":47},"tackles":{"total":16,"blocks":8,"interceptions":25},"duels":{"total":110,"won":65},"dribbles":{"attempts":26,"success":17,"past":null},"fouls":{"drawn":9,"committed":17},"cards":{"yellow":2,"yellowred":1,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":780,"name":"S. Nzonzi","firstname":"Steven N'Kemboanza Mike Christ","lastname":"Nzonzi","age":35,"birth":{"date":"1988-12-15","place":"Colombes","country":"France"},"nationality":"France","height":"196 cm","weight":"75 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/780.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":34,"lineups":33,"minutes":2910,"number":null,"position":"Midfielder","rating":"6.897058","captain":false},"substitutes":{"in":1,"out":2,"bench":2},"shots":{"total":15,"on":4},"goals":{"total":1,"conceded":0,"assists":1,"saves":null},"passes":{"total":2888,"key":12,"accuracy":79},"tackles":{"total":34,"blocks":10,"interceptions":16},"duels":{"total":251,"won":148},"dribbles":{"attempts":24,"success":20,"past":null},"fouls":{"drawn":13,"committed":36},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1902,"name":"D. \u0106aleta-Car","firstname":"Duje","lastname":"\u0106aleta-Car","age":27,"birth":{"date":"1996-09-17","place":"\u0160ibenik","country":"Croatia"},"nationality":"Croatia","height":"192 cm","weight":"89 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/1902.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":33,"lineups":32,"minutes":2816,"number":null,"position":"Defender","rating":"6.943750","captain":false},"substitutes":{"in":1,"out":3,"bench":1},"shots":{"total":9,"on":3},"goals":{"total":2,"conceded":0,"assists":1,"saves":null},"passes":{"total":1889,"key":7,"accuracy":52},"tackles":{"total":29,"blocks":22,"interceptions":44},"duels":{"total":205,"won":123},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":15,"committed":30},"cards":{"yellow":8,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":20554,"name":"H. Belkebla","firstname":"Haris","lastname":"Belkebla","age":29,"birth":{"date":"1994-01-28","place":"Drancy","country":"France"},"nationality":"Algeria","height":"177 cm","weight":"68 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/20554.png"},"statistics":[{"team":{"id":106,"name":"Stade Brestois 29","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/106.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":35,"lineups":33,"minutes":2736,"number":null,"position":"Midfielder","rating":"6.722857","captain":false},"substitutes":{"in":2,"out":12,"bench":2},"shots":{"total":4,"on":0},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1393,"key":11,"accuracy":38},"tackles":{"total":69,"blocks":5,"interceptions":57},"duels":{"total":287,"won":148},"dribbles":{"attempts":34,"success":23,"past":null},"fouls":{"drawn":33,"committed":38},"cards":{"yellow":7,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":941,"name":"L. Benito","firstname":"Loris","lastname":"Benito Souto","age":31,"birth":{"date":"1992-01-07","place":"Aarau","country":"Switzerland"},"nationality":"Switzerland","height":"184 cm","weight":"80 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/941.png"},"statistics":[{"team":{"id":78,"name":"Bordeaux","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/78.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-1.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":31,"lineups":30,"minutes":2653,"number":null,"position":"Defender","rating":"6.745161","captain":false},"substitutes":{"in":1,"out":2,"bench":4},"shots":{"total":7,"on":1},"goals":{"total":0,"conceded":0,"assists":null,"saves":null},"passes":{"total":1514,"key":15,"accuracy":44},"tackles":{"total":42,"blocks":10,"interceptions":42},"duels":{"total":206,"won":103},"dribbles":{"attempts":3,"success":2,"past":null},"fouls":{"drawn":16,"committed":39},"cards":{"yellow":7,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":2196,"name":"D. Da Silva","firstname":"Damien","lastname":"Da Silva","age":35,"birth":{"date":"1988-05-17","place":"Talence","country":"France"},"nationality":"France","height":"184 cm","weight":"82 kg","injured":false,"photo":"https:\/\/media-2.api-sports.io\/football\/players\/2196.png"},"statistics":[{"team":{"id":94,"name":"Rennes","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/94.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":30,"lineups":30,"minutes":2664,"number":null,"position":"Defender","rating":"7.070000","captain":false},"substitutes":{"in":0,"out":3,"bench":3},"shots":{"total":20,"on":11},"goals":{"total":4,"conceded":0,"assists":null,"saves":null},"passes":{"total":2010,"key":5,"accuracy":60},"tackles":{"total":22,"blocks":13,"interceptions":44},"duels":{"total":206,"won":129},"dribbles":{"attempts":11,"success":10,"past":null},"fouls":{"drawn":22,"committed":30},"cards":{"yellow":7,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":3080,"name":"M. Munetsi","firstname":"Marshall Nyasha","lastname":"Munetsi","age":27,"birth":{"date":"1996-06-22","place":"Bulawayo","country":"Zimbabwe"},"nationality":"Zimbabwe","height":"188 cm","weight":"83 kg","injured":false,"photo":"https:\/\/media-1.api-sports.io\/football\/players\/3080.png"},"statistics":[{"team":{"id":93,"name":"Reims","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/93.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-3.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":27,"lineups":21,"minutes":1926,"number":null,"position":"Midfielder","rating":"6.851851","captain":false},"substitutes":{"in":6,"out":3,"bench":9},"shots":{"total":9,"on":3},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":831,"key":8,"accuracy":31},"tackles":{"total":35,"blocks":25,"interceptions":57},"duels":{"total":221,"won":124},"dribbles":{"attempts":22,"success":15,"past":null},"fouls":{"drawn":20,"committed":30},"cards":{"yellow":7,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":1907,"name":"H. Sakai","firstname":"Hiroki","lastname":"Sakai","age":33,"birth":{"date":"1990-04-12","place":"Kashiwa","country":"Japan"},"nationality":"Japan","height":"185 cm","weight":"78 kg","injured":false,"photo":"https:\/\/media-3.api-sports.io\/football\/players\/1907.png"},"statistics":[{"team":{"id":81,"name":"Marseille","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/81.png"},"league":{"id":61,"name":"Ligue 1","country":"France","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/61.png","flag":"https:\/\/media-2.api-sports.io\/flags\/fr.svg","season":2020},"games":{"appearences":29,"lineups":26,"minutes":2386,"number":null,"position":"Defender","rating":"6.810344","captain":false},"substitutes":{"in":3,"out":4,"bench":4},"shots":{"total":2,"on":1},"goals":{"total":0,"conceded":0,"assists":1,"saves":null},"passes":{"total":1167,"key":18,"accuracy":35},"tackles":{"total":81,"blocks":5,"interceptions":54},"duels":{"total":268,"won":148},"dribbles":{"attempts":23,"success":9,"past":null},"fouls":{"drawn":16,"committed":42},"cards":{"yellow":6,"yellowred":0,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]} [] [] +[2023-03-20T17:49:45.809423+00:00] LiveSoccer.INFO: - {"get":"transfers","parameters":{"player":"35845"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"player":{"id":35845,"name":"H. Burbano"},"update":"2022-01-13T20:10:25+00:00","transfers":[{"date":"2021-01-19","type":"N\/A","teams":{"in":{"id":1146,"name":"Cortulua","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/1146.png"},"out":{"id":1470,"name":"Cucuta","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1470.png"}}},{"date":"2020-01-01","type":"N\/A","teams":{"in":{"id":1470,"name":"Cucuta","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/1470.png"},"out":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"}}},{"date":"2019-07-15","type":"Free","teams":{"in":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"out":{"id":2283,"name":"Atlas","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/2283.png"}}},{"date":"2019-01-01","type":"N\/A","teams":{"in":{"id":2283,"name":"Atlas","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/2283.png"},"out":{"id":1139,"name":"Santa Fe","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/1139.png"}}},{"date":"2018-07-01","type":"N\/A","teams":{"in":{"id":1139,"name":"Santa Fe","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1139.png"},"out":{"id":2289,"name":"Leon","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/2289.png"}}},{"date":"2015-06-11","type":"N\/A","teams":{"in":{"id":2289,"name":"Leon","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/2289.png"},"out":{"id":2279,"name":"Tigres UANL","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/2279.png"}}},{"date":"2014-01-01","type":"N\/A","teams":{"in":{"id":2279,"name":"Tigres UANL","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/2279.png"},"out":{"id":2289,"name":"Leon","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/2289.png"}}},{"date":"2012-01-01","type":"N\/A","teams":{"in":{"id":2289,"name":"Leon","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/2289.png"},"out":{"id":1127,"name":"Deportivo Cali","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/1127.png"}}},{"date":"2011-01-01","type":"N\/A","teams":{"in":{"id":1127,"name":"Deportivo Cali","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/1127.png"},"out":{"id":1126,"name":"Deportivo Pasto","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/1126.png"}}}]}]} [] [] +[2023-03-20T17:52:13.083809+00:00] LiveSoccer.INFO: - {"get":"trophies","parameters":{"player":"35845"},"errors":[],"results":5,"paging":{"current":1,"total":1},"response":[{"league":"Copa MX","country":"Mexico","season":"2015\/2016 Apertura","place":"2nd Place"},{"league":"Liga MX","country":"Mexico","season":"2014\/2015","place":"2nd Place"},{"league":"Supercopa MX","country":"Mexico","season":"2014","place":"2nd Place"},{"league":"Copa MX","country":"Mexico","season":"2013\/2014 Clausura","place":"Winner"},{"league":"Liga de Expansi\u00f3n MX","country":"Mexico","season":"2011\/2012","place":"Winner"}]} [] [] +[2023-03-20T17:53:48.202245+00:00] LiveSoccer.INFO: - {"get":"sidelined","parameters":{"player":"276"},"errors":[],"results":43,"paging":{"current":1,"total":1},"response":[{"type":"Ankle Ligaments","start":"2023-02-20","end":"2023-06-30"},{"type":"Groin Strain","start":"2023-01-31","end":"2023-02-07"},{"type":"Suspended","start":"2022-12-29","end":"2023-01-03"},{"type":"Ankle\/Foot Injury","start":"2022-11-25","end":"2022-12-03"},{"type":"Suspended","start":"2022-10-18","end":"2022-10-24"},{"type":"Suspended","start":"2022-05-10","end":"2022-05-15"},{"type":"Suspended","start":"2022-04-19","end":"2022-04-21"},{"type":"Ankle Ligaments","start":"2021-11-29","end":"2022-02-14"},{"type":"Suspended","start":"2021-04-07","end":"2021-04-19"},{"type":"Groin Strain","start":"2021-02-11","end":"2021-03-15"},{"type":"Suspended","start":"2021-02-02","end":"2021-02-04"},{"type":"Ankle Ligaments","start":"2020-12-14","end":"2021-01-12"},{"type":"Medical Condition","start":"2020-12-05","end":"2020-12-07"},{"type":"Groin Strain","start":"2020-10-29","end":"2020-11-19"},{"type":"Suspended","start":"2020-09-15","end":"2020-09-22"},{"type":"Virus","start":"2020-09-02","end":"2020-09-12"},{"type":"Suspended","start":"2020-02-26","end":"2020-03-01"},{"type":"Hip\/Thigh Injury","start":"2020-02-02","end":"2020-02-10"},{"type":"Groin\/Pelvis Injury","start":"2019-10-11","end":"2019-11-20"},{"type":"Ankle\/Foot Injury","start":"2019-08-01","end":"2019-08-23"},{"type":"Suspended","start":"2019-05-15","end":"2019-05-27"},{"type":"Ankle\/Foot Injury","start":"2019-01-24","end":"2019-04-20"},{"type":"Groin Strain","start":"2018-12-03","end":"2019-01-02"},{"type":"Groin Strain","start":"2018-11-21","end":"2018-11-27"},{"type":"Broken Toe","start":"2018-02-26","end":"2018-05-20"},{"type":"Thigh Muscle Strain","start":"2018-01-20","end":"2018-01-25"},{"type":"Rib Injury","start":"2018-01-11","end":"2018-01-16"},{"type":"Suspended","start":"2017-12-05","end":"2017-12-11"},{"type":"Thigh Muscle Strain","start":"2017-11-03","end":"2017-11-15"},{"type":"Suspended","start":"2017-10-23","end":"2017-10-28"},{"type":"Ankle\/Foot Injury","start":"2017-09-21","end":"2017-09-25"},{"type":"Suspended","start":"2017-04-09","end":"2017-04-27"},{"type":"Suspended","start":"2016-12-04","end":"2016-12-11"},{"type":"Suspended","start":"2016-03-04","end":"2016-03-07"},{"type":"Hamstring","start":"2016-01-21","end":"2016-01-26"},{"type":"Hamstring","start":"2015-12-08","end":"2015-12-16"},{"type":"Virus","start":"2015-08-09","end":"2015-08-26"},{"type":"Suspended","start":"2015-03-01","end":"2015-03-09"},{"type":"Sprained Ankle","start":"2014-08-22","end":"2014-08-29"},{"type":"Vertebral Fracture","start":"2014-07-05","end":"2014-08-05"},{"type":"Ankle\/Foot Injury","start":"2014-04-17","end":"2014-05-10"},{"type":"Sprained Ankle","start":"2014-01-17","end":"2014-02-14"},{"type":"Suspended","start":"2013-12-15","end":"2013-12-23"}]} [] [] +[2023-03-20T18:00:13.018819+00:00] LiveSoccer.INFO: - {"get":"odds\/live","parameters":{"fixture":"164327"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:01:11.714513+00:00] LiveSoccer.INFO: - {"get":"odds\/live","parameters":[],"errors":[],"results":97,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":913234,"status":{"long":"Second Half","elapsed":88,"seconds":"87:52"}},"league":{"id":284,"season":2022},"teams":{"home":{"id":2606,"goals":1},"away":{"id":2583,"goals":3}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T14:15:11+00:00","odds":[{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5.75","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.14","handicap":"5","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.15","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"5.5","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"2.35","handicap":"2","main":true,"suspended":false},{"value":"Away","odd":"1.575","handicap":"-2","main":true,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.062","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"81","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"101","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"13","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.04","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"11","handicap":"2","main":true,"suspended":false},{"value":"Draw","odd":"1.1","handicap":"-2","main":true,"suspended":false},{"value":"Away","odd":"8.5","handicap":"-2","main":true,"suspended":false}]},{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7.5","handicap":null,"main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"8","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.03","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"5","main":null,"suspended":false}]}]},{"fixture":{"id":875915,"status":{"long":"Second Half","elapsed":88,"seconds":"88:20"}},"league":{"id":41,"season":2022},"teams":{"home":{"id":1375,"goals":0},"away":{"id":68,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T14:15:26+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"23","handicap":"16","main":null,"suspended":false},{"value":"Exactly","odd":"11","handicap":"16","main":null,"suspended":false},{"value":"Under","odd":"1.062","handicap":"16","main":null,"suspended":false},{"value":"Over","odd":"3.5","handicap":"14","main":null,"suspended":false},{"value":"Exactly","odd":"2.6","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"2.375","handicap":"14","main":null,"suspended":false},{"value":"Over","odd":"10","handicap":"15","main":null,"suspended":false},{"value":"Exactly","odd":"4.5","handicap":"15","main":null,"suspended":false},{"value":"Under","odd":"1.285","handicap":"15","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.26","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"3.7","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.13","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"5.9","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"2.9","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.425","handicap":"0","main":true,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.533","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"2.375","handicap":"14","main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"1.222","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.125","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"6.5","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"51","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"201","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"11","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.04","handicap":"1","main":false,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"4","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.24","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"6.4","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"1.115","handicap":"1","main":false,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.3","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.6","handicap":"14","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"1","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":885335,"status":{"long":"Second Half","elapsed":88,"seconds":"88:14"}},"league":{"id":146,"season":2022},"teams":{"home":{"id":1792,"goals":2},"away":{"id":1789,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T14:15:26+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7.5","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"7","handicap":"14","main":null,"suspended":false},{"value":"Exactly","odd":"2.875","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"14","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"9","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.45","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"2.675","handicap":"1","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.375","handicap":"4","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"3","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.363","handicap":"4","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.002","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"21","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"4.333","handicap":"-1","main":null,"suspended":false},{"value":"Draw","odd":"1.333","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"9","handicap":"1","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"34","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"12","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.2","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":885337,"status":{"long":"Second Half","elapsed":88,"seconds":"87:35"}},"league":{"id":146,"season":2022},"teams":{"home":{"id":14036,"goals":0},"away":{"id":6344,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T14:15:20+00:00","odds":[{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.19","handicap":"2","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3.55","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.275","handicap":"-1","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"15","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"1.142","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"5.5","handicap":"-1","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"2","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.03","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.02","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":885338,"status":{"long":"Second Half","elapsed":86,"seconds":"85:54"}},"league":{"id":146,"season":2022},"teams":{"home":{"id":14037,"goals":0},"away":{"id":14035,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T14:15:07+00:00","odds":[{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"3.25","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.333","handicap":"2","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"4.333","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"4.5","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"2.625","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"13","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"1.181","handicap":"13","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"10","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"1.285","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"4.333","handicap":"-1","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.775","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"2.025","handicap":"12","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3.3","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.325","handicap":"2","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.727","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"12","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.375","handicap":"-1","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.333","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":952706,"status":{"long":"Second Half","elapsed":89,"seconds":"88:36"}},"league":{"id":942,"season":2022},"teams":{"home":{"id":866,"goals":0},"away":{"id":1697,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:25+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"5.5","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"2.75","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"19","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"6.5","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"9","main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"17","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.65","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.18","handicap":"2","main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Away\/No","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"5.2","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.14","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.125","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"5.6","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"3.45","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"1.3","handicap":"-1","main":true,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"6","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"1.166","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"23","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.015","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"21","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1001","handicap":"-2","main":false,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.004","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.002","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"2","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.833","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"8","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.95","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.85","handicap":"8","main":null,"suspended":false}]}]},{"fixture":{"id":953083,"status":{"long":"Second Half","elapsed":90,"seconds":"90:02"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":1587,"goals":1},"away":{"id":501,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:22+00:00","odds":[{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"9.5","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.02","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"13","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"251","handicap":"-1","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"11","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"11","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"3.25","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"7","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"7.8","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.09","handicap":"3","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.025","handicap":"0","main":null,"suspended":false},{"value":"Away","odd":"1.775","handicap":"0","main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.02","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.015","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"7.5","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"7","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.083","handicap":"3","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"2","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.03","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":953085,"status":{"long":"Second Half","elapsed":94,"seconds":"93:40"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":525,"goals":2},"away":{"id":863,"goals":2}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T15:20:18+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.071","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"1.055","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"17","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":878978,"status":{"long":"Second Half","elapsed":null,"seconds":null}},"league":{"id":219,"season":2022},"teams":{"home":{"id":4255,"goals":1},"away":{"id":8247,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"6.6","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.11","handicap":"4","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"15","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"1.083","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"9.5","handicap":"-1","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"6.5","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.1","handicap":"4","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.03","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.25","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.625","handicap":"-1","main":null,"suspended":false}]},{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.03","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":879638,"status":{"long":"Second Half","elapsed":89,"seconds":"89:16"}},"league":{"id":346,"season":2022},"teams":{"home":{"id":3725,"goals":0},"away":{"id":3728,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:21+00:00","odds":[{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"2","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"9","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"10","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"1.125","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"9","handicap":"-1","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5.25","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.16","handicap":"2","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"151","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.85","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.95","handicap":"-1","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.04","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"9","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":953086,"status":{"long":"Second Half","elapsed":92,"seconds":"91:37"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":882,"goals":0},"away":{"id":804,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"10","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.06","handicap":"1","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.015","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"17","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"351","handicap":"-1","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"12","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"8","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.062","handicap":"1","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.05","handicap":"0","main":null,"suspended":false},{"value":"Away","odd":"1.75","handicap":"0","main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.015","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.012","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":953087,"status":{"long":"Second Half","elapsed":92,"seconds":"92:07"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":898,"goals":0},"away":{"id":10138,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"151","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.02","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":953090,"status":{"long":"Second Half","elapsed":92,"seconds":"92:14"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":521,"goals":1},"away":{"id":1585,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T15:20:19+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.175","handicap":"-1","main":null,"suspended":true},{"value":"Away","odd":"4.8","handicap":"1","main":null,"suspended":true}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.1","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"17","handicap":null,"main":null,"suspended":true}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"6.8","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"1.105","handicap":"2","main":null,"suspended":true}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"1.083","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"23","handicap":null,"main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.012","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"151","handicap":null,"main":null,"suspended":true}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"6.5","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"1.1","handicap":"2","main":null,"suspended":true}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"8","handicap":"-1","main":null,"suspended":true},{"value":"Draw","odd":"1.083","handicap":"1","main":null,"suspended":true},{"value":"Away","odd":"23","handicap":"1","main":null,"suspended":true}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.004","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"17","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":953089,"status":{"long":"Second Half","elapsed":90,"seconds":"90:27"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":9556,"goals":0},"away":{"id":1696,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.045","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"17","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":950235,"status":{"long":"Second Half","elapsed":92,"seconds":"92:00"}},"league":{"id":428,"season":2022},"teams":{"home":{"id":1704,"goals":0},"away":{"id":9471,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:23+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.03","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":882778,"status":{"long":"Second Half","elapsed":91,"seconds":"91:17"}},"league":{"id":173,"season":2022},"teams":{"home":{"id":683,"goals":2},"away":{"id":1412,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:12+00:00","odds":[{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.4","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.75","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"15","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.4","handicap":"0","main":null,"suspended":false},{"value":"Away","odd":"2.85","handicap":"0","main":null,"suspended":false}]},{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.01","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.03","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"7","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"151","handicap":"-1","main":null,"suspended":false},{"value":"Draw","odd":"11","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.03","handicap":"1","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"7.4","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.095","handicap":"5","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.015","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"7","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.083","handicap":"5","main":null,"suspended":false}]}]},{"fixture":{"id":900040,"status":{"long":"Second Half","elapsed":90,"seconds":"90:21"}},"league":{"id":492,"season":2022},"teams":{"home":{"id":17129,"goals":4},"away":{"id":10321,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.675","handicap":"-2","main":true,"suspended":false},{"value":"Away","odd":"2.15","handicap":"2","main":true,"suspended":false},{"value":"Home","odd":"6.6","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"1.1","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"1.13","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"5.4","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"4.3","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.19","handicap":"2","main":false,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"8","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4","handicap":"7","main":true,"suspended":false},{"value":"Under","odd":"1.23","handicap":"7","main":true,"suspended":false},{"value":"Over","odd":"6","handicap":"7","main":false,"suspended":false},{"value":"Under","odd":"1.115","handicap":"7","main":false,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"41","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.004","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"81","handicap":null,"main":null,"suspended":false}]},{"id":132,"name":"Which team will score the 7th goal?","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7.5","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"51","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"7.5","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.083","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"6.5","handicap":"-2","main":true,"suspended":false},{"value":"Draw","odd":"1.2","handicap":"2","main":true,"suspended":false},{"value":"Away","odd":"8","handicap":"2","main":true,"suspended":false},{"value":"Home","odd":"1.062","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"41","handicap":"1","main":false,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":900042,"status":{"long":"Second Half","elapsed":92,"seconds":"92:16"}},"league":{"id":492,"season":2022},"teams":{"home":{"id":1250,"goals":2},"away":{"id":1257,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:20+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":882781,"status":{"long":"Second Half","elapsed":88,"seconds":"87:58"}},"league":{"id":173,"season":2022},"teams":{"home":{"id":1421,"goals":0},"away":{"id":1427,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:17+00:00","odds":[{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"8","handicap":"2","main":null,"suspended":false},{"value":"Draw","odd":"1.125","handicap":"-2","main":null,"suspended":false},{"value":"Away","odd":"9.5","handicap":"-2","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.002","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.17","handicap":"3","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"3","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"2.75","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.675","handicap":"2","main":null,"suspended":false},{"value":"Away","odd":"2.15","handicap":"-2","main":null,"suspended":false}]}]},{"fixture":{"id":883952,"status":{"long":"Second Half","elapsed":88,"seconds":"88:27"}},"league":{"id":109,"season":2022},"teams":{"home":{"id":6945,"goals":1},"away":{"id":6947,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:27+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.1","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"7","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.575","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"2.35","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"5","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.17","handicap":"0","main":false,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.03","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"11","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"151","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"101","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"8","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"1.071","handicap":"1","main":true,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"10","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.03","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"9","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"7.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.17","handicap":"3","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"3","main":null,"suspended":false}]}]},{"fixture":{"id":985662,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":668,"season":2022},"teams":{"home":{"id":7970,"goals":6},"away":{"id":14840,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T15:20:09+00:00","odds":[{"id":139,"name":"Which team will score the 8th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":933412,"status":{"long":"Second Half","elapsed":89,"seconds":"88:50"}},"league":{"id":405,"season":2022},"teams":{"home":{"id":5309,"goals":6},"away":{"id":15561,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:23+00:00","odds":[{"id":139,"name":"Which team will score the 8th goal?","values":[{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.25","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.21","handicap":"8","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.333","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"8","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3.45","handicap":"-5","main":null,"suspended":false},{"value":"Away","odd":"1.3","handicap":"5","main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"11","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"3.25","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"9","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"5","handicap":"-5","main":null,"suspended":false},{"value":"Draw","odd":"1.166","handicap":"5","main":null,"suspended":false},{"value":"Away","odd":"17","handicap":"5","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.015","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":933409,"status":{"long":"Second Half","elapsed":93,"seconds":"92:56"}},"league":{"id":405,"season":2022},"teams":{"home":{"id":5322,"goals":1},"away":{"id":5317,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T15:20:17+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.04","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":930541,"status":{"long":"Second Half","elapsed":93,"seconds":"92:51"}},"league":{"id":288,"season":2022},"teams":{"home":{"id":10567,"goals":0},"away":{"id":2691,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T15:20:15+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":871364,"status":{"long":"Second Half","elapsed":92,"seconds":"92:24"}},"league":{"id":78,"season":2022},"teams":{"home":{"id":182,"goals":0},"away":{"id":192,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T16:20:28+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.004","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":960373,"status":{"long":"Second Half","elapsed":96,"seconds":"95:34"}},"league":{"id":946,"season":2022},"teams":{"home":{"id":6241,"goals":2},"away":{"id":8580,"goals":2}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T16:20:00+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.006","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":960371,"status":{"long":"Second Half","elapsed":95,"seconds":"95:12"}},"league":{"id":946,"season":2022},"teams":{"home":{"id":8607,"goals":1},"away":{"id":8615,"goals":3}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T16:20:26+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.004","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":930332,"status":{"long":"Second Half","elapsed":90,"seconds":"90:00"}},"league":{"id":211,"season":2022},"teams":{"home":{"id":6256,"goals":2},"away":{"id":1472,"goals":0}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T16:20:27+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":930329,"status":{"long":"Second Half","elapsed":94,"seconds":"94:30"}},"league":{"id":211,"season":2022},"teams":{"home":{"id":1487,"goals":1},"away":{"id":1471,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T16:20:27+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"3.25","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"17","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"9","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.1","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"1.727","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"3","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"5","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"7","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.333","handicap":"9","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"5.6","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.125","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.14","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"5.2","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"3.6","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.25","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.375","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"2.825","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"2.6","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.475","handicap":"0","main":true,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"10.5","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"2.75","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"81","handicap":null,"main":null,"suspended":true}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"3.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.285","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"3","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.062","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"8.5","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"67","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"81","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"26","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.015","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"26","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"4","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"1.25","handicap":"1","main":true,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"9","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.04","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"2.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.5","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"29","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"21","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.03","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"8","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.25","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"6","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"2","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.727","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"8","main":null,"suspended":false}]},{"id":110,"name":"Which team will score the 8th corner? (2 Way)","values":[{"value":"1","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"10.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"7","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.5","handicap":"3","main":true,"suspended":false},{"value":"Under","odd":"1.5","handicap":"3","main":true,"suspended":false},{"value":"Over","odd":"3.5","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.26","handicap":"3","main":false,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.75","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"2.05","handicap":"8","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"2","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":930328,"status":{"long":"Second Half","elapsed":93,"seconds":"93:09"}},"league":{"id":211,"season":2022},"teams":{"home":{"id":1480,"goals":0},"away":{"id":1021,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T16:20:18+00:00","odds":[{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.533","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.375","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":86,"name":"Which team will score the 6th corner? (2 Way)","values":[{"value":"1","odd":"1.727","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2","handicap":null,"main":null,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"10","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.03","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"2.5","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.5","handicap":"1","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.675","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"2.15","handicap":"6","main":null,"suspended":false}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"1.5","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3.4","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.275","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.16","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"4.8","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"4.8","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.16","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.925","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.875","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"1.275","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"3.4","handicap":"0","main":false,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.142","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"41","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"41","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.125","handicap":"1","main":false,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.012","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.5","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.5","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"3.5","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"1.26","handicap":"1","main":false,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.008","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"6.5","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"4.75","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.363","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"3","handicap":"6","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"1.666","handicap":"5","main":null,"suspended":false},{"value":"Exactly","odd":"3.1","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"5.5","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"8.5","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"8","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.333","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":61,"name":"Race to the 5th corner?","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.666","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"6","main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.333","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.012","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":984053,"status":{"long":"First Half","elapsed":19,"seconds":"19:26"}},"league":{"id":411,"season":2023},"teams":{"home":{"id":5558,"goals":1},"away":{"id":5405,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T16:20:08+00:00","odds":[{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"4.333","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"2.5","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"2","handicap":null,"main":null,"suspended":true}]},{"id":24,"name":"Over\/Under Line (1st Half)","values":[{"value":"Over","odd":"1.975","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"1.825","handicap":"2","main":null,"suspended":true}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.5","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"2.5","handicap":null,"main":null,"suspended":true}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.775","handicap":"0","main":null,"suspended":true},{"value":"Away","odd":"2.025","handicap":"0","main":null,"suspended":true}]},{"id":49,"name":"Over\/Under (1st Half)","values":[{"value":"Over","odd":"1.909","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"1.8","handicap":"2","main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"2.05","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"3.25","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"3.4","handicap":null,"main":null,"suspended":true}]},{"id":17,"name":"Asian Handicap (1st Half)","values":[{"value":"Home","odd":"1.575","handicap":"-1","main":null,"suspended":true},{"value":"Away","odd":"2.35","handicap":"1","main":null,"suspended":true}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2","handicap":"3","main":null,"suspended":true},{"value":"Under","odd":"1.8","handicap":"3","main":null,"suspended":true}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.833","handicap":null,"main":null,"suspended":true},{"value":"Even","odd":"1.833","handicap":null,"main":null,"suspended":true}]},{"id":55,"name":"Correct Score (1st Half)","values":[{"value":"1-0","odd":"1.8","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"34","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"3.75","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"101","handicap":null,"main":null,"suspended":true}]},{"id":19,"name":"1x2 (1st Half)","values":[{"value":"Home","odd":"1.3","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"3.75","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"11","handicap":null,"main":null,"suspended":true}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"3.1","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.571","handicap":null,"main":null,"suspended":true}]},{"id":64,"name":"Half Time\/Full Time","values":[{"value":"1\/1","odd":"2.1","handicap":null,"main":null,"suspended":true},{"value":"1\/X","odd":"4.75","handicap":null,"main":null,"suspended":true},{"value":"1\/2","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"X\/1","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"X\/X","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"X\/2","odd":"7.5","handicap":null,"main":null,"suspended":true},{"value":"2\/1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2\/X","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"2\/2","odd":"15","handicap":null,"main":null,"suspended":true}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"7.5","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"19","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"26","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"9.5","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"26","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"3-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-6","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-6","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.3","handicap":null,"main":null,"suspended":true},{"value":"Away or Draw","odd":"1.666","handicap":null,"main":null,"suspended":true},{"value":"Home or Away","odd":"1.333","handicap":null,"main":null,"suspended":true}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"4.333","handicap":"-1","main":null,"suspended":true},{"value":"Draw","odd":"3.4","handicap":"1","main":null,"suspended":true},{"value":"Away","odd":"1.666","handicap":"1","main":null,"suspended":true}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"1.571","handicap":"3","main":null,"suspended":true},{"value":"Under","odd":"2.25","handicap":"3","main":null,"suspended":true}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"2.25","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.571","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":903818,"status":{"long":"Second Half","elapsed":90,"seconds":"90:10"}},"league":{"id":136,"season":2022},"teams":{"home":{"id":1692,"goals":0},"away":{"id":523,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:08+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"10","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.35","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.21","handicap":"2","main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Away\/No","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"6.8","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.105","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.475","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"2.7","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"4.15","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.22","handicap":"-1","main":false,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"21","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"6.5","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"2.875","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"9","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"7","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"1.166","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"10","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.04","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"13","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"251","handicap":"-2","main":false,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"9","main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.02","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.09","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.333","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"2","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.05","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.75","handicap":"9","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.833","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.1","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":878642,"status":{"long":"Second Half","elapsed":89,"seconds":"89:23"}},"league":{"id":141,"season":2022},"teams":{"home":{"id":9580,"goals":1},"away":{"id":715,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:16+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"19","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.125","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"6","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"2.75","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"11","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"7","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.1","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.625","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"2.35","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"4.4","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.2","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.125","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"6","handicap":"-1","main":false,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.25","handicap":"4","main":true,"suspended":false},{"value":"Under","odd":"1.22","handicap":"4","main":true,"suspended":false},{"value":"Over","odd":"6.8","handicap":"4","main":false,"suspended":false},{"value":"Under","odd":"1.105","handicap":"4","main":false,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"7.5","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"1.181","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"8.5","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.062","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"126","handicap":"-2","main":false,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.333","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"4","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"11","main":null,"suspended":false}]},{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.909","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"11","main":null,"suspended":false}]}]},{"fixture":{"id":878176,"status":{"long":"Second Half","elapsed":91,"seconds":"91:27"}},"league":{"id":140,"season":2022},"teams":{"home":{"id":723,"goals":0},"away":{"id":533,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:26+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":876732,"status":{"long":"Second Half","elapsed":80,"seconds":"79:47"}},"league":{"id":332,"season":2022},"teams":{"home":{"id":10542,"goals":1},"away":{"id":10533,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:19+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"11","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"6.5","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.181","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"4.5","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"3.6","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"2.1","handicap":"6","main":null,"suspended":false},{"value":"Exactly","odd":"2.75","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"3.75","handicap":"6","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2.1","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"7","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.14","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"5.2","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"3.8","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.23","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.625","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"2.25","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"2.725","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.4","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.24","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"3.7","handicap":"-1","main":false,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"4.333","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"3","main":null,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"3.75","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"12","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"2.25","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"0-1","odd":"2.375","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"3-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"101","handicap":null,"main":null,"suspended":true}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"3.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.285","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"3","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.3","handicap":"4","main":true,"suspended":false},{"value":"Under","odd":"1.6","handicap":"4","main":true,"suspended":false},{"value":"Over","odd":"3.075","handicap":"4","main":false,"suspended":false},{"value":"Under","odd":"1.325","handicap":"4","main":false,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"4","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"1.5","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"5.5","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.142","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"41","handicap":"-2","main":false,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"2.25","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.571","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"8.5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.05","handicap":"5","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.15","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.675","handicap":"7","main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.363","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"4.333","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.006","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.222","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":88,"name":"Which team will score the 7th corner? (2 Way)","values":[{"value":"1","odd":"1.25","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.015","handicap":null,"main":null,"suspended":false}]},{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"3.6","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.75","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.25","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.666","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":876733,"status":{"long":"Second Half","elapsed":79,"seconds":"78:44"}},"league":{"id":332,"season":2022},"teams":{"home":{"id":10536,"goals":1},"away":{"id":3554,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:22+00:00","odds":[{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"6","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"2","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"2","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.666","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"13","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.1","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.7","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"1.625","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.15","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.4","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.725","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"5","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.15","handicap":"0","main":false,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"1.666","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"3.1","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"5.5","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"6.5","handicap":"14","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.363","handicap":"14","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"15","main":null,"suspended":false},{"value":"Exactly","odd":"9","handicap":"15","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"15","main":null,"suspended":false},{"value":"Over","odd":"3","handicap":"13","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"13","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.015","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"29","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"67","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"1.615","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"2.875","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"7","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"51","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.03","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.083","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"9","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"26","handicap":"-2","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"26","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"2.875","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"2-5","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-6","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"1-6","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-6","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-6","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-7","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-7","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-8","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"5.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.125","handicap":"2","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.5","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"10.5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"1.727","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"3","main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.727","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.2","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.615","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.03","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.8","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.7","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"13","main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"2.25","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.571","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.142","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3.075","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.325","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"1.725","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"2.075","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"2","handicap":"3","main":true,"suspended":false},{"value":"Under","odd":"1.7","handicap":"3","main":true,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.05","handicap":null,"main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"1.8","handicap":"80","main":null,"suspended":false},{"value":"Goals\/Under 0.5","odd":"1.909","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Over 1.5","odd":"1.833","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Under 1.5","odd":"1.833","handicap":"80","main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.04","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.142","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":114,"name":"Which team will score the 13th corner? (2 Way)","values":[{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"2.2","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"21","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":876731,"status":{"long":"Second Half","elapsed":78,"seconds":"78:14"}},"league":{"id":332,"season":2022},"teams":{"home":{"id":3552,"goals":0},"away":{"id":3553,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:28+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.21","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"4","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.115","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"6","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"5","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.15","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.725","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"2.075","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"3.4","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.275","handicap":"0","main":false,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":93,"name":"Which team will score the 10th corner? (2 Way)","values":[{"value":"1","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"19","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"10","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.083","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"3.75","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"3.6","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"8","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.25","handicap":"11","main":null,"suspended":false},{"value":"Over","odd":"1.833","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"2.875","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"4.5","handicap":"9","main":null,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"1.363","handicap":null,"main":null,"suspended":false}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.1","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"7","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"51","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"41","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"1.125","handicap":"1","main":true,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.875","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.925","handicap":"10","main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.3","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"101","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.015","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"6.5","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.727","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"10.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"3","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.363","handicap":"1","main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"3.25","handicap":"80","main":null,"suspended":true},{"value":"Goals\/Under 0.5","odd":"1.333","handicap":"80","main":null,"suspended":true},{"value":"Corners\/Over 1.5","odd":"2.1","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Under 1.5","odd":"1.666","handicap":"80","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.004","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.004","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.8","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.375","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"4.15","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"1.2","handicap":"1","main":false,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.833","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"10","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"101","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":935714,"status":{"long":"Second Half","elapsed":79,"seconds":"79:14"}},"league":{"id":876,"season":2022},"teams":{"home":{"id":5270,"goals":1},"away":{"id":15324,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:23+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.22","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"3.9","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.5","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"2.4","handicap":"1","main":true,"suspended":false},{"value":"Home","odd":"3.4","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.275","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"2.5","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.5","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"5","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.15","handicap":"2","main":false,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.15","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.675","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"5.8","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.12","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.825","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.375","handicap":"2","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"4-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"5-3","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"6-2","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"7-0","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"7-1","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"8-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"1.181","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"3.25","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.333","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"10.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"15","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"2","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.004","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"17","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"2.1","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"7.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.071","handicap":"3","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.02","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"51","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"19","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.025","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"19","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"4","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.25","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"3.4","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"1.571","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"5.5","handicap":"1","main":true,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"10.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":876730,"status":{"long":"Second Half","elapsed":79,"seconds":"78:49"}},"league":{"id":332,"season":2022},"teams":{"home":{"id":655,"goals":1},"away":{"id":3548,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:26+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.23","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"3.8","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.575","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"2.35","handicap":"1","main":true,"suspended":false},{"value":"Home","odd":"3.5","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.26","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"1.14","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"5.2","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"2.55","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.45","handicap":"1","main":false,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.727","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"13","main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.75","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"1.727","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"3","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"5","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"7","handicap":"14","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.3","handicap":"14","main":null,"suspended":false},{"value":"Over","odd":"17","handicap":"15","main":null,"suspended":false},{"value":"Exactly","odd":"9","handicap":"15","main":null,"suspended":false},{"value":"Under","odd":"1.1","handicap":"15","main":null,"suspended":false},{"value":"Over","odd":"3.4","handicap":"13","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"13","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.15","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.675","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"6","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.115","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.825","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.375","handicap":"2","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"4.333","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"3.25","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.333","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"11","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.02","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"29","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.333","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.775","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2.025","handicap":"13","main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"2.5","handicap":null,"main":null,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"15","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"2","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.004","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"17","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"2.1","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"8","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.062","handicap":"3","main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"2.25","handicap":"80","main":null,"suspended":true},{"value":"Goals\/Under 0.5","odd":"1.571","handicap":"80","main":null,"suspended":true},{"value":"Corners\/Over 1.5","odd":"1.833","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Under 1.5","odd":"1.833","handicap":"80","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"10.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.025","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"67","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"21","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.02","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"21","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"4","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.222","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"3.5","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"1.571","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"6","handicap":"1","main":true,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"4.333","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"4.75","handicap":null,"main":null,"suspended":false}]},{"id":114,"name":"Which team will score the 13th corner? (2 Way)","values":[{"value":"1","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.444","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"2.375","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"11","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":876735,"status":{"long":"Second Half","elapsed":80,"seconds":"79:54"}},"league":{"id":332,"season":2022},"teams":{"home":{"id":3549,"goals":0},"away":{"id":2257,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T17:05:23+00:00","odds":[{"id":120,"name":"Which team will score the 12th corner? (2 Way)","values":[{"value":"1","odd":"2.25","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.571","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.24","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"3.7","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.125","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"5.6","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"2.1","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.7","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"4.6","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.17","handicap":"0","main":false,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"12","main":null,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"6.5","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"4.333","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"2","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"2.875","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"4","handicap":"11","main":null,"suspended":false},{"value":"Over","odd":"10","handicap":"13","main":null,"suspended":false},{"value":"Exactly","odd":"6","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"13","main":null,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"1.3","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"0-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"1.3","handicap":null,"main":null,"suspended":false}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.1","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.111","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"6.5","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"51","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"81","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"8","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.071","handicap":"1","main":false,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"101","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.3","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.05","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"3.5","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.25","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.666","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"15","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"3.4","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"1.3","handicap":"1","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.05","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.75","handicap":"12","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.002","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.002","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3.45","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.3","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"5","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"1.15","handicap":"1","main":false,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.3","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.142","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"101","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":975568,"status":{"long":"Second Half","elapsed":90,"seconds":"90:17"}},"league":{"id":476,"season":2023},"teams":{"home":{"id":10031,"goals":1},"away":{"id":139,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T21:25:12+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":975763,"status":{"long":"Second Half","elapsed":93,"seconds":"92:33"}},"league":{"id":630,"season":2023},"teams":{"home":{"id":20716,"goals":0},"away":{"id":1193,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T21:25:28+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.04","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"6","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":934008,"status":{"long":"Second Half","elapsed":93,"seconds":"92:34"}},"league":{"id":312,"season":2022},"teams":{"home":{"id":2268,"goals":0},"away":{"id":591,"goals":3}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-04T21:25:24+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":953081,"status":{"long":"Second Half","elapsed":90,"seconds":"90:01"}},"league":{"id":943,"season":2022},"teams":{"home":{"id":5608,"goals":2},"away":{"id":9539,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T21:25:26+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":976923,"status":{"long":"Second Half","elapsed":95,"seconds":"94:57"}},"league":{"id":629,"season":2023},"teams":{"home":{"id":13084,"goals":1},"away":{"id":7769,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-04T21:25:19+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.025","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":975767,"status":{"long":"Second Half","elapsed":90,"seconds":"90:22"}},"league":{"id":630,"season":2023},"teams":{"home":{"id":18273,"goals":1},"away":{"id":9999,"goals":6}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T21:25:07+00:00","odds":[{"id":139,"name":"Which team will score the 8th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":975824,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":604,"season":2023},"teams":{"home":{"id":132,"goals":0},"away":{"id":1211,"goals":0}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-04T21:25:01+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":984368,"status":{"long":"Second Half","elapsed":92,"seconds":"91:52"}},"league":{"id":234,"season":2022},"teams":{"home":{"id":1054,"goals":0},"away":{"id":1050,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T03:20:19+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"11","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"10","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":878651,"status":{"long":"Second Half","elapsed":93,"seconds":"93:20"}},"league":{"id":141,"season":2022},"teams":{"home":{"id":537,"goals":0},"away":{"id":9390,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:17+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.02","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"501","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.02","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":881744,"status":{"long":"Second Half","elapsed":92,"seconds":"92:09"}},"league":{"id":119,"season":2022},"teams":{"home":{"id":2073,"goals":1},"away":{"id":398,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.025","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"21","handicap":null,"main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.025","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"17","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":866359,"status":{"long":"Second Half","elapsed":93,"seconds":"93:19"}},"league":{"id":120,"season":2022},"teams":{"home":{"id":408,"goals":2},"away":{"id":2064,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:26+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.01","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"501","handicap":null,"main":null,"suspended":false}]},{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.025","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"17","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":923307,"status":{"long":"Second Half","elapsed":94,"seconds":"93:53"}},"league":{"id":419,"season":2022},"teams":{"home":{"id":627,"goals":1},"away":{"id":556,"goals":3}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.03","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"15","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":1005534,"status":{"long":"Second Half","elapsed":90,"seconds":"90:00"}},"league":{"id":628,"season":2023},"teams":{"home":{"id":144,"goals":7},"away":{"id":7829,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T14:50:25+00:00","odds":[{"id":140,"name":"Which team will score the 9th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":975567,"status":{"long":"Second Half","elapsed":90,"seconds":"90:00"}},"league":{"id":476,"season":2023},"teams":{"home":{"id":10019,"goals":4},"away":{"id":18466,"goals":0}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T14:50:27+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":985577,"status":{"long":"Second Half","elapsed":95,"seconds":"95:16"}},"league":{"id":566,"season":2022},"teams":{"home":{"id":12177,"goals":1},"away":{"id":12179,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:09+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":1011373,"status":{"long":"Second Half","elapsed":90,"seconds":"90:26"}},"league":{"id":813,"season":2023},"teams":{"home":{"id":16525,"goals":0},"away":{"id":20799,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:20+00:00","odds":[{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"6.5","handicap":"2","main":null,"suspended":false},{"value":"Draw","odd":"1.111","handicap":"-2","main":null,"suspended":false},{"value":"Away","odd":"15","handicap":"-2","main":null,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.004","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.15","handicap":"3","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"3","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.083","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.275","handicap":"2","main":null,"suspended":false},{"value":"Away","odd":"3.55","handicap":"-2","main":null,"suspended":false}]}]},{"fixture":{"id":960374,"status":{"long":"Second Half","elapsed":94,"seconds":"93:50"}},"league":{"id":946,"season":2022},"teams":{"home":{"id":1486,"goals":1},"away":{"id":5732,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:26+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.071","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"10","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.03","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":943981,"status":{"long":"Second Half","elapsed":95,"seconds":"94:48"}},"league":{"id":93,"season":2022},"teams":{"home":{"id":6260,"goals":1},"away":{"id":3938,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":869158,"status":{"long":"Second Half","elapsed":93,"seconds":"92:38"}},"league":{"id":287,"season":2022},"teams":{"home":{"id":2641,"goals":3},"away":{"id":2652,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:27+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":943984,"status":{"long":"Second Half","elapsed":88,"seconds":"87:37"}},"league":{"id":93,"season":2022},"teams":{"home":{"id":1285,"goals":2},"away":{"id":19739,"goals":6}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"9","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"10","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.1","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.225","handicap":"9","main":null,"suspended":false}]},{"id":140,"name":"Which team will score the 9th goal?","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"9","handicap":"4","main":null,"suspended":false},{"value":"Draw","odd":"1.181","handicap":"-4","main":null,"suspended":false},{"value":"Away","odd":"6","handicap":"-4","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.375","handicap":"4","main":null,"suspended":false},{"value":"Away","odd":"1.55","handicap":"-4","main":null,"suspended":false}]}]},{"fixture":{"id":934389,"status":{"long":"Second Half","elapsed":92,"seconds":"91:56"}},"league":{"id":371,"season":2022},"teams":{"home":{"id":4333,"goals":0},"away":{"id":609,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:26+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.035","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":1011145,"status":{"long":"Second Half","elapsed":89,"seconds":"89:29"}},"league":{"id":901,"season":2023},"teams":{"home":{"id":10199,"goals":0},"away":{"id":9173,"goals":3}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":887961,"status":{"long":"Second Half","elapsed":92,"seconds":"91:34"}},"league":{"id":506,"season":2022},"teams":{"home":{"id":10535,"goals":0},"away":{"id":10534,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":934393,"status":{"long":"Second Half","elapsed":93,"seconds":"92:45"}},"league":{"id":371,"season":2022},"teams":{"home":{"id":4196,"goals":3},"away":{"id":4348,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:26+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":934390,"status":{"long":"Second Half","elapsed":92,"seconds":"91:52"}},"league":{"id":371,"season":2022},"teams":{"home":{"id":4329,"goals":1},"away":{"id":4331,"goals":4}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:25+00:00","odds":[{"id":127,"name":"Which team will score the 6th goal?","values":[{"value":"1","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":869156,"status":{"long":"Second Half","elapsed":92,"seconds":"91:39"}},"league":{"id":287,"season":2022},"teams":{"home":{"id":2631,"goals":0},"away":{"id":12316,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.03","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"15","handicap":null,"main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"1.03","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"15","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":1005648,"status":{"long":"Second Half","elapsed":89,"seconds":"88:40"}},"league":{"id":828,"season":2022},"teams":{"home":{"id":10626,"goals":3},"away":{"id":10657,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:27+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.275","handicap":"-3","main":null,"suspended":false},{"value":"Away","odd":"3.55","handicap":"3","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"6.4","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.115","handicap":"4","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"6","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"4","main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"11","handicap":"6","main":null,"suspended":false},{"value":"Exactly","odd":"3.4","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"6","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"7.5","handicap":"-3","main":null,"suspended":false},{"value":"Draw","odd":"1.083","handicap":"3","main":null,"suspended":false},{"value":"Away","odd":"17","handicap":"3","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.012","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"2.375","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":897368,"status":{"long":"Second Half","elapsed":92,"seconds":"92:22"}},"league":{"id":272,"season":2022},"teams":{"home":{"id":2406,"goals":1},"away":{"id":2418,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:26+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.05","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"1.045","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"11","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":897366,"status":{"long":"Second Half","elapsed":94,"seconds":"93:58"}},"league":{"id":272,"season":2022},"teams":{"home":{"id":2399,"goals":1},"away":{"id":2401,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.025","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":897367,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":272,"season":2022},"teams":{"home":{"id":2412,"goals":1},"away":{"id":5139,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":909334,"status":{"long":"Second Half","elapsed":89,"seconds":"89:08"}},"league":{"id":84,"season":2022},"teams":{"home":{"id":9344,"goals":1},"away":{"id":1655,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"4.333","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"2","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.45","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"2.675","handicap":"1","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.4","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"2","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"6","handicap":"-1","main":null,"suspended":false},{"value":"Draw","odd":"1.166","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"13","handicap":"1","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"67","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.04","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"9","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"9","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":959378,"status":{"long":"Second Half","elapsed":95,"seconds":"95:02"}},"league":{"id":585,"season":2022},"teams":{"home":{"id":12452,"goals":1},"away":{"id":12457,"goals":2}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:23+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.004","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":904879,"status":{"long":"Second Half","elapsed":93,"seconds":"92:47"}},"league":{"id":86,"season":2022},"teams":{"home":{"id":1663,"goals":0},"away":{"id":1652,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":905228,"status":{"long":"Second Half","elapsed":92,"seconds":"91:35"}},"league":{"id":87,"season":2022},"teams":{"home":{"id":9369,"goals":1},"away":{"id":1650,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T14:50:27+00:00","odds":[{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.035","handicap":null,"main":null,"suspended":false}]},{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":905224,"status":{"long":"Second Half","elapsed":91,"seconds":"90:36"}},"league":{"id":87,"season":2022},"teams":{"home":{"id":12897,"goals":0},"away":{"id":4259,"goals":2}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:21+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.04","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":898482,"status":{"long":"Second Half","elapsed":93,"seconds":"93:04"}},"league":{"id":510,"season":2022},"teams":{"home":{"id":12698,"goals":3},"away":{"id":10585,"goals":3}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T14:50:27+00:00","odds":[{"id":132,"name":"Which team will score the 7th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.012","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":998382,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":362,"season":2023},"teams":{"home":{"id":3858,"goals":0},"away":{"id":3874,"goals":4}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":997151,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":392,"season":2022},"teams":{"home":{"id":18269,"goals":5},"away":{"id":4604,"goals":0}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T14:50:24+00:00","odds":[{"id":127,"name":"Which team will score the 6th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":951867,"status":{"long":"Second Half","elapsed":98,"seconds":"97:58"}},"league":{"id":433,"season":2022},"teams":{"home":{"id":17542,"goals":0},"away":{"id":9546,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T15:30:21+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.01","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":946519,"status":{"long":"Second Half","elapsed":90,"seconds":"90:00"}},"league":{"id":303,"season":2022},"teams":{"home":{"id":2869,"goals":2},"away":{"id":20025,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T15:30:25+00:00","odds":[{"id":109,"name":"Which team will score the 4th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":947379,"status":{"long":"Halftime","elapsed":45,"seconds":"45:14"}},"league":{"id":458,"season":2022},"teams":{"home":{"id":17384,"goals":1},"away":{"id":4661,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":false},"update":"2023-03-05T16:28:50+00:00","odds":[{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"2.625","handicap":"3","main":null,"suspended":true},{"value":"Under","odd":"1.444","handicap":"3","main":null,"suspended":true},{"value":"Over","odd":"10.5","handicap":"5","main":null,"suspended":true},{"value":"Under","odd":"1.025","handicap":"5","main":null,"suspended":true},{"value":"Over","odd":"5.5","handicap":"4","main":null,"suspended":true},{"value":"Under","odd":"1.125","handicap":"4","main":null,"suspended":true},{"value":"Over","odd":"1.363","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"3","handicap":"2","main":null,"suspended":true}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"12","handicap":"7","main":null,"suspended":true},{"value":"Under","odd":"1.015","handicap":"7","main":null,"suspended":true},{"value":"Over","odd":"8","handicap":"6","main":null,"suspended":true},{"value":"Under","odd":"1.062","handicap":"6","main":null,"suspended":true},{"value":"Over","odd":"1.909","handicap":"4","main":null,"suspended":true},{"value":"Under","odd":"1.8","handicap":"4","main":null,"suspended":true},{"value":"Over","odd":"3.75","handicap":"5","main":null,"suspended":true},{"value":"Under","odd":"1.25","handicap":"5","main":null,"suspended":true},{"value":"Over","odd":"1.222","handicap":"3","main":null,"suspended":true},{"value":"Under","odd":"4","handicap":"3","main":null,"suspended":true}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.725","handicap":"0","main":false,"suspended":true},{"value":"Away","odd":"1.4","handicap":"0","main":false,"suspended":true},{"value":"Home","odd":"2.15","handicap":"1","main":false,"suspended":true},{"value":"Away","odd":"1.625","handicap":"-1","main":false,"suspended":true},{"value":"Home","odd":"1.575","handicap":"1","main":false,"suspended":true},{"value":"Away","odd":"2.25","handicap":"-1","main":false,"suspended":true},{"value":"Home","odd":"1.9","handicap":"1","main":true,"suspended":true},{"value":"Away","odd":"1.9","handicap":"-1","main":true,"suspended":true},{"value":"Home","odd":"1.425","handicap":"1","main":false,"suspended":true},{"value":"Away","odd":"2.625","handicap":"-1","main":false,"suspended":true}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.083","handicap":"3","main":false,"suspended":true},{"value":"Draw","odd":"11","handicap":"-3","main":false,"suspended":true},{"value":"Away","odd":"19","handicap":"-3","main":false,"suspended":true},{"value":"Home","odd":"2.2","handicap":"1","main":true,"suspended":true},{"value":"Draw","odd":"3.1","handicap":"-1","main":true,"suspended":true},{"value":"Away","odd":"3.1","handicap":"-1","main":true,"suspended":true},{"value":"Home","odd":"51","handicap":"-2","main":false,"suspended":true},{"value":"Draw","odd":"26","handicap":"2","main":false,"suspended":true},{"value":"Away","odd":"1.015","handicap":"2","main":false,"suspended":true},{"value":"Home","odd":"23","handicap":"-1","main":false,"suspended":true},{"value":"Draw","odd":"8","handicap":"1","main":false,"suspended":true},{"value":"Away","odd":"1.083","handicap":"1","main":false,"suspended":true},{"value":"Home","odd":"1.3","handicap":"2","main":false,"suspended":true},{"value":"Draw","odd":"4.75","handicap":"-2","main":false,"suspended":true},{"value":"Away","odd":"7","handicap":"-2","main":false,"suspended":true}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"34","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"9.5","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"4","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"9","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"3.6","handicap":null,"main":null,"suspended":true},{"value":"0-3","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"26","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"0-6","odd":"34","handicap":null,"main":null,"suspended":true},{"value":"1-6","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"0-7","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"1-7","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-8","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-6","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-7","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-8","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"3","handicap":null,"main":null,"suspended":true},{"value":"No","odd":"1.363","handicap":null,"main":null,"suspended":true}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"3","handicap":"2","main":null,"suspended":true},{"value":"Under","odd":"1.363","handicap":"2","main":null,"suspended":true},{"value":"Over","odd":"9","handicap":"3","main":null,"suspended":true},{"value":"Under","odd":"1.04","handicap":"3","main":null,"suspended":true}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"1.975","handicap":"4","main":true,"suspended":true},{"value":"Under","odd":"1.825","handicap":"4","main":true,"suspended":true},{"value":"Over","odd":"2.25","handicap":"4","main":false,"suspended":true},{"value":"Under","odd":"1.575","handicap":"4","main":false,"suspended":true},{"value":"Over","odd":"1.35","handicap":"3","main":false,"suspended":true},{"value":"Under","odd":"2.95","handicap":"3","main":false,"suspended":true},{"value":"Over","odd":"2.825","handicap":"4","main":false,"suspended":true},{"value":"Under","odd":"1.375","handicap":"4","main":false,"suspended":true},{"value":"Over","odd":"1.65","handicap":"3","main":false,"suspended":true},{"value":"Under","odd":"2.1","handicap":"3","main":false,"suspended":true}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"4.333","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"3","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"2.625","handicap":null,"main":null,"suspended":true},{"value":"3 or more","odd":"2.625","handicap":null,"main":null,"suspended":true}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"Draw","odd":"3","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"1.615","handicap":null,"main":null,"suspended":true}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"2.2","handicap":null,"main":null,"suspended":true},{"value":"Away or Draw","odd":"1.083","handicap":null,"main":null,"suspended":true},{"value":"Home or Away","odd":"1.363","handicap":null,"main":null,"suspended":true}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.909","handicap":null,"main":null,"suspended":true},{"value":"Even","odd":"1.8","handicap":null,"main":null,"suspended":true}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"Away","odd":"1.166","handicap":null,"main":null,"suspended":true}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"4","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.533","handicap":null,"main":null,"suspended":true}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":true},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":true}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"2.375","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.533","handicap":null,"main":null,"suspended":true}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.363","handicap":null,"main":null,"suspended":true},{"value":"No","odd":"3","handicap":null,"main":null,"suspended":true}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.5","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.363","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"3.5","handicap":null,"main":null,"suspended":true},{"value":"3 or more","odd":"9","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":866004,"status":{"long":"Second Half","elapsed":88,"seconds":"87:56"}},"league":{"id":383,"season":2022},"teams":{"home":{"id":657,"goals":1},"away":{"id":4501,"goals":3}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T20:10:28+00:00","odds":[{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"4.8","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.18","handicap":"5","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"5.9","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.13","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.15","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"5.5","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"3.6","handicap":"2","main":true,"suspended":false},{"value":"Away","odd":"1.28","handicap":"-2","main":true,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.015","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"21","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"601","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"34","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"6","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.125","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"5.5","handicap":"2","main":true,"suspended":false},{"value":"Draw","odd":"1.142","handicap":"-2","main":true,"suspended":false},{"value":"Away","odd":"21","handicap":"-2","main":true,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"6","handicap":"14","main":null,"suspended":false},{"value":"Exactly","odd":"4","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"14","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"15","main":null,"suspended":false},{"value":"Exactly","odd":"8","handicap":"15","main":null,"suspended":false},{"value":"Under","odd":"1.125","handicap":"15","main":null,"suspended":false},{"value":"Over","odd":"2.625","handicap":"13","main":null,"suspended":false},{"value":"Exactly","odd":"2.625","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"3.25","handicap":"13","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2.625","handicap":"14","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"14","main":null,"suspended":false}]},{"id":112,"name":"Which team will score the 5th goal?","values":[{"value":"1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"21","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"301","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.004","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.725","handicap":"13","main":null,"suspended":false},{"value":"Under","odd":"2.075","handicap":"13","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.125","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"5","main":null,"suspended":false}]}]},{"fixture":{"id":1006382,"status":{"long":"Second Half","elapsed":90,"seconds":"90:17"}},"league":{"id":626,"season":2023},"teams":{"home":{"id":10686,"goals":1},"away":{"id":18298,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T20:10:10+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":1005191,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":145,"season":2022},"teams":{"home":{"id":19045,"goals":1},"away":{"id":19047,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T20:10:01+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":923870,"status":{"long":"Second Half","elapsed":78,"seconds":"78:05"}},"league":{"id":197,"season":2022},"teams":{"home":{"id":619,"goals":5},"away":{"id":7513,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T20:10:28+00:00","odds":[{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"1.8","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.909","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"17","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"8","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"4.5","handicap":"-6","main":false,"suspended":false},{"value":"Away","odd":"1.19","handicap":"6","main":false,"suspended":false},{"value":"Home","odd":"2.6","handicap":"-6","main":false,"suspended":false},{"value":"Away","odd":"1.475","handicap":"6","main":false,"suspended":false},{"value":"Home","odd":"1.575","handicap":"-5","main":false,"suspended":false},{"value":"Away","odd":"2.35","handicap":"5","main":false,"suspended":false},{"value":"Home","odd":"2.125","handicap":"-6","main":true,"suspended":false},{"value":"Away","odd":"1.75","handicap":"6","main":true,"suspended":false}]},{"id":115,"name":"Player to be Booked","values":[{"value":"Alaixys Romao","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"Zinedine Machach","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Hugo Sousa","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"Simos Rouboulakou","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"Jose Alberto Canas","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Gomes Douglas","odd":"3.25","handicap":null,"main":null,"suspended":true},{"value":"Maximiliano Lovera","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"Sverrir Ingi Ingason","odd":"12","handicap":null,"main":null,"suspended":true},{"value":"Fabien Antunes","odd":"3.4","handicap":null,"main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"Junior Seba","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"Dimitro Chygrynskiy","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"Thomas Llamas Brandon","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"Ivan Nasberg","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"Vasilios Mantzis","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"Tomasz Kedziora","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"Luis Rafa Soares","odd":"26","handicap":null,"main":null,"suspended":true},{"value":"Filipe Tiago Dantas","odd":"19","handicap":null,"main":null,"suspended":true},{"value":"Khaled Narey","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"Giannis Konstantelias","odd":"13","handicap":null,"main":null,"suspended":true},{"value":"Lefteris Choutesiotis","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"Dominik Kotarski","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"Yusif Chibsah","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"Freda Taison","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"Omar El Kaddouri","odd":"19","handicap":null,"main":null,"suspended":true},{"value":"Stefanos Tzimas","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"Diego Biseswar","odd":"26","handicap":null,"main":null,"suspended":true}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"3.45","handicap":"6","main":false,"suspended":false},{"value":"Under","odd":"1.3","handicap":"6","main":false,"suspended":false},{"value":"Over","odd":"2.2","handicap":"6","main":false,"suspended":false},{"value":"Under","odd":"1.65","handicap":"6","main":false,"suspended":false},{"value":"Over","odd":"1.8","handicap":"6","main":true,"suspended":false},{"value":"Under","odd":"2.05","handicap":"6","main":true,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"10","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"6","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"2","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"2.875","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"4","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"4","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"3.5","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"11","main":null,"suspended":false}]},{"id":76,"name":"Corners European Handicap","values":[{"value":"Home","odd":"2.1","handicap":"-1","main":null,"suspended":false},{"value":"Draw","odd":"2.75","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"3.6","handicap":"1","main":null,"suspended":false}]},{"id":60,"name":"To Score 3 or More","values":[{"value":"Thomas Llamas Brandon","odd":"34","handicap":null,"main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Khaled Narey","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Giannis Konstantelias","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Gomes Douglas","odd":"251","handicap":null,"main":null,"suspended":true},{"value":"Filipe Tiago Dantas","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Sverrir Ingi Ingason","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Tomasz Kedziora","odd":"201","handicap":null,"main":null,"suspended":false},{"value":"Vasilios Mantzis","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Luis Rafa Soares","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Maximiliano Lovera","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Ivan Nasberg","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Zinedine Machach","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Junior Seba","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Fabien Antunes","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Jose Alberto Canas","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Alaixys Romao","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Hugo Sousa","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Simos Rouboulakou","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Dimitro Chygrynskiy","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Yusif Chibsah","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Freda Taison","odd":"201","handicap":null,"main":null,"suspended":false},{"value":"Omar El Kaddouri","odd":"301","handicap":null,"main":null,"suspended":false},{"value":"Stefanos Tzimas","odd":"126","handicap":null,"main":null,"suspended":false},{"value":"Diego Biseswar","odd":"501","handicap":null,"main":null,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"6.5","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"21","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"5-1","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":false},{"value":"6-0","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"6-1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"6-2","odd":"151","handicap":null,"main":null,"suspended":false},{"value":"7-0","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"7-1","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"7-2","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"8-0","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"8-1","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"0-0","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"15","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"0-3","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"251","handicap":null,"main":null,"suspended":true},{"value":"5-3","odd":"251","handicap":null,"main":null,"suspended":true},{"value":"9-0","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"6-3","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"8-2","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"9-1","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"4-4","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"10-0","odd":"251","handicap":null,"main":null,"suspended":true},{"value":"7-3","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"10-1","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"9-2","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"11-0","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"11-1","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"8-3","odd":"351","handicap":null,"main":null,"suspended":true},{"value":"12-0","odd":"351","handicap":null,"main":null,"suspended":true}]},{"id":46,"name":"Goal Scorer","values":[{"value":"Khaled Narey","odd":"6","handicap":"6","main":null,"suspended":true},{"value":"Thomas Llamas Brandon","odd":"6.5","handicap":"6","main":null,"suspended":true},{"value":"Gomes Douglas","odd":"13","handicap":"6","main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"9.5","handicap":"6","main":null,"suspended":false},{"value":"Filipe Tiago Dantas","odd":"21","handicap":"6","main":null,"suspended":false},{"value":"Sverrir Ingi Ingason","odd":"29","handicap":"6","main":null,"suspended":false},{"value":"Giannis Konstantelias","odd":"12","handicap":"6","main":null,"suspended":true},{"value":"Tomasz Kedziora","odd":"34","handicap":"6","main":null,"suspended":false},{"value":"Luis Rafa Soares","odd":"34","handicap":"6","main":null,"suspended":false},{"value":"Ivan Nasberg","odd":"34","handicap":"6","main":null,"suspended":false},{"value":"Maximiliano Lovera","odd":"29","handicap":"6","main":null,"suspended":false},{"value":"Vasilios Mantzis","odd":"29","handicap":"6","main":null,"suspended":false},{"value":"Junior Seba","odd":"41","handicap":"6","main":null,"suspended":false},{"value":"Yusif Chibsah","odd":"51","handicap":"6","main":null,"suspended":false},{"value":"Jose Alberto Canas","odd":"101","handicap":"6","main":null,"suspended":false},{"value":"Alaixys Romao","odd":"101","handicap":"6","main":null,"suspended":false},{"value":"Hugo Sousa","odd":"126","handicap":"6","main":null,"suspended":false},{"value":"Simos Rouboulakou","odd":"126","handicap":"6","main":null,"suspended":false},{"value":"Dimitro Chygrynskiy","odd":"126","handicap":"6","main":null,"suspended":false},{"value":"No 6th Goal","odd":"1.909","handicap":"6","main":null,"suspended":false},{"value":"Freda Taison","odd":"8.5","handicap":"6","main":null,"suspended":false},{"value":"Omar El Kaddouri","odd":"11","handicap":"6","main":null,"suspended":false},{"value":"Stefanos Tzimas","odd":"6.5","handicap":"6","main":null,"suspended":false},{"value":"Diego Biseswar","odd":"15","handicap":"6","main":null,"suspended":false}]},{"id":146,"name":"Method of 6th Goal","values":[{"value":"Shot","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"Header","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Penalty","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"Free kick","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Own goal","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.909","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"23","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"1.909","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"6.5","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"7","main":null,"suspended":false}]},{"id":78,"name":"Corners 1x2","values":[{"value":"Home","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"9","handicap":null,"main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"1.03","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"51","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.3","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"101","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.02","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.062","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"10","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.05","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.75","handicap":"11","main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"1.909","handicap":"80","main":null,"suspended":false},{"value":"Goals\/Under 0.5","odd":"1.8","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Over 1.5","odd":"2.375","handicap":"80","main":null,"suspended":false},{"value":"Corners\/Under 1.5","odd":"1.533","handicap":"80","main":null,"suspended":false},{"value":"Cards\/Over 0.5","odd":"2","handicap":"80","main":null,"suspended":false},{"value":"Cards\/Under 0.5","odd":"1.727","handicap":"80","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"67","handicap":"-8","main":false,"suspended":false},{"value":"Draw","odd":"26","handicap":"8","main":false,"suspended":false},{"value":"Away","odd":"1.015","handicap":"8","main":false,"suspended":false},{"value":"Home","odd":"23","handicap":"-7","main":false,"suspended":false},{"value":"Draw","odd":"8","handicap":"7","main":false,"suspended":false},{"value":"Away","odd":"1.09","handicap":"7","main":false,"suspended":false},{"value":"Home","odd":"6.5","handicap":"-6","main":true,"suspended":false},{"value":"Draw","odd":"2.75","handicap":"6","main":true,"suspended":false},{"value":"Away","odd":"1.666","handicap":"6","main":true,"suspended":false},{"value":"Home","odd":"1.952","handicap":"-5","main":false,"suspended":false},{"value":"Draw","odd":"1.833","handicap":"5","main":false,"suspended":false},{"value":"Away","odd":"17","handicap":"5","main":false,"suspended":false},{"value":"Home","odd":"1.03","handicap":"-4","main":false,"suspended":false},{"value":"Draw","odd":"15","handicap":"4","main":false,"suspended":false},{"value":"Away","odd":"126","handicap":"4","main":false,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.3","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.4","handicap":null,"main":null,"suspended":false}]},{"id":53,"name":"To Score 2 or More","values":[{"value":"Thomas Llamas Brandon","odd":"4.5","handicap":null,"main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Khaled Narey","odd":"19","handicap":null,"main":null,"suspended":true},{"value":"Giannis Konstantelias","odd":"7.5","handicap":null,"main":null,"suspended":true},{"value":"Gomes Douglas","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Filipe Tiago Dantas","odd":"126","handicap":null,"main":null,"suspended":false},{"value":"Sverrir Ingi Ingason","odd":"201","handicap":null,"main":null,"suspended":false},{"value":"Tomasz Kedziora","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Vasilios Mantzis","odd":"151","handicap":null,"main":null,"suspended":false},{"value":"Luis Rafa Soares","odd":"251","handicap":null,"main":null,"suspended":false},{"value":"Maximiliano Lovera","odd":"201","handicap":null,"main":null,"suspended":false},{"value":"Ivan Nasberg","odd":"251","handicap":null,"main":null,"suspended":false},{"value":"Zinedine Machach","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Junior Seba","odd":"301","handicap":null,"main":null,"suspended":false},{"value":"Fabien Antunes","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Jose Alberto Canas","odd":"501","handicap":null,"main":null,"suspended":true},{"value":"Alaixys Romao","odd":"501","handicap":null,"main":null,"suspended":true},{"value":"Hugo Sousa","odd":"501","handicap":null,"main":null,"suspended":true},{"value":"Simos Rouboulakou","odd":"501","handicap":null,"main":null,"suspended":true},{"value":"Dimitro Chygrynskiy","odd":"501","handicap":null,"main":null,"suspended":true},{"value":"Yusif Chibsah","odd":"501","handicap":null,"main":null,"suspended":false},{"value":"Freda Taison","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Omar El Kaddouri","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Stefanos Tzimas","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Diego Biseswar","odd":"101","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.012","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"11","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":118,"name":"Player to be Sent Off","values":[{"value":"Maximiliano Lovera","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Zinedine Machach","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"Hugo Sousa","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Simos Rouboulakou","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Jose Alberto Canas","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"Alaixys Romao","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"Sverrir Ingi Ingason","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Fabien Antunes","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"Junior Seba","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Gomes Douglas","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"Thomas Llamas Brandon","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Vasilios Mantzis","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Dimitro Chygrynskiy","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Ivan Nasberg","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"Tomasz Kedziora","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"Giannis Konstantelias","odd":"251","handicap":null,"main":null,"suspended":true},{"value":"Lefteris Choutesiotis","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"Luis Rafa Soares","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"Filipe Tiago Dantas","odd":"301","handicap":null,"main":null,"suspended":true},{"value":"Khaled Narey","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Dominik Kotarski","odd":"451","handicap":null,"main":null,"suspended":true},{"value":"Yusif Chibsah","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Freda Taison","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Omar El Kaddouri","odd":"151","handicap":null,"main":null,"suspended":true},{"value":"Stefanos Tzimas","odd":"201","handicap":null,"main":null,"suspended":true},{"value":"Diego Biseswar","odd":"301","handicap":null,"main":null,"suspended":true}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.727","handicap":"11","main":null,"suspended":false}]},{"id":119,"name":"Total Cards","values":[{"value":"Over","odd":"1.833","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"5","main":null,"suspended":false}]},{"id":108,"name":"Which team will score the 11th corner? (2 Way)","values":[{"value":"1","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":127,"name":"Which team will score the 6th goal?","values":[{"value":"1","odd":"1.952","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":63,"name":"Anytime Goal Scorer","values":[{"value":"Thomas Llamas Brandon","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Andrija Zivkovic","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Khaled Narey","odd":"3.4","handicap":null,"main":null,"suspended":true},{"value":"Giannis Konstantelias","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Gomes Douglas","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"Filipe Tiago Dantas","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Sverrir Ingi Ingason","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"Tomasz Kedziora","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Vasilios Mantzis","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"Maximiliano Lovera","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Luis Rafa Soares","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Ivan Nasberg","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Zinedine Machach","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"Junior Seba","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Fabien Antunes","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"Jose Alberto Canas","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Alaixys Romao","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Hugo Sousa","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Simos Rouboulakou","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"Dimitro Chygrynskiy","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"No 1st Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No 2nd Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No 3rd Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No 4th Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No 5th Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Yusif Chibsah","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"No 6th Goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Freda Taison","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Omar El Kaddouri","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Stefanos Tzimas","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"Diego Biseswar","odd":"10","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":976444,"status":{"long":"Second Half","elapsed":78,"seconds":"78:19"}},"league":{"id":610,"season":2023},"teams":{"home":{"id":1222,"goals":0},"away":{"id":7771,"goals":2}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T20:10:22+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3.9","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.22","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.275","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"3.4","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.7","handicap":"2","main":true,"suspended":false},{"value":"Away","odd":"2.1","handicap":"-2","main":true,"suspended":false},{"value":"Home","odd":"1.16","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"4.8","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"2.825","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.375","handicap":"-2","main":false,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"4","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"4","main":null,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"3.5","handicap":null,"main":null,"suspended":false}]},{"id":61,"name":"Race to the 5th corner?","values":[{"value":"1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.142","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"26","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"19","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"4.5","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.181","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.012","handicap":"4","main":false,"suspended":false},{"value":"Draw","odd":"29","handicap":"-4","main":false,"suspended":false},{"value":"Away","odd":"81","handicap":"-4","main":false,"suspended":false},{"value":"Home","odd":"4","handicap":"2","main":true,"suspended":false},{"value":"Draw","odd":"1.533","handicap":"-2","main":true,"suspended":false},{"value":"Away","odd":"4.75","handicap":"-2","main":true,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"6","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"3-0","odd":"23","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"3-2","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"41","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"4","handicap":null,"main":null,"suspended":true},{"value":"2-2","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"2.75","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"1.615","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"1-3","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"1-4","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"1-5","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-6","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-6","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Away\/No","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.285","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"11","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.02","handicap":"2","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"7","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.083","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"2.2","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.615","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.181","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.008","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"2.25","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"4","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.02","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.833","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"6","main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.444","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5.6","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.125","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"2.2","handicap":"3","main":true,"suspended":false},{"value":"Under","odd":"1.65","handicap":"3","main":true,"suspended":false},{"value":"Over","odd":"2.825","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.375","handicap":"3","main":false,"suspended":false}]},{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"3.6","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.615","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.285","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.285","handicap":null,"main":null,"suspended":false}]},{"id":86,"name":"Which team will score the 6th corner? (2 Way)","values":[{"value":"1","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.1","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.25","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.9","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.9","handicap":"6","main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"9","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.25","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"3.75","handicap":"6","main":null,"suspended":false},{"value":"Exactly","odd":"3.4","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.833","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"1.833","handicap":"5","main":null,"suspended":false},{"value":"Exactly","odd":"3","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"4.5","handicap":"5","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.285","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":987718,"status":{"long":"Second Half","elapsed":81,"seconds":"81:26"}},"league":{"id":627,"season":2023},"teams":{"home":{"id":2207,"goals":1},"away":{"id":1219,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-05T20:10:12+00:00","odds":[{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.23","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"3.8","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.7","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"2.1","handicap":"1","main":true,"suspended":false},{"value":"Home","odd":"4.45","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.18","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"1.13","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"5.4","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"3.075","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.325","handicap":"1","main":false,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":93,"name":"Which team will score the 10th corner? (2 Way)","values":[{"value":"1","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.4","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.6","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.475","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"3.5","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.26","handicap":"2","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-0","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-2","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"2.75","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"51","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"0-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"101","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"4.333","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"15","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"3","main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"4.5","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"3.6","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"11","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"6.5","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.181","handicap":"11","main":null,"suspended":false},{"value":"Over","odd":"2.1","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"2.75","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"3.75","handicap":"9","main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2.15","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.675","handicap":"10","main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"26","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.062","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"29","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.166","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.004","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"17","handicap":null,"main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"2.625","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"10","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.03","handicap":"3","main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"101","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"34","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.01","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"29","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"5","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.166","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"4.333","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"1.4","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"6","handicap":"1","main":true,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.285","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.142","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"2.75","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"5","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"2.1","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.666","handicap":"10","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.8","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"15","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":985129,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":281,"season":2023},"teams":{"home":{"id":2539,"goals":0},"away":{"id":2553,"goals":1}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-05T22:30:08+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":985131,"status":{"long":"Second Half","elapsed":101,"seconds":"101:10"}},"league":{"id":281,"season":2023},"teams":{"home":{"id":2540,"goals":1},"away":{"id":2554,"goals":0}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-05T22:30:24+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.002","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":1011193,"status":{"long":"Second Half","elapsed":98,"seconds":"98:15"}},"league":{"id":606,"season":2023},"teams":{"home":{"id":1194,"goals":1},"away":{"id":7833,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-06T00:00:31+00:00","odds":[{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.05","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.025","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"501","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":1003604,"status":{"long":"Second Half","elapsed":46,"seconds":"45:35"}},"league":{"id":390,"season":2022},"teams":{"home":{"id":7516,"goals":0},"away":{"id":4576,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-11T13:19:51+00:00","odds":[{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"10.5","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.071","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"11","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"23","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.363","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"4","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"8","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"51","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"26","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.015","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"21","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.071","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"7.5","handicap":"-1","main":true,"suspended":false},{"value":"Draw","odd":"4","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"1.363","handicap":"1","main":true,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"4-1","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"4-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"1-3","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"1-4","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-5","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"2.2","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.615","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"4.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"9","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.04","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"1.285","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"3.5","handicap":"1","main":null,"suspended":false}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"3.5","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.3","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.55","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.375","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.825","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"2.725","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"1.4","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.85","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.95","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"1.5","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"2.4","handicap":"0","main":false,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"10.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"3","main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.25","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"2.2","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.6","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"1.35","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"2.95","handicap":"1","main":false,"suspended":false},{"value":"Over","odd":"1.525","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"2.35","handicap":"1","main":false,"suspended":false},{"value":"Over","odd":"1.9","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.9","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"2.625","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.425","handicap":"2","main":false,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"10.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"4.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"2","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"2.875","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"3","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"2.375","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.5","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"10.5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.25","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.833","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.363","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.5","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"2.375","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.5","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":1002967,"status":{"long":"Match Finished","elapsed":90,"seconds":"90:00"}},"league":{"id":845,"season":2022},"teams":{"home":{"id":10531,"goals":2},"away":{"id":16802,"goals":3}},"status":{"stopped":true,"blocked":true,"finished":true},"update":"2023-03-20T18:00:49+00:00","odds":[{"id":127,"name":"Which team will score the 6th goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":889461,"status":{"long":"Second Half","elapsed":101,"seconds":"101:01"}},"league":{"id":205,"season":2022},"teams":{"home":{"id":7411,"goals":1},"away":{"id":7420,"goals":1}},"status":{"stopped":false,"blocked":true,"finished":false},"update":"2023-03-20T18:00:42+00:00","odds":[{"id":92,"name":"Which team will score the 3rd goal?","values":[{"value":"1","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"No goal","odd":"1.012","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"0","handicap":null,"main":null,"suspended":true}]}]},{"fixture":{"id":953547,"status":{"long":"Second Half","elapsed":99,"seconds":"99:20"}},"league":{"id":311,"season":2022},"teams":{"home":{"id":3317,"goals":0},"away":{"id":3326,"goals":1}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-20T18:00:47+00:00","odds":[{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"5.75","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.14","handicap":"2","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"1.85","handicap":"1","main":null,"suspended":false},{"value":"Away","odd":"1.95","handicap":"-1","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"11","handicap":"1","main":null,"suspended":false},{"value":"Draw","odd":"1.1","handicap":"-1","main":null,"suspended":false},{"value":"Away","odd":"9.5","handicap":"-1","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.125","handicap":"2","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.05","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"8.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"8.5","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"5.5","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.05","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":885005,"status":{"long":"Halftime","elapsed":45,"seconds":"45:00"}},"league":{"id":204,"season":2022},"teams":{"home":{"id":3602,"goals":1},"away":{"id":3583,"goals":0}},"status":{"stopped":true,"blocked":false,"finished":false},"update":"2023-03-20T18:00:38+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"3.75","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"1.571","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"2.25","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"4.75","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"2.2","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"1.615","handicap":"6","main":null,"suspended":false},{"value":"Exactly","odd":"4.5","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"3.75","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"1.25","handicap":"5","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"10","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"6.5","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"1.25","handicap":"9","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.615","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"2.2","handicap":"7","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"3.3","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.325","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"1.275","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"3.55","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.95","handicap":"-2","main":true,"suspended":false},{"value":"Away","odd":"1.85","handicap":"2","main":true,"suspended":false},{"value":"Home","odd":"1.6","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"2.3","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"2.3","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"1.6","handicap":"2","main":false,"suspended":false}]},{"id":41,"name":"1x2 - 50 minutes","values":[{"value":"Home","odd":"1.02","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"501","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"1.727","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false}]},{"id":61,"name":"Race to the 5th corner?","values":[{"value":"1","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.666","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.95","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.85","handicap":"7","main":null,"suspended":false}]},{"id":90,"name":"2nd Goal in Interval","values":[{"value":"Yes","odd":"6.5","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.1","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"1.833","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"2.75","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.4","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"1.5","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"2.5","handicap":"80","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"1.5","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"2.5","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"1.875","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.925","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"1.35","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"3.1","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.25","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.625","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"2.675","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.45","handicap":"3","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"3.5","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"4-1","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"4-2","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"4-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-0","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"5-1","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"3.75","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-1","odd":"8","handicap":null,"main":null,"suspended":true},{"value":"0-2","odd":"29","handicap":null,"main":null,"suspended":true},{"value":"1-2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-3","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"101","handicap":null,"main":null,"suspended":true},{"value":"1-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"3-4","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"1-5","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"6-0","odd":"126","handicap":null,"main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"4.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.5","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"1.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"2.5","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"10","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.062","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"3.4","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.3","handicap":"3","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.012","handicap":"1","main":false,"suspended":false},{"value":"Draw","odd":"26","handicap":"-1","main":false,"suspended":false},{"value":"Away","odd":"67","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"34","handicap":"-4","main":false,"suspended":false},{"value":"Draw","odd":"15","handicap":"4","main":false,"suspended":false},{"value":"Away","odd":"1.035","handicap":"4","main":false,"suspended":false},{"value":"Home","odd":"12","handicap":"-3","main":false,"suspended":false},{"value":"Draw","odd":"6","handicap":"3","main":false,"suspended":false},{"value":"Away","odd":"1.166","handicap":"3","main":false,"suspended":false},{"value":"Home","odd":"4.333","handicap":"-2","main":true,"suspended":false},{"value":"Draw","odd":"3","handicap":"2","main":true,"suspended":false},{"value":"Away","odd":"1.8","handicap":"2","main":true,"suspended":false},{"value":"Home","odd":"1.909","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"2.5","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"6","handicap":"1","main":false,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.166","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"1.285","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"3.5","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"13","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.04","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"2.2","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.615","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"6","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.071","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"3","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"51","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.01","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"1.125","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"23","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.012","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"1.444","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.625","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.8","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.909","handicap":null,"main":null,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"11","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.05","handicap":"2","main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"1.02","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"19","handicap":null,"main":null,"suspended":false}]},{"id":50,"name":"1x2 - 60 minutes","values":[{"value":"Home","odd":"1.055","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"101","handicap":null,"main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"3.75","handicap":"50","main":null,"suspended":false},{"value":"Goals\/Under 0.5","odd":"1.25","handicap":"50","main":null,"suspended":false},{"value":"Corners\/Over 0.5","odd":"1.727","handicap":"50","main":null,"suspended":false},{"value":"Corners\/Under 0.5","odd":"2","handicap":"50","main":null,"suspended":false}]},{"id":52,"name":"1x2 - 80 minutes","values":[{"value":"Home","odd":"1.1","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"34","handicap":null,"main":null,"suspended":false}]},{"id":87,"name":"Which team will score the 5th corner? (2 Way)","values":[{"value":"1","odd":"1.533","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.375","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.444","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.222","handicap":null,"main":null,"suspended":false}]},{"id":56,"name":"1x2 - 70 minutes","values":[{"value":"Home","odd":"1.083","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"41","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3.75","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"4","handicap":null,"main":null,"suspended":false}]},{"id":47,"name":"Away 1st Goal in Interval","values":[{"value":"Yes","odd":"7","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.083","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"4.5","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.166","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"11","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.02","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"3.5","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"1.285","handicap":"80","main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"2.625","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.444","handicap":null,"main":null,"suspended":false}]},{"id":95,"name":"Home 2nd Goal in Interval","values":[{"value":"Yes","odd":"3.75","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.25","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"2.5","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.5","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"8","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.062","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"1.833","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"1.833","handicap":"80","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"2.625","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"3.4","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":1015772,"status":{"long":"Halftime","elapsed":45,"seconds":"45:00"}},"league":{"id":895,"season":2022},"teams":{"home":{"id":1572,"goals":0},"away":{"id":15736,"goals":1}},"status":{"stopped":true,"blocked":false,"finished":false},"update":"2023-03-20T18:00:30+00:00","odds":[{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"1.285","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"6","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"7","handicap":"8","main":null,"suspended":false},{"value":"Over","odd":"5.5","handicap":"12","main":null,"suspended":false},{"value":"Exactly","odd":"7.5","handicap":"12","main":null,"suspended":false},{"value":"Under","odd":"1.285","handicap":"12","main":null,"suspended":false},{"value":"Over","odd":"2.25","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"5.5","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"3.5","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"6","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.571","handicap":"11","main":null,"suspended":false},{"value":"Over","odd":"1.666","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"3.5","handicap":"9","main":null,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"8","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.062","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"2.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.5","handicap":"2","main":null,"suspended":false}]},{"id":41,"name":"1x2 - 50 minutes","values":[{"value":"Home","odd":"251","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"10","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.045","handicap":null,"main":null,"suspended":false}]},{"id":85,"name":"Which team will score the 2nd goal?","values":[{"value":"1","odd":"1.952","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.4","handicap":null,"main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.625","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.425","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"2.15","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.625","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.375","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.825","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.8","handicap":"1","main":true,"suspended":false},{"value":"Away","odd":"2","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.26","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"3.5","handicap":"-1","main":false,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.666","handicap":null,"main":null,"suspended":false}]},{"id":61,"name":"Race to the 5th corner?","values":[{"value":"1","odd":"1.222","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"6.5","handicap":null,"main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.025","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"19","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"51","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"2.1","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"2.375","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"4.5","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"41","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"21","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.025","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"15","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"7","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.111","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.166","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"5.5","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"15","handicap":"-2","main":false,"suspended":false}]},{"id":90,"name":"2nd Goal in Interval","values":[{"value":"Yes","odd":"7","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.083","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"2","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.727","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"3","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.363","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"1.571","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"2.25","handicap":"80","main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"1.6","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"2.2","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.05","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.75","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"1.4","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"2.725","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.35","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.525","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"2.95","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.35","handicap":"3","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"17","handicap":null,"main":null,"suspended":true},{"value":"2-0","odd":"34","handicap":null,"main":null,"suspended":true},{"value":"2-1","odd":"8","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"81","handicap":null,"main":null,"suspended":true},{"value":"3-1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"67","handicap":null,"main":null,"suspended":true},{"value":"4-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"4-2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"5-0","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"5-1","odd":"126","handicap":null,"main":null,"suspended":true},{"value":"0-0","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"1-1","odd":"3.6","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"0-1","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"7.5","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"1-3","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"1-4","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"126","handicap":null,"main":null,"suspended":true}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"0","handicap":null,"main":null,"suspended":true},{"value":"Away\/No","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"0","handicap":null,"main":null,"suspended":true}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.1","handicap":null,"main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"4.333","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.2","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"9","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.04","handicap":"3","main":null,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"5.5","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.125","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"1.333","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"3.25","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"10.5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"2.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.5","handicap":"3","main":null,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"2.375","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"4.5","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"2","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"7","handicap":null,"main":null,"suspended":true},{"value":"1","odd":"1.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"8","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.142","handicap":null,"main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.666","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.111","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":88,"name":"Which team will score the 7th corner? (2 Way)","values":[{"value":"1","odd":"1.3","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.4","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.727","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"2","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":50,"name":"1x2 - 60 minutes","values":[{"value":"Home","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"4.75","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.142","handicap":null,"main":null,"suspended":false}]},{"id":65,"name":"Next 10 Minutes Total","values":[{"value":"Goals\/Over 0.5","odd":"4","handicap":"50","main":null,"suspended":false},{"value":"Goals\/Under 0.5","odd":"1.222","handicap":"50","main":null,"suspended":false},{"value":"Corners\/Over 0.5","odd":"1.5","handicap":"50","main":null,"suspended":false},{"value":"Corners\/Under 0.5","odd":"2.5","handicap":"50","main":null,"suspended":false}]},{"id":52,"name":"1x2 - 80 minutes","values":[{"value":"Home","odd":"8.5","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.444","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.1","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":56,"name":"1x2 - 70 minutes","values":[{"value":"Home","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"3.6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.3","handicap":null,"main":null,"suspended":false}]},{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.25","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"1.975","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.825","handicap":"10","main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"1.952","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"10","handicap":null,"main":null,"suspended":true},{"value":"2","odd":"1.727","handicap":null,"main":null,"suspended":false}]},{"id":91,"name":"Away 2nd Goal in Interval","values":[{"value":"Yes","odd":"11","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.02","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"4.333","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"6.5","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.1","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"3.4","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"1.3","handicap":"80","main":null,"suspended":false}]},{"id":54,"name":"Home 1st Goal in Interval","values":[{"value":"Yes","odd":"8.5","handicap":"50","main":null,"suspended":false},{"value":"No","odd":"1.05","handicap":"50","main":null,"suspended":false},{"value":"Yes","odd":"2.75","handicap":"70","main":null,"suspended":false},{"value":"No","odd":"1.4","handicap":"70","main":null,"suspended":false},{"value":"Yes","odd":"4.333","handicap":"60","main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":"60","main":null,"suspended":false},{"value":"Yes","odd":"2.1","handicap":"80","main":null,"suspended":false},{"value":"No","odd":"1.666","handicap":"80","main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.5","handicap":null,"main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.666","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"2.1","handicap":"10","main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"2.1","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"9","handicap":null,"main":null,"suspended":false}]}]},{"fixture":{"id":879386,"status":{"long":"First Half","elapsed":0,"seconds":"00:26"}},"league":{"id":80,"season":2022},"teams":{"home":{"id":184,"goals":0},"away":{"id":183,"goals":0}},"status":{"stopped":false,"blocked":false,"finished":false},"update":"2023-03-20T18:01:01+00:00","odds":[{"id":15,"name":"Last Corner","values":[{"value":"1","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.8","handicap":null,"main":null,"suspended":false}]},{"id":16,"name":"How many goals will Away Team score?","values":[{"value":"No goal","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"2.75","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"4","handicap":null,"main":null,"suspended":false}]},{"id":17,"name":"Asian Handicap (1st Half)","values":[{"value":"Home","odd":"2.2","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.65","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"1.65","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"2.2","handicap":"0","main":true,"suspended":false},{"value":"Home","odd":"1.275","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"3.55","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"2.85","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.4","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.45","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.675","handicap":"-1","main":false,"suspended":false}]},{"id":19,"name":"1x2 (1st Half)","values":[{"value":"Home","odd":"3.6","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"2.25","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.75","handicap":null,"main":null,"suspended":false}]},{"id":20,"name":"Match Corners","values":[{"value":"Over","odd":"2.625","handicap":"10","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"10","main":null,"suspended":false},{"value":"Over","odd":"3.5","handicap":"11","main":null,"suspended":false},{"value":"Exactly","odd":"8","handicap":"11","main":null,"suspended":false},{"value":"Under","odd":"1.444","handicap":"11","main":null,"suspended":false},{"value":"Over","odd":"1.333","handicap":"7","main":null,"suspended":false},{"value":"Exactly","odd":"7.5","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"5","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"1.909","handicap":"9","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"9","main":null,"suspended":false},{"value":"Under","odd":"2.25","handicap":"9","main":null,"suspended":false},{"value":"Over","odd":"1.571","handicap":"8","main":null,"suspended":false},{"value":"Exactly","odd":"7","handicap":"8","main":null,"suspended":false},{"value":"Under","odd":"3.25","handicap":"8","main":null,"suspended":false}]},{"id":21,"name":"3-Way Handicap","values":[{"value":"Home","odd":"1.2","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"6","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"8","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.666","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"4","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"4","handicap":"-1","main":true,"suspended":false},{"value":"Home","odd":"1.062","handicap":"3","main":false,"suspended":false},{"value":"Draw","odd":"13","handicap":"-3","main":false,"suspended":false},{"value":"Away","odd":"21","handicap":"-3","main":false,"suspended":false},{"value":"Home","odd":"17","handicap":"-2","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"2","main":false,"suspended":false},{"value":"Away","odd":"1.09","handicap":"2","main":false,"suspended":false},{"value":"Home","odd":"6.5","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"5","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.333","handicap":"1","main":false,"suspended":false}]},{"id":23,"name":"Final Score","values":[{"value":"1-0","odd":"12","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"23","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"29","handicap":null,"main":null,"suspended":false},{"value":"4-0","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"4-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"4-2","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"4-3","odd":"81","handicap":null,"main":null,"suspended":false},{"value":"5-1","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"5-2","odd":"126","handicap":null,"main":null,"suspended":false},{"value":"0-0","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"6","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"3-3","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"4-4","odd":"126","handicap":null,"main":null,"suspended":false},{"value":"0-1","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"9","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"19","handicap":null,"main":null,"suspended":false},{"value":"1-3","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"1-4","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"2-4","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"3-4","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"0-5","odd":"67","handicap":null,"main":null,"suspended":false},{"value":"1-5","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"2-5","odd":"81","handicap":null,"main":null,"suspended":false}]},{"id":24,"name":"Over\/Under Line (1st Half)","values":[{"value":"Over","odd":"1.7","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"2.1","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"2.1","handicap":"1","main":true,"suspended":false},{"value":"Under","odd":"1.7","handicap":"1","main":true,"suspended":false},{"value":"Over","odd":"3.3","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.325","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"1.45","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"2.675","handicap":"1","main":false,"suspended":false},{"value":"Over","odd":"2.5","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"1.5","handicap":"2","main":false,"suspended":false}]},{"id":25,"name":"Match Goals","values":[{"value":"Over","odd":"1.222","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"4","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"23","handicap":"7","main":null,"suspended":false},{"value":"Under","odd":"1.012","handicap":"7","main":null,"suspended":false},{"value":"Over","odd":"1.727","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"5.5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.142","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"2.75","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.4","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"11","handicap":"6","main":null,"suspended":false},{"value":"Under","odd":"1.05","handicap":"6","main":null,"suspended":false},{"value":"Over","odd":"1.04","handicap":"1","main":null,"suspended":false},{"value":"Under","odd":"13","handicap":"1","main":null,"suspended":false}]},{"id":26,"name":"European Handicap (1st Half)","values":[{"value":"Home","odd":"12","handicap":"-1","main":false,"suspended":false},{"value":"Draw","odd":"4.333","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"1.25","handicap":"1","main":false,"suspended":false},{"value":"Home","odd":"1.062","handicap":"2","main":false,"suspended":false},{"value":"Draw","odd":"10","handicap":"-2","main":false,"suspended":false},{"value":"Away","odd":"29","handicap":"-2","main":false,"suspended":false},{"value":"Home","odd":"1.4","handicap":"1","main":true,"suspended":false},{"value":"Draw","odd":"3.6","handicap":"-1","main":true,"suspended":false},{"value":"Away","odd":"8","handicap":"-1","main":true,"suspended":false}]},{"id":27,"name":"Home Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.8","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.909","handicap":null,"main":null,"suspended":false}]},{"id":28,"name":"Home Team to Score in Both Halves","values":[{"value":"Yes","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.222","handicap":null,"main":null,"suspended":false}]},{"id":29,"name":"Result \/ Both Teams To Score","values":[{"value":"Home\/Yes","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/Yes","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"Draw\/Yes","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"Home\/No","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"Away\/No","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"Draw\/No","odd":"13","handicap":null,"main":null,"suspended":false}]},{"id":75,"name":"Which team will score the 2nd corner? (2 Way)","values":[{"value":"1","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.8","handicap":null,"main":null,"suspended":false}]},{"id":30,"name":"Both Teams To Score (1st Half)","values":[{"value":"Yes","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.222","handicap":null,"main":null,"suspended":false}]},{"id":31,"name":"Total Corners (3way) (2nd Half)","values":[{"value":"Over","odd":"2.4","handicap":"5","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"2","handicap":"5","main":null,"suspended":false}]},{"id":33,"name":"Asian Handicap","values":[{"value":"Home","odd":"2.75","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.425","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.675","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.15","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"2.35","handicap":"0","main":false,"suspended":false},{"value":"Away","odd":"1.575","handicap":"0","main":false,"suspended":false},{"value":"Home","odd":"1.5","handicap":"1","main":false,"suspended":false},{"value":"Away","odd":"2.5","handicap":"-1","main":false,"suspended":false},{"value":"Home","odd":"1.925","handicap":"0","main":true,"suspended":false},{"value":"Away","odd":"1.875","handicap":"0","main":true,"suspended":false}]},{"id":35,"name":"To Win 2nd Half","values":[{"value":"Home","odd":"3.1","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"2.6","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.4","handicap":null,"main":null,"suspended":false}]},{"id":36,"name":"Over\/Under Line","values":[{"value":"Over","odd":"1.75","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"2.05","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"1.95","handicap":"3","main":true,"suspended":false},{"value":"Under","odd":"1.85","handicap":"3","main":true,"suspended":false},{"value":"Over","odd":"2.425","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.525","handicap":"3","main":false,"suspended":false},{"value":"Over","odd":"1.55","handicap":"2","main":false,"suspended":false},{"value":"Under","odd":"2.375","handicap":"2","main":false,"suspended":false},{"value":"Over","odd":"2.2","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.65","handicap":"3","main":false,"suspended":false}]},{"id":39,"name":"Away Team Goals","values":[{"value":"Over","odd":"26","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.01","handicap":"5","main":null,"suspended":false},{"value":"Over","odd":"1.909","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"2","main":null,"suspended":false},{"value":"Over","odd":"4","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.222","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"11","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.05","handicap":"4","main":null,"suspended":false}]},{"id":37,"name":"Total Corners","values":[{"value":"Over","odd":"1.909","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"10","main":null,"suspended":false}]},{"id":38,"name":"Away Team to Score in Both Halves","values":[{"value":"Yes","odd":"3","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.363","handicap":null,"main":null,"suspended":false}]},{"id":40,"name":"Total Corners (3 way) (1st Half)","values":[{"value":"Over","odd":"1.952","handicap":"4","main":null,"suspended":false},{"value":"Exactly","odd":"5","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"2.75","handicap":"4","main":null,"suspended":false}]},{"id":42,"name":"Race to the 3rd corner?","values":[{"value":"1","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.8","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"29","handicap":null,"main":null,"suspended":false}]},{"id":43,"name":"Both Teams To Score (2nd Half)","values":[{"value":"Yes","odd":"3","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.363","handicap":null,"main":null,"suspended":false}]},{"id":44,"name":"Race to the 9th corner?","values":[{"value":"1","odd":"9.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"8.5","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.111","handicap":null,"main":null,"suspended":false}]},{"id":45,"name":"Race to the 7th corner?","values":[{"value":"1","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"4","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"1.615","handicap":null,"main":null,"suspended":false}]},{"id":48,"name":"Draw No Bet","values":[{"value":"Home","odd":"2.25","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"1.571","handicap":null,"main":null,"suspended":false}]},{"id":49,"name":"Over\/Under (1st Half)","values":[{"value":"Over","odd":"2.5","handicap":"2","main":true,"suspended":false},{"value":"Under","odd":"1.5","handicap":"2","main":true,"suspended":false},{"value":"Over","odd":"1.333","handicap":"1","main":false,"suspended":false},{"value":"Under","odd":"3.25","handicap":"1","main":false,"suspended":false},{"value":"Over","odd":"17","handicap":"4","main":false,"suspended":false},{"value":"Under","odd":"1.025","handicap":"4","main":false,"suspended":false},{"value":"Over","odd":"6.5","handicap":"3","main":false,"suspended":false},{"value":"Under","odd":"1.111","handicap":"3","main":false,"suspended":false}]},{"id":51,"name":"Asian Corners (1st Half)","values":[{"value":"Over","odd":"2","handicap":"5","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"5","main":null,"suspended":false}]},{"id":55,"name":"Correct Score (1st Half)","values":[{"value":"1-0","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"2-0","odd":"15","handicap":null,"main":null,"suspended":false},{"value":"2-1","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"3-0","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3-1","odd":"51","handicap":null,"main":null,"suspended":false},{"value":"3-2","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"0-0","odd":"3.25","handicap":null,"main":null,"suspended":false},{"value":"1-1","odd":"6.5","handicap":null,"main":null,"suspended":false},{"value":"2-2","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"0-1","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"0-2","odd":"11","handicap":null,"main":null,"suspended":false},{"value":"1-2","odd":"17","handicap":null,"main":null,"suspended":false},{"value":"0-3","odd":"34","handicap":null,"main":null,"suspended":false},{"value":"1-3","odd":"41","handicap":null,"main":null,"suspended":false},{"value":"2-3","odd":"101","handicap":null,"main":null,"suspended":false},{"value":"0-4","odd":"81","handicap":null,"main":null,"suspended":false}]},{"id":57,"name":"Away Team Clean Sheet","values":[{"value":"Yes","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.3","handicap":null,"main":null,"suspended":false}]},{"id":32,"name":"Asian Corners","values":[{"value":"Over","odd":"2","handicap":"10","main":null,"suspended":false},{"value":"Under","odd":"1.8","handicap":"10","main":null,"suspended":false}]},{"id":58,"name":"Home Team Goals","values":[{"value":"Over","odd":"6.5","handicap":"3","main":null,"suspended":false},{"value":"Under","odd":"1.111","handicap":"3","main":null,"suspended":false},{"value":"Over","odd":"17","handicap":"4","main":null,"suspended":false},{"value":"Under","odd":"1.025","handicap":"4","main":null,"suspended":false},{"value":"Over","odd":"2.5","handicap":"2","main":null,"suspended":false},{"value":"Under","odd":"1.5","handicap":"2","main":null,"suspended":false}]},{"id":59,"name":"Fulltime Result","values":[{"value":"Home","odd":"3.1","handicap":null,"main":null,"suspended":false},{"value":"Draw","odd":"3.1","handicap":null,"main":null,"suspended":false},{"value":"Away","odd":"2.1","handicap":null,"main":null,"suspended":false}]},{"id":61,"name":"Race to the 5th corner?","values":[{"value":"1","odd":"2.4","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"2.25","handicap":null,"main":null,"suspended":false},{"value":"Neither","odd":"3.75","handicap":null,"main":null,"suspended":false}]},{"id":62,"name":"Last Team to Score (3 way)","values":[{"value":"1","odd":"2.3","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.666","handicap":null,"main":null,"suspended":false}]},{"id":64,"name":"Half Time\/Full Time","values":[{"value":"1\/1","odd":"5","handicap":null,"main":null,"suspended":false},{"value":"1\/X","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"1\/2","odd":"21","handicap":null,"main":null,"suspended":false},{"value":"X\/1","odd":"7","handicap":null,"main":null,"suspended":false},{"value":"X\/X","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"X\/2","odd":"5.5","handicap":null,"main":null,"suspended":false},{"value":"2\/1","odd":"26","handicap":null,"main":null,"suspended":false},{"value":"2\/X","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"2\/2","odd":"3.4","handicap":null,"main":null,"suspended":false}]},{"id":66,"name":"Home Team Clean Sheet","values":[{"value":"Yes","odd":"4.333","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"1.2","handicap":null,"main":null,"suspended":false}]},{"id":67,"name":"How many goals will Home Team score?","values":[{"value":"No goal","odd":"3.4","handicap":null,"main":null,"suspended":false},{"value":"1","odd":"2.5","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"3.75","handicap":null,"main":null,"suspended":false},{"value":"3 or more","odd":"6.5","handicap":null,"main":null,"suspended":false}]},{"id":68,"name":"Goals Odd\/Even","values":[{"value":"Odd","odd":"1.909","handicap":null,"main":null,"suspended":false},{"value":"Even","odd":"1.8","handicap":null,"main":null,"suspended":false}]},{"id":69,"name":"Both Teams to Score","values":[{"value":"Yes","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":70,"name":"Away Team Score a Goal (2nd Half)","values":[{"value":"Yes","odd":"1.571","handicap":null,"main":null,"suspended":false},{"value":"No","odd":"2.25","handicap":null,"main":null,"suspended":false}]},{"id":72,"name":"Double Chance","values":[{"value":"Home or Draw","odd":"1.666","handicap":null,"main":null,"suspended":false},{"value":"Away or Draw","odd":"1.333","handicap":null,"main":null,"suspended":false},{"value":"Home or Away","odd":"1.333","handicap":null,"main":null,"suspended":false}]},{"id":73,"name":"Which team will score the 1st goal?","values":[{"value":"1","odd":"2.3","handicap":null,"main":null,"suspended":false},{"value":"No goal","odd":"13","handicap":null,"main":null,"suspended":false},{"value":"2","odd":"1.666","handicap":null,"main":null,"suspended":false}]}]}]} [] [] +[2023-03-20T18:02:05.289685+00:00] LiveSoccer.INFO: - {"get":"odds\/live\/bets","parameters":[],"errors":[],"results":250,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"Over\/Under Extra Time"},{"id":2,"name":"1x2 Extra Time"},{"id":3,"name":"Extra Time Asian Corners"},{"id":4,"name":"Extra Time Total Corners (3 Ways) (1st Half)"},{"id":5,"name":"Extra Time Double Result"},{"id":6,"name":"Which team will score the 1st goal in extra time?"},{"id":7,"name":"Extra Time Asian Corners (1st Half)"},{"id":8,"name":"Method of Victory"},{"id":9,"name":"Both Teams To Score (ET)"},{"id":10,"name":"To Qualify"},{"id":11,"name":"Asian Handicap Extra Time"},{"id":12,"name":"1x2 Extra Time (1st Half)"},{"id":13,"name":"Extra Time Total Corners (3 Ways)"},{"id":14,"name":"Over\/Under Extra Time (1st Half)"},{"id":15,"name":"Last Corner"},{"id":16,"name":"How many goals will Away Team score?"},{"id":17,"name":"Asian Handicap (1st Half)"},{"id":18,"name":"1st Goal in Interval"},{"id":19,"name":"1x2 (1st Half)"},{"id":20,"name":"Match Corners"},{"id":21,"name":"3-Way Handicap"},{"id":22,"name":"1x2 - 30 minutes"},{"id":23,"name":"Final Score"},{"id":24,"name":"Over\/Under Line (1st Half)"},{"id":25,"name":"Match Goals"},{"id":26,"name":"European Handicap (1st Half)"},{"id":27,"name":"Home Team Score a Goal (2nd Half)"},{"id":28,"name":"Home Team to Score in Both Halves"},{"id":29,"name":"Result \/ Both Teams To Score"},{"id":30,"name":"Both Teams To Score (1st Half)"},{"id":31,"name":"Total Corners (3way) (2nd Half)"},{"id":32,"name":"Asian Corners"},{"id":33,"name":"Asian Handicap"},{"id":34,"name":"1x2 - 40 minutes"},{"id":35,"name":"To Win 2nd Half"},{"id":36,"name":"Over\/Under Line"},{"id":37,"name":"Total Corners"},{"id":38,"name":"Away Team to Score in Both Halves"},{"id":39,"name":"Away Team Goals"},{"id":40,"name":"Total Corners (3 way) (1st Half)"},{"id":41,"name":"1x2 - 50 minutes"},{"id":42,"name":"Race to the 3rd corner?"},{"id":43,"name":"Both Teams To Score (2nd Half)"},{"id":44,"name":"Race to the 9th corner?"},{"id":45,"name":"Race to the 7th corner?"},{"id":46,"name":"Goal Scorer"},{"id":47,"name":"Away 1st Goal in Interval"},{"id":48,"name":"Draw No Bet"},{"id":49,"name":"Over\/Under (1st Half)"},{"id":50,"name":"1x2 - 60 minutes"},{"id":51,"name":"Asian Corners (1st Half)"},{"id":52,"name":"1x2 - 80 minutes"},{"id":53,"name":"To Score 2 or More"},{"id":54,"name":"Home 1st Goal in Interval"},{"id":55,"name":"Correct Score (1st Half)"},{"id":56,"name":"1x2 - 70 minutes"},{"id":57,"name":"Away Team Clean Sheet"},{"id":58,"name":"Home Team Goals"},{"id":59,"name":"Fulltime Result"},{"id":60,"name":"To Score 3 or More"},{"id":61,"name":"Race to the 5th corner?"},{"id":62,"name":"Last Team to Score (3 way)"},{"id":63,"name":"Anytime Goal Scorer"},{"id":64,"name":"Half Time\/Full Time"},{"id":65,"name":"Next 10 Minutes Total"},{"id":66,"name":"Home Team Clean Sheet"},{"id":67,"name":"How many goals will Home Team score?"},{"id":68,"name":"Goals Odd\/Even"},{"id":69,"name":"Both Teams to Score"},{"id":70,"name":"Away Team Score a Goal (2nd Half)"},{"id":71,"name":"Which team will score the 4th corner? (2 Way)"},{"id":72,"name":"Double Chance"},{"id":73,"name":"Which team will score the 1st goal?"},{"id":74,"name":"Which team will score the 3rd corner? (2 Way)"},{"id":75,"name":"Which team will score the 2nd corner? (2 Way)"},{"id":76,"name":"Corners European Handicap"},{"id":77,"name":"1x2 - 10 minutes"},{"id":78,"name":"Corners 1x2"},{"id":79,"name":"1x2 - 20 minutes"},{"id":80,"name":"Method of 1st Goal"},{"id":81,"name":"Method of Qualification"},{"id":82,"name":"Game Won After Penalties Shootout"},{"id":83,"name":"Game Won In Extra Time"},{"id":84,"name":"Which team will score the 2nd goal?"},{"id":85,"name":"Which team will score the 2nd goal?"},{"id":86,"name":"Which team will score the 6th corner? (2 Way)"},{"id":87,"name":"Which team will score the 5th corner? (2 Way)"},{"id":88,"name":"Which team will score the 7th corner? (2 Way)"},{"id":89,"name":"Which team will score the 9th corner? (2 Way)"},{"id":90,"name":"2nd Goal in Interval"},{"id":91,"name":"Away 2nd Goal in Interval"},{"id":92,"name":"Which team will score the 3rd goal?"},{"id":93,"name":"Which team will score the 10th corner? (2 Way)"},{"id":94,"name":"3rd Goal in Interval"},{"id":95,"name":"Home 2nd Goal in Interval"},{"id":96,"name":"Asian Handicap Converted Penalties"},{"id":97,"name":"Sudden Death"},{"id":98,"name":"Away Penalty Shootout"},{"id":99,"name":"Home Penalty Shootout"},{"id":100,"name":"Home Total Converted Penalties"},{"id":101,"name":"Total Penalties in Shootout"},{"id":102,"name":"Last Penalty Score\/Miss"},{"id":103,"name":"Correct Score in Shootouts"},{"id":104,"name":"Total Converted Penalties"},{"id":105,"name":"Total Converted Penalties - Goal Line"},{"id":106,"name":"Away Total Converted Penalties"},{"id":107,"name":"Penalties Shootout Winner"},{"id":108,"name":"Which team will score the 11th corner? (2 Way)"},{"id":109,"name":"Which team will score the 4th goal?"},{"id":110,"name":"Which team will score the 8th corner? (2 Way)"},{"id":111,"name":"Last Penalty Scorer in Shootout"},{"id":112,"name":"Which team will score the 5th goal?"},{"id":113,"name":"Method of 2nd Goal"},{"id":114,"name":"Which team will score the 13th corner? (2 Way)"},{"id":115,"name":"Player to be Booked"},{"id":116,"name":"Action In Next 1 Minutes"},{"id":117,"name":"First Action In Next 5 Minutes"},{"id":118,"name":"Player to be Sent Off"},{"id":119,"name":"Total Cards"},{"id":120,"name":"Which team will score the 12th corner? (2 Way)"},{"id":121,"name":"Which team will score the 14th corner? (2 Way)"},{"id":122,"name":"Which team will score the 15th corner? (2 Way)"},{"id":123,"name":"Which team will score the 16th corner? (2 Way)"},{"id":124,"name":"Which team will score the 17th corner? (2 Way)"},{"id":125,"name":"Home 3rd Goal in Interval"},{"id":126,"name":"Which team will score the 18th corner? (2 Way)"},{"id":127,"name":"Which team will score the 6th goal?"},{"id":128,"name":"Away 3rd Goal in Interval"},{"id":129,"name":"Which team will score the 2nd goal in extra time?"},{"id":130,"name":"Method of 3rd Goal"},{"id":131,"name":"4th Goal in Interval"},{"id":132,"name":"Which team will score the 7th goal?"},{"id":133,"name":"Which team will score the 19th corner? (2 Way)"},{"id":134,"name":"Home 4th Goal in Interval"},{"id":135,"name":"Away 4th Goal in Interval"},{"id":136,"name":"5th Goal in Interval"},{"id":137,"name":"Home 5th Goal in Interval"},{"id":138,"name":"Method of 4th Goal"},{"id":139,"name":"Which team will score the 8th goal?"},{"id":140,"name":"Which team will score the 9th goal?"},{"id":141,"name":"Which team will score the 10th goal?"},{"id":142,"name":"Which team will score the 11th goal?"},{"id":143,"name":"Which team will score the 12th goal?"},{"id":144,"name":"6th Goal in Interval"},{"id":145,"name":"Method of 5th Goal"},{"id":146,"name":"Method of 6th Goal"},{"id":147,"name":"Which team will score the 20th corner? (2 Way)"},{"id":148,"name":"Player Shots"},{"id":149,"name":"Total Shots"},{"id":150,"name":"Total shots on goal"},{"id":151,"name":"Away Total Shots"},{"id":152,"name":"Home Total Shots"},{"id":153,"name":"Player Shots on Targets"},{"id":154,"name":"Home Total shots on goal"},{"id":155,"name":"Player Assists"},{"id":156,"name":"Away Total shots on goal"},{"id":157,"name":"Method of 7th Goal"},{"id":158,"name":"Method of 8th Goal"},{"id":159,"name":"7th Goal in Interval"},{"id":160,"name":"To Win the Trophy"},{"id":161,"name":"Away 5th Goal in Interval"},{"id":162,"name":"Which team will score the 3rd goal in extra time?"},{"id":163,"name":"Which team will score the 13th goal?"},{"id":164,"name":"Which team will score the 4th goal in extra time?"},{"id":165,"name":"Double Chance Extra Time"},{"id":166,"name":"Double Chance Extra Time (1st Half)"},{"id":167,"name":"Asian Handicap Extra Time (1st Half)"},{"id":168,"name":"Corners Double Chance"},{"id":169,"name":"Home Total Corners"},{"id":170,"name":"Which team will score the 10th corner?"},{"id":171,"name":"Away Not lose\/Over"},{"id":172,"name":"Away Not lose\/Under"},{"id":173,"name":"Home Not lose\/Over"},{"id":174,"name":"Corners Asian Handicap"},{"id":175,"name":"Home Not lose\/Under"},{"id":176,"name":"Away Total Corners"},{"id":177,"name":"Over\/Under (2nd Half)"},{"id":178,"name":"Total shots on goal (1st Half)"},{"id":179,"name":"Home team will win either half"},{"id":180,"name":"Double Chance (1st Half)"},{"id":181,"name":"Which team will score the 13th corner?"},{"id":182,"name":"Yellow Asian Handicap"},{"id":183,"name":"Draw\/Over"},{"id":184,"name":"Asian Handicap (2nd Half)"},{"id":185,"name":"Double Chance shots on goal"},{"id":186,"name":"Away Win\/Over"},{"id":187,"name":"Yellow Double Chance (1st Half)"},{"id":188,"name":"Away Total Corners (1st Half)"},{"id":189,"name":"Total Corners (1st Half)"},{"id":190,"name":"Home Total Corners (1st Half)"},{"id":191,"name":"Home Team Total (1st Half)"},{"id":192,"name":"Race to the 3rd goal?"},{"id":193,"name":"Corners 1x2 (1st Half)"},{"id":194,"name":"1x2 shots on goal"},{"id":195,"name":"Home Team Total (2nd Half)"},{"id":196,"name":"Away Team Total Goals (2nd Half)"},{"id":197,"name":"Yellow Asian Handicap (1st Half)"},{"id":198,"name":"Away Team Total Points (1st Half)"},{"id":199,"name":"Yellow Double Chance"},{"id":200,"name":"Home Team Yellow cards"},{"id":201,"name":"Home Win\/Over"},{"id":202,"name":"1x2 shots on goal (1st Half)"},{"id":203,"name":"Yellow Cards 1x2"},{"id":204,"name":"Corners Asian Handicap (1st Half)"},{"id":205,"name":"Asian Handicap shots on goal"},{"id":206,"name":"Home Team Yellow Cards (1st Half)"},{"id":207,"name":"Yellow Cards 1x2 (1st Half)"},{"id":208,"name":"Double Chance shots on goal (1st Half)"},{"id":209,"name":"Yellow Over\/Under (1st Half)"},{"id":210,"name":"Yellow Over\/Under"},{"id":211,"name":"Away Team Yellow Cards (1st Half)"},{"id":212,"name":"Asian Handicap shots on goal (1st Half)"},{"id":213,"name":"Away Team Yellow Cards"},{"id":214,"name":"Away team will win either half"},{"id":215,"name":"Both Teams To Score Under"},{"id":216,"name":"Both Halves Over"},{"id":217,"name":"Race to the 2nd goal?"},{"id":218,"name":"Away Team Score a Goal"},{"id":219,"name":"Both Teams To Score Over"},{"id":220,"name":"Both Halves Under"},{"id":221,"name":"Home Win\/Under"},{"id":222,"name":"Away Team Score a Goal (1st Half)"},{"id":223,"name":"Which team will score the 5th corner?"},{"id":224,"name":"Which team will score the 4th corner?"},{"id":225,"name":"Home Team Score a Goal (1st Half)"},{"id":226,"name":"Home Team Score a Goal"},{"id":227,"name":"Draw\/Under"},{"id":228,"name":"Away Win\/Under"},{"id":229,"name":"Home Red Over\/Under"},{"id":230,"name":"Away Red Over\/Under"},{"id":231,"name":"Which team will score the 7th corner?"},{"id":232,"name":"Red Over\/Under"},{"id":233,"name":"Yellow Odd\/Even"},{"id":234,"name":"Which team will score the 6th corner?"},{"id":235,"name":"Which team will score the 8th corner?"},{"id":236,"name":"Which team will score the 9th corner?"},{"id":237,"name":"Which team will score the 11th corner?"},{"id":238,"name":"Which team will score the 12th corner?"},{"id":239,"name":"Which team will score the 14th corner?"},{"id":240,"name":"Which team will score the 15th corner?"},{"id":241,"name":"Which team will score the 1st corner?"},{"id":242,"name":"Which team will score the 2nd corner?"},{"id":243,"name":"Away Total shots on goal (1st Half)"},{"id":244,"name":"Home Total shots on goal (1st Half)"},{"id":245,"name":"Away Penalty Over\/Under"},{"id":246,"name":"Home Penalty Over\/Under"},{"id":247,"name":"Penalty Over\/Under"},{"id":248,"name":"Which team will score the 5th goal in extra time?"},{"id":249,"name":"Which team will score the 6th goal in extra time?"},{"id":250,"name":"Extra Time Over\/Under Line"}]} [] [] +[2023-03-20T18:02:15.896958+00:00] LiveSoccer.INFO: - {"get":"odds\/live\/bets","parameters":{"id":"1"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"Over\/Under Extra Time"}]} [] [] +[2023-03-20T18:03:42.945414+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"season":"2019","bet":"1","bookmaker":"6","fixture":"157140","league":"239"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:04:02.516884+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"fixture":"164327"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:04:19.529093+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"league":"39"},"errors":{"season":"The Season field is required."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:04:40.701895+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:04:51.455854+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":[],"errors":{"required":"At least one parameter is required."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:06:06.530163+00:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T18:06:21.220581+00:00] LiveSoccer.INFO: - {"get":"odds\/mapping","parameters":[],"errors":[],"results":100,"paging":{"current":1,"total":29},"response":[{"league":{"id":536,"season":2022},"fixture":{"id":856816,"date":"2023-03-24T00:00:00+00:00","timestamp":1679616000},"update":"2023-03-20T00:15:08+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856817,"date":"2023-03-25T00:00:00+00:00","timestamp":1679702400},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856819,"date":"2023-03-26T02:00:00+00:00","timestamp":1679796000},"update":"2023-03-20T00:25:10+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856856,"date":"2023-03-23T23:00:00+00:00","timestamp":1679612400},"update":"2023-03-20T00:10:09+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856857,"date":"2023-03-23T23:00:00+00:00","timestamp":1679612400},"update":"2023-03-20T00:10:09+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856858,"date":"2023-03-24T20:00:00+00:00","timestamp":1679688000},"update":"2023-03-20T00:15:08+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856860,"date":"2023-03-25T02:00:00+00:00","timestamp":1679709600},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856861,"date":"2023-03-23T21:30:00+00:00","timestamp":1679607000},"update":"2023-03-20T00:10:09+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856862,"date":"2023-03-25T21:00:00+00:00","timestamp":1679778000},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856863,"date":"2023-03-25T18:00:00+00:00","timestamp":1679767200},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856894,"date":"2023-03-24T19:00:00+00:00","timestamp":1679684400},"update":"2023-03-20T00:15:08+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856895,"date":"2023-03-25T20:00:00+00:00","timestamp":1679774400},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":536,"season":2022},"fixture":{"id":856896,"date":"2023-03-25T19:30:00+00:00","timestamp":1679772600},"update":"2023-03-20T00:20:14+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865296,"date":"2023-03-13T18:00:00+00:00","timestamp":1678730400},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865297,"date":"2023-03-18T14:00:00+00:00","timestamp":1679148000},"update":"2023-03-18T12:01:20+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865298,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:01:19+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865299,"date":"2023-03-17T17:00:00+00:00","timestamp":1679072400},"update":"2023-03-17T12:01:02+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865300,"date":"2023-03-18T16:30:00+00:00","timestamp":1679157000},"update":"2023-03-18T12:01:20+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865301,"date":"2023-03-17T19:30:00+00:00","timestamp":1679081400},"update":"2023-03-17T12:01:02+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865302,"date":"2023-03-18T19:00:00+00:00","timestamp":1679166000},"update":"2023-03-18T12:01:20+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865303,"date":"2023-03-19T11:30:00+00:00","timestamp":1679225400},"update":"2023-03-19T08:29:57+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865304,"date":"2023-03-19T16:30:00+00:00","timestamp":1679243400},"update":"2023-03-19T16:00:40+00:00"},{"league":{"id":106,"season":2022},"fixture":{"id":865305,"date":"2023-03-18T11:30:00+00:00","timestamp":1679139000},"update":"2023-03-18T04:01:35+00:00"},{"league":{"id":383,"season":2022},"fixture":{"id":866016,"date":"2023-03-13T18:30:00+00:00","timestamp":1678732200},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866369,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866370,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866371,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866372,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866373,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":120,"season":2022},"fixture":{"id":866374,"date":"2023-03-18T12:00:00+00:00","timestamp":1679140800},"update":"2023-03-18T04:01:36+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866432,"date":"2023-03-15T16:00:00+00:00","timestamp":1678896000},"update":"2023-03-15T12:01:37+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866500,"date":"2023-03-19T16:30:00+00:00","timestamp":1679243400},"update":"2023-03-19T16:01:11+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866501,"date":"2023-03-18T17:10:00+00:00","timestamp":1679159400},"update":"2023-03-18T12:02:47+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866502,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:02:14+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866503,"date":"2023-03-17T16:00:00+00:00","timestamp":1679068800},"update":"2023-03-17T12:01:03+00:00"},{"league":{"id":210,"season":2022},"fixture":{"id":866504,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:02:47+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867065,"date":"2023-03-13T17:00:00+00:00","timestamp":1678726800},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867074,"date":"2023-03-18T14:00:00+00:00","timestamp":1679148000},"update":"2023-03-18T12:02:15+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867075,"date":"2023-03-19T13:45:00+00:00","timestamp":1679233500},"update":"2023-03-19T12:02:14+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867076,"date":"2023-03-19T17:00:00+00:00","timestamp":1679245200},"update":"2023-03-19T16:01:11+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867077,"date":"2023-03-18T16:30:00+00:00","timestamp":1679157000},"update":"2023-03-18T12:02:15+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867078,"date":"2023-03-19T17:00:00+00:00","timestamp":1679245200},"update":"2023-03-19T16:01:11+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867079,"date":"2023-03-17T19:30:00+00:00","timestamp":1679081400},"update":"2023-03-17T16:00:55+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867080,"date":"2023-03-19T17:00:00+00:00","timestamp":1679245200},"update":"2023-03-19T16:01:11+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867081,"date":"2023-03-18T19:00:00+00:00","timestamp":1679166000},"update":"2023-03-18T12:02:15+00:00"},{"league":{"id":107,"season":2022},"fixture":{"id":867082,"date":"2023-03-19T17:00:00+00:00","timestamp":1679245200},"update":"2023-03-19T16:01:10+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867844,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867845,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867846,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867847,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867848,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867849,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867850,"date":"2023-03-19T11:15:00+00:00","timestamp":1679224500},"update":"2023-03-19T08:29:58+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867851,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867852,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867853,"date":"2023-03-17T19:00:00+00:00","timestamp":1679079600},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867858,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867859,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867860,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867861,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867862,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":89,"season":2022},"fixture":{"id":867863,"date":"2023-03-13T19:00:00+00:00","timestamp":1678734000},"update":"2023-03-13T16:00:39+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868014,"date":"2023-03-15T19:30:00+00:00","timestamp":1678908600},"update":"2023-03-15T12:01:37+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868018,"date":"2023-03-15T19:30:00+00:00","timestamp":1678908600},"update":"2023-03-15T12:01:37+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868216,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:02:13+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868217,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868218,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868220,"date":"2023-03-18T17:30:00+00:00","timestamp":1679160600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868223,"date":"2023-03-17T20:00:00+00:00","timestamp":1679083200},"update":"2023-03-17T16:00:55+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868224,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":39,"season":2022},"fixture":{"id":868225,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868848,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868849,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868850,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868851,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868852,"date":"2023-03-18T15:00:00+00:00","timestamp":1679151600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":179,"season":2022},"fixture":{"id":868853,"date":"2023-03-18T12:30:00+00:00","timestamp":1679142600},"update":"2023-03-18T12:01:56+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869147,"date":"2023-03-16T13:00:00+00:00","timestamp":1678971600},"update":"2023-03-16T12:00:20+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869167,"date":"2023-03-18T13:00:00+00:00","timestamp":1679144400},"update":"2023-03-18T12:01:58+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869168,"date":"2023-03-18T14:00:00+00:00","timestamp":1679148000},"update":"2023-03-18T12:01:58+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869169,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:01:21+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869170,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:01:21+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869171,"date":"2023-03-19T14:00:00+00:00","timestamp":1679234400},"update":"2023-03-19T12:01:21+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869172,"date":"2023-03-18T14:00:00+00:00","timestamp":1679148000},"update":"2023-03-18T12:01:58+00:00"},{"league":{"id":287,"season":2022},"fixture":{"id":869173,"date":"2023-03-18T14:00:00+00:00","timestamp":1679148000},"update":"2023-03-18T12:01:58+00:00"},{"league":{"id":208,"season":2022},"fixture":{"id":869396,"date":"2023-03-19T13:15:00+00:00","timestamp":1679231700},"update":"2023-03-19T12:02:14+00:00"},{"league":{"id":208,"season":2022},"fixture":{"id":869397,"date":"2023-03-19T15:30:00+00:00","timestamp":1679239800},"update":"2023-03-19T12:02:14+00:00"},{"league":{"id":208,"season":2022},"fixture":{"id":869398,"date":"2023-03-18T17:00:00+00:00","timestamp":1679158800},"update":"2023-03-18T16:00:49+00:00"},{"league":{"id":208,"season":2022},"fixture":{"id":869399,"date":"2023-03-17T19:15:00+00:00","timestamp":1679080500},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":208,"season":2022},"fixture":{"id":869400,"date":"2023-03-17T18:30:00+00:00","timestamp":1679077800},"update":"2023-03-17T16:00:56+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871380,"date":"2023-03-18T17:30:00+00:00","timestamp":1679160600},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871381,"date":"2023-03-19T16:30:00+00:00","timestamp":1679243400},"update":"2023-03-19T16:01:25+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871382,"date":"2023-03-19T14:30:00+00:00","timestamp":1679236200},"update":"2023-03-19T12:02:22+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871383,"date":"2023-03-19T18:30:00+00:00","timestamp":1679250600},"update":"2023-03-19T16:01:25+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871384,"date":"2023-03-18T14:30:00+00:00","timestamp":1679149800},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871385,"date":"2023-03-17T19:30:00+00:00","timestamp":1679081400},"update":"2023-03-17T16:00:55+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871386,"date":"2023-03-18T14:30:00+00:00","timestamp":1679149800},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871387,"date":"2023-03-18T14:30:00+00:00","timestamp":1679149800},"update":"2023-03-18T12:02:46+00:00"},{"league":{"id":78,"season":2022},"fixture":{"id":871388,"date":"2023-03-18T14:30:00+00:00","timestamp":1679149800},"update":"2023-03-18T12:02:45+00:00"},{"league":{"id":61,"season":2022},"fixture":{"id":871740,"date":"2023-03-19T12:00:00+00:00","timestamp":1679227200},"update":"2023-03-19T08:29:56+00:00"}]} [] [] +[2023-03-20T18:07:00.150606+00:00] LiveSoccer.INFO: - {"get":"odds\/bookmakers","parameters":[],"errors":[],"results":28,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"10Bet"},{"id":2,"name":"Marathonbet"},{"id":3,"name":"Betfair"},{"id":4,"name":"Pinnacle"},{"id":5,"name":"SBO"},{"id":6,"name":"Bwin"},{"id":7,"name":"William Hill"},{"id":8,"name":"Bet365"},{"id":9,"name":"Dafabet"},{"id":10,"name":"Ladbrokes"},{"id":11,"name":"1xBet"},{"id":12,"name":"BetFred"},{"id":13,"name":"188Bet"},{"id":15,"name":"Interwetten"},{"id":16,"name":"Unibet"},{"id":17,"name":"5Dimes"},{"id":18,"name":"Intertops"},{"id":19,"name":"Bovada"},{"id":20,"name":"Betcris"},{"id":21,"name":"888Sport"},{"id":22,"name":"Tipico"},{"id":23,"name":"Sportingbet"},{"id":24,"name":"Betway"},{"id":25,"name":"Expekt"},{"id":26,"name":"Betsson"},{"id":27,"name":"NordicBet"},{"id":28,"name":"ComeOn"},{"id":30,"name":"Netbet"}]} [] [] +[2023-03-20T18:07:27.103319+00:00] LiveSoccer.INFO: - {"get":"odds\/bets","parameters":[],"errors":[],"results":168,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"Match Winner"},{"id":2,"name":"Home\/Away"},{"id":3,"name":"Second Half Winner"},{"id":4,"name":"Asian Handicap"},{"id":5,"name":"Goals Over\/Under"},{"id":6,"name":"Goals Over\/Under First Half"},{"id":7,"name":"HT\/FT Double"},{"id":8,"name":"Both Teams Score"},{"id":9,"name":"Handicap Result"},{"id":10,"name":"Exact Score"},{"id":11,"name":"Highest Scoring Half"},{"id":12,"name":"Double Chance"},{"id":13,"name":"First Half Winner"},{"id":14,"name":"Team To Score First"},{"id":15,"name":"Team To Score Last"},{"id":16,"name":"Total - Home"},{"id":17,"name":"Total - Away"},{"id":18,"name":"Handicap Result - First Half"},{"id":19,"name":"Asian Handicap First Half"},{"id":20,"name":"Double Chance - First Half"},{"id":21,"name":"Odd\/Even"},{"id":22,"name":"Odd\/Even - First Half"},{"id":23,"name":"Home Odd\/Even"},{"id":24,"name":"Results\/Both Teams Score"},{"id":25,"name":"Result\/Total Goals"},{"id":26,"name":"Goals Over\/Under - Second Half"},{"id":27,"name":"Clean Sheet - Home"},{"id":28,"name":"Clean Sheet - Away"},{"id":29,"name":"Win to Nil - Home"},{"id":30,"name":"Win to Nil - Away"},{"id":31,"name":"Correct Score - First Half"},{"id":32,"name":"Win Both Halves"},{"id":33,"name":"Double Chance - Second Half"},{"id":34,"name":"Both Teams Score - First Half"},{"id":35,"name":"Both Teams To Score - Second Half"},{"id":36,"name":"Win To Nil"},{"id":37,"name":"Home win both halves"},{"id":38,"name":"Exact Goals Number"},{"id":39,"name":"To Win Either Half"},{"id":40,"name":"Home Team Exact Goals Number"},{"id":41,"name":"Away Team Exact Goals Number"},{"id":42,"name":"Second Half Exact Goals Number"},{"id":43,"name":"Home Team Score a Goal"},{"id":44,"name":"Away Team Score a Goal"},{"id":45,"name":"Corners Over Under"},{"id":46,"name":"Exact Goals Number - First Half"},{"id":47,"name":"Winning Margin"},{"id":48,"name":"To Score In Both Halves By Teams"},{"id":49,"name":"Total Goals\/Both Teams To Score"},{"id":50,"name":"Goal Line"},{"id":51,"name":"Halftime Result\/Total Goals"},{"id":52,"name":"Halftime Result\/Both Teams Score"},{"id":53,"name":"Away win both halves"},{"id":54,"name":"First 10 min Winner"},{"id":55,"name":"Corners 1x2"},{"id":56,"name":"Corners Asian Handicap"},{"id":57,"name":"Home Corners Over\/Under"},{"id":58,"name":"Away Corners Over\/Under"},{"id":59,"name":"Own Goal"},{"id":60,"name":"Away Odd\/Even"},{"id":61,"name":"To Qualify"},{"id":62,"name":"Correct Score - Second Half"},{"id":63,"name":"Odd\/Even - Second Half"},{"id":72,"name":"Goal Line (1st Half)"},{"id":73,"name":"Both Teams to Score 1st Half - 2nd Half"},{"id":74,"name":"10 Over\/Under"},{"id":75,"name":"Last Corner"},{"id":76,"name":"First Corner"},{"id":77,"name":"Total Corners (1st Half)"},{"id":78,"name":"RTG_H1"},{"id":79,"name":"Cards European Handicap"},{"id":80,"name":"Cards Over\/Under"},{"id":81,"name":"Cards Asian Handicap"},{"id":82,"name":"Home Team Total Cards"},{"id":83,"name":"Away Team Total Cards"},{"id":84,"name":"Total Corners (3 way) (1st Half)"},{"id":85,"name":"Total Corners (3 way)"},{"id":86,"name":"RCARD"},{"id":87,"name":"Total ShotOnGoal"},{"id":88,"name":"Home Total ShotOnGoal"},{"id":89,"name":"Away Total ShotOnGoal"},{"id":91,"name":"Total Goals (3 way)"},{"id":92,"name":"Anytime Goal Scorer"},{"id":93,"name":"First Goal Scorer"},{"id":94,"name":"Last Goal Scorer"},{"id":95,"name":"To Score Two or More Goals"},{"id":96,"name":"Last Goal Scorer"},{"id":97,"name":"First Goal Method"},{"id":99,"name":"To Score A Penalty"},{"id":100,"name":"To Miss A Penalty"},{"id":101,"name":null},{"id":102,"name":"Player to be booked"},{"id":103,"name":"Player to be Sent Off"},{"id":104,"name":"Asian Handicap (2nd Half)"},{"id":105,"name":"Home Team Total Goals(1st Half)"},{"id":106,"name":"Away Team Total Goals(1st Half)"},{"id":107,"name":"Home Team Total Goals(2nd Half)"},{"id":108,"name":"Away Team Total Goals(2nd Half)"},{"id":109,"name":"Draw No Bet (1st Half)"},{"id":110,"name":"Scoring Draw"},{"id":111,"name":"Home team will score in both halves"},{"id":112,"name":"Away team will score in both halves"},{"id":113,"name":"Both Teams To Score in Both Halves"},{"id":114,"name":"Home Team Score a Goal (1st Half)"},{"id":115,"name":"Home Team Score a Goal (2nd Half)"},{"id":116,"name":"Away Team Score a Goal (1st Half)"},{"id":117,"name":"Away Team Score a Goal (2nd Half)"},{"id":118,"name":"Home Win\/Over"},{"id":119,"name":"Home Win\/Under"},{"id":120,"name":"Away Win\/Over"},{"id":121,"name":"Away Win\/Under"},{"id":122,"name":"Home team will win either half"},{"id":123,"name":"Away team will win either half"},{"id":124,"name":"Home Come From Behind and Win"},{"id":125,"name":"Corners Asian Handicap (1st Half)"},{"id":126,"name":"Corners Asian Handicap (2nd Half)"},{"id":127,"name":"Total Corners (2nd Half)"},{"id":128,"name":"Total Corners (3 way) (2nd Half)"},{"id":129,"name":"Away Come From Behind and Win"},{"id":130,"name":"Corners 1x2 (1st Half)"},{"id":131,"name":"Corners 1x2 (2nd Half)"},{"id":132,"name":"Home Total Corners (1st Half)"},{"id":133,"name":"Home Total Corners (2nd Half)"},{"id":134,"name":"Away Total Corners (1st Half)"},{"id":135,"name":"Away Total Corners (2nd Half)"},{"id":136,"name":"1x2 - 15 minutes"},{"id":137,"name":"1x2 - 60 minutes"},{"id":138,"name":"1x2 - 75 minutes"},{"id":139,"name":"1x2 - 30 minutes"},{"id":140,"name":"DC - 30 minutes"},{"id":141,"name":"DC - 15 minutes"},{"id":142,"name":"DC - 60 minutes"},{"id":143,"name":"DC - 75 minutes"},{"id":144,"name":"Goal in 1-15 minutes"},{"id":145,"name":"Goal in 16-30 minutes"},{"id":146,"name":"Goal in 31-45 minutes"},{"id":147,"name":"Goal in 46-60 minutes"},{"id":148,"name":"Goal in 61-75 minutes"},{"id":149,"name":"Goal in 76-90 minutes"},{"id":150,"name":"Home Team Yellow Cards"},{"id":151,"name":"Away Team Yellow Cards"},{"id":152,"name":"Yellow Asian Handicap"},{"id":153,"name":"Yellow Over\/Under"},{"id":154,"name":"Yellow Double Chance"},{"id":155,"name":"Yellow Over\/Under (1st Half)"},{"id":156,"name":"Yellow Over\/Under (2nd Half)"},{"id":157,"name":"Yellow Odd\/Even"},{"id":158,"name":"Yellow Cards 1x2"},{"id":159,"name":"Yellow Asian Handicap (1st Half)"},{"id":160,"name":"Yellow Asian Handicap (2nd Half)"},{"id":161,"name":"Yellow Cards 1x2 (1st Half)"},{"id":162,"name":"Yellow Cards 1x2 (2nd Half)"},{"id":163,"name":"Penalty Awarded"},{"id":164,"name":"Offsides Total"},{"id":165,"name":"Offsides 1x2"},{"id":166,"name":"Offsides Handicap"},{"id":167,"name":"Offsides Home Total"},{"id":168,"name":"Offsides Away Total"},{"id":169,"name":"Offsides Double Chance"},{"id":170,"name":"Fouls. Away Total"},{"id":171,"name":"Fouls. Home Total"},{"id":172,"name":"Fouls. Double Chance"},{"id":173,"name":"Fouls. Total"},{"id":174,"name":"Fouls. Handicap"},{"id":175,"name":"Fouls. 1x2"},{"id":176,"name":"ShotOnTarget 1x2"},{"id":177,"name":"ShotOnTarget Handicap"},{"id":178,"name":"ShotOnTarget Double Chance"}]} [] [] +[2023-03-20T18:07:28.364518+00:00] LiveSoccer.INFO: - {"get":"odds\/bets","parameters":[],"errors":[],"results":168,"paging":{"current":1,"total":1},"response":[{"id":1,"name":"Match Winner"},{"id":2,"name":"Home\/Away"},{"id":3,"name":"Second Half Winner"},{"id":4,"name":"Asian Handicap"},{"id":5,"name":"Goals Over\/Under"},{"id":6,"name":"Goals Over\/Under First Half"},{"id":7,"name":"HT\/FT Double"},{"id":8,"name":"Both Teams Score"},{"id":9,"name":"Handicap Result"},{"id":10,"name":"Exact Score"},{"id":11,"name":"Highest Scoring Half"},{"id":12,"name":"Double Chance"},{"id":13,"name":"First Half Winner"},{"id":14,"name":"Team To Score First"},{"id":15,"name":"Team To Score Last"},{"id":16,"name":"Total - Home"},{"id":17,"name":"Total - Away"},{"id":18,"name":"Handicap Result - First Half"},{"id":19,"name":"Asian Handicap First Half"},{"id":20,"name":"Double Chance - First Half"},{"id":21,"name":"Odd\/Even"},{"id":22,"name":"Odd\/Even - First Half"},{"id":23,"name":"Home Odd\/Even"},{"id":24,"name":"Results\/Both Teams Score"},{"id":25,"name":"Result\/Total Goals"},{"id":26,"name":"Goals Over\/Under - Second Half"},{"id":27,"name":"Clean Sheet - Home"},{"id":28,"name":"Clean Sheet - Away"},{"id":29,"name":"Win to Nil - Home"},{"id":30,"name":"Win to Nil - Away"},{"id":31,"name":"Correct Score - First Half"},{"id":32,"name":"Win Both Halves"},{"id":33,"name":"Double Chance - Second Half"},{"id":34,"name":"Both Teams Score - First Half"},{"id":35,"name":"Both Teams To Score - Second Half"},{"id":36,"name":"Win To Nil"},{"id":37,"name":"Home win both halves"},{"id":38,"name":"Exact Goals Number"},{"id":39,"name":"To Win Either Half"},{"id":40,"name":"Home Team Exact Goals Number"},{"id":41,"name":"Away Team Exact Goals Number"},{"id":42,"name":"Second Half Exact Goals Number"},{"id":43,"name":"Home Team Score a Goal"},{"id":44,"name":"Away Team Score a Goal"},{"id":45,"name":"Corners Over Under"},{"id":46,"name":"Exact Goals Number - First Half"},{"id":47,"name":"Winning Margin"},{"id":48,"name":"To Score In Both Halves By Teams"},{"id":49,"name":"Total Goals\/Both Teams To Score"},{"id":50,"name":"Goal Line"},{"id":51,"name":"Halftime Result\/Total Goals"},{"id":52,"name":"Halftime Result\/Both Teams Score"},{"id":53,"name":"Away win both halves"},{"id":54,"name":"First 10 min Winner"},{"id":55,"name":"Corners 1x2"},{"id":56,"name":"Corners Asian Handicap"},{"id":57,"name":"Home Corners Over\/Under"},{"id":58,"name":"Away Corners Over\/Under"},{"id":59,"name":"Own Goal"},{"id":60,"name":"Away Odd\/Even"},{"id":61,"name":"To Qualify"},{"id":62,"name":"Correct Score - Second Half"},{"id":63,"name":"Odd\/Even - Second Half"},{"id":72,"name":"Goal Line (1st Half)"},{"id":73,"name":"Both Teams to Score 1st Half - 2nd Half"},{"id":74,"name":"10 Over\/Under"},{"id":75,"name":"Last Corner"},{"id":76,"name":"First Corner"},{"id":77,"name":"Total Corners (1st Half)"},{"id":78,"name":"RTG_H1"},{"id":79,"name":"Cards European Handicap"},{"id":80,"name":"Cards Over\/Under"},{"id":81,"name":"Cards Asian Handicap"},{"id":82,"name":"Home Team Total Cards"},{"id":83,"name":"Away Team Total Cards"},{"id":84,"name":"Total Corners (3 way) (1st Half)"},{"id":85,"name":"Total Corners (3 way)"},{"id":86,"name":"RCARD"},{"id":87,"name":"Total ShotOnGoal"},{"id":88,"name":"Home Total ShotOnGoal"},{"id":89,"name":"Away Total ShotOnGoal"},{"id":91,"name":"Total Goals (3 way)"},{"id":92,"name":"Anytime Goal Scorer"},{"id":93,"name":"First Goal Scorer"},{"id":94,"name":"Last Goal Scorer"},{"id":95,"name":"To Score Two or More Goals"},{"id":96,"name":"Last Goal Scorer"},{"id":97,"name":"First Goal Method"},{"id":99,"name":"To Score A Penalty"},{"id":100,"name":"To Miss A Penalty"},{"id":101,"name":null},{"id":102,"name":"Player to be booked"},{"id":103,"name":"Player to be Sent Off"},{"id":104,"name":"Asian Handicap (2nd Half)"},{"id":105,"name":"Home Team Total Goals(1st Half)"},{"id":106,"name":"Away Team Total Goals(1st Half)"},{"id":107,"name":"Home Team Total Goals(2nd Half)"},{"id":108,"name":"Away Team Total Goals(2nd Half)"},{"id":109,"name":"Draw No Bet (1st Half)"},{"id":110,"name":"Scoring Draw"},{"id":111,"name":"Home team will score in both halves"},{"id":112,"name":"Away team will score in both halves"},{"id":113,"name":"Both Teams To Score in Both Halves"},{"id":114,"name":"Home Team Score a Goal (1st Half)"},{"id":115,"name":"Home Team Score a Goal (2nd Half)"},{"id":116,"name":"Away Team Score a Goal (1st Half)"},{"id":117,"name":"Away Team Score a Goal (2nd Half)"},{"id":118,"name":"Home Win\/Over"},{"id":119,"name":"Home Win\/Under"},{"id":120,"name":"Away Win\/Over"},{"id":121,"name":"Away Win\/Under"},{"id":122,"name":"Home team will win either half"},{"id":123,"name":"Away team will win either half"},{"id":124,"name":"Home Come From Behind and Win"},{"id":125,"name":"Corners Asian Handicap (1st Half)"},{"id":126,"name":"Corners Asian Handicap (2nd Half)"},{"id":127,"name":"Total Corners (2nd Half)"},{"id":128,"name":"Total Corners (3 way) (2nd Half)"},{"id":129,"name":"Away Come From Behind and Win"},{"id":130,"name":"Corners 1x2 (1st Half)"},{"id":131,"name":"Corners 1x2 (2nd Half)"},{"id":132,"name":"Home Total Corners (1st Half)"},{"id":133,"name":"Home Total Corners (2nd Half)"},{"id":134,"name":"Away Total Corners (1st Half)"},{"id":135,"name":"Away Total Corners (2nd Half)"},{"id":136,"name":"1x2 - 15 minutes"},{"id":137,"name":"1x2 - 60 minutes"},{"id":138,"name":"1x2 - 75 minutes"},{"id":139,"name":"1x2 - 30 minutes"},{"id":140,"name":"DC - 30 minutes"},{"id":141,"name":"DC - 15 minutes"},{"id":142,"name":"DC - 60 minutes"},{"id":143,"name":"DC - 75 minutes"},{"id":144,"name":"Goal in 1-15 minutes"},{"id":145,"name":"Goal in 16-30 minutes"},{"id":146,"name":"Goal in 31-45 minutes"},{"id":147,"name":"Goal in 46-60 minutes"},{"id":148,"name":"Goal in 61-75 minutes"},{"id":149,"name":"Goal in 76-90 minutes"},{"id":150,"name":"Home Team Yellow Cards"},{"id":151,"name":"Away Team Yellow Cards"},{"id":152,"name":"Yellow Asian Handicap"},{"id":153,"name":"Yellow Over\/Under"},{"id":154,"name":"Yellow Double Chance"},{"id":155,"name":"Yellow Over\/Under (1st Half)"},{"id":156,"name":"Yellow Over\/Under (2nd Half)"},{"id":157,"name":"Yellow Odd\/Even"},{"id":158,"name":"Yellow Cards 1x2"},{"id":159,"name":"Yellow Asian Handicap (1st Half)"},{"id":160,"name":"Yellow Asian Handicap (2nd Half)"},{"id":161,"name":"Yellow Cards 1x2 (1st Half)"},{"id":162,"name":"Yellow Cards 1x2 (2nd Half)"},{"id":163,"name":"Penalty Awarded"},{"id":164,"name":"Offsides Total"},{"id":165,"name":"Offsides 1x2"},{"id":166,"name":"Offsides Handicap"},{"id":167,"name":"Offsides Home Total"},{"id":168,"name":"Offsides Away Total"},{"id":169,"name":"Offsides Double Chance"},{"id":170,"name":"Fouls. Away Total"},{"id":171,"name":"Fouls. Home Total"},{"id":172,"name":"Fouls. Double Chance"},{"id":173,"name":"Fouls. Total"},{"id":174,"name":"Fouls. Handicap"},{"id":175,"name":"Fouls. 1x2"},{"id":176,"name":"ShotOnTarget 1x2"},{"id":177,"name":"ShotOnTarget Handicap"},{"id":178,"name":"ShotOnTarget Double Chance"}]} [] [] +[2023-03-20T20:09:32.293950+01:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:09:57.319826+01:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:10:26.018395+01:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:10:26.334245+01:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T20:20:07.983928+01:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:08.212952+01:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T20:20:08.441057+01:00] LiveSoccer.INFO: - {"get":"leagues\/seasons","parameters":[],"errors":[],"results":17,"paging":{"current":1,"total":1},"response":[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024]} [] [] +[2023-03-20T20:20:08.702006+01:00] LiveSoccer.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T20:20:09.072223+01:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:20:09.499584+01:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:20:09.807866+01:00] LiveSoccer.INFO: - {"get":"venues","parameters":{"name":"Old Trafford"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","country":"England","capacity":76212,"surface":"grass","image":"https:\/\/media-3.api-sports.io\/football\/venues\/556.png"}]} [] [] +[2023-03-20T20:20:10.138036+01:00] LiveSoccer.INFO: - {"get":"standings","parameters":{"league":"39","season":"2019"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019,"standings":[[{"rank":1,"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"points":99,"goalsDiff":52,"group":"Premier League","form":"WWLDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":32,"draw":3,"lose":3,"goals":{"for":85,"against":33}},"home":{"played":19,"win":18,"draw":1,"lose":0,"goals":{"for":52,"against":16}},"away":{"played":19,"win":14,"draw":2,"lose":3,"goals":{"for":33,"against":17}},"update":"2020-07-26T00:00:00+00:00"},{"rank":2,"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/50.png"},"points":81,"goalsDiff":67,"group":"Premier League","form":"WWWWW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":26,"draw":3,"lose":9,"goals":{"for":102,"against":35}},"home":{"played":19,"win":15,"draw":2,"lose":2,"goals":{"for":57,"against":13}},"away":{"played":19,"win":11,"draw":1,"lose":7,"goals":{"for":45,"against":22}},"update":"2020-07-26T00:00:00+00:00"},{"rank":3,"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png"},"points":66,"goalsDiff":30,"group":"Premier League","form":"WDWDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":18,"draw":12,"lose":8,"goals":{"for":66,"against":36}},"home":{"played":19,"win":10,"draw":7,"lose":2,"goals":{"for":40,"against":17}},"away":{"played":19,"win":8,"draw":5,"lose":6,"goals":{"for":26,"against":19}},"update":"2020-07-26T00:00:00+00:00"},{"rank":4,"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"points":66,"goalsDiff":15,"group":"Premier League","form":"WLWLW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":20,"draw":6,"lose":12,"goals":{"for":69,"against":54}},"home":{"played":19,"win":11,"draw":3,"lose":5,"goals":{"for":30,"against":16}},"away":{"played":19,"win":9,"draw":3,"lose":7,"goals":{"for":39,"against":38}},"update":"2020-07-26T00:00:00+00:00"},{"rank":5,"team":{"id":46,"name":"Leicester","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/46.png"},"points":62,"goalsDiff":26,"group":"Premier League","form":"LLWLD","status":"same","description":"Promotion - Europa League (Group Stage)","all":{"played":38,"win":18,"draw":8,"lose":12,"goals":{"for":67,"against":41}},"home":{"played":19,"win":11,"draw":4,"lose":4,"goals":{"for":35,"against":17}},"away":{"played":19,"win":7,"draw":4,"lose":8,"goals":{"for":32,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":6,"team":{"id":47,"name":"Tottenham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/47.png"},"points":59,"goalsDiff":14,"group":"Premier League","form":"DWWWD","status":"same","description":"Promotion - Europa League (Qualification)","all":{"played":38,"win":16,"draw":11,"lose":11,"goals":{"for":61,"against":47}},"home":{"played":19,"win":12,"draw":3,"lose":4,"goals":{"for":36,"against":17}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":25,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":7,"team":{"id":39,"name":"Wolves","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/39.png"},"points":59,"goalsDiff":11,"group":"Premier League","form":"LWDWL","status":"same","description":null,"all":{"played":38,"win":15,"draw":14,"lose":9,"goals":{"for":51,"against":40}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":27,"against":19}},"away":{"played":19,"win":7,"draw":7,"lose":5,"goals":{"for":24,"against":21}},"update":"2020-07-26T00:00:00+00:00"},{"rank":8,"team":{"id":42,"name":"Arsenal","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/42.png"},"points":56,"goalsDiff":8,"group":"Premier League","form":"WLWLD","status":"same","description":null,"all":{"played":38,"win":14,"draw":14,"lose":10,"goals":{"for":56,"against":48}},"home":{"played":19,"win":10,"draw":6,"lose":3,"goals":{"for":36,"against":24}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":20,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":9,"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/62.png"},"points":54,"goalsDiff":0,"group":"Premier League","form":"LLLWW","status":"same","description":null,"all":{"played":38,"win":14,"draw":12,"lose":12,"goals":{"for":39,"against":39}},"home":{"played":19,"win":10,"draw":3,"lose":6,"goals":{"for":24,"against":15}},"away":{"played":19,"win":4,"draw":9,"lose":6,"goals":{"for":15,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":10,"team":{"id":44,"name":"Burnley","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/44.png"},"points":54,"goalsDiff":-7,"group":"Premier League","form":"LWDDW","status":"same","description":null,"all":{"played":38,"win":15,"draw":9,"lose":14,"goals":{"for":43,"against":50}},"home":{"played":19,"win":8,"draw":4,"lose":7,"goals":{"for":24,"against":23}},"away":{"played":19,"win":7,"draw":5,"lose":7,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":11,"team":{"id":41,"name":"Southampton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/41.png"},"points":52,"goalsDiff":-9,"group":"Premier League","form":"WWDDD","status":"same","description":null,"all":{"played":38,"win":15,"draw":7,"lose":16,"goals":{"for":51,"against":60}},"home":{"played":19,"win":6,"draw":3,"lose":10,"goals":{"for":21,"against":35}},"away":{"played":19,"win":9,"draw":4,"lose":6,"goals":{"for":30,"against":25}},"update":"2020-07-26T00:00:00+00:00"},{"rank":12,"team":{"id":45,"name":"Everton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/45.png"},"points":49,"goalsDiff":-12,"group":"Premier League","form":"LWDLD","status":"same","description":null,"all":{"played":38,"win":13,"draw":10,"lose":15,"goals":{"for":44,"against":56}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":24,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":20,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":13,"team":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png"},"points":44,"goalsDiff":-20,"group":"Premier League","form":"LDLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":11,"lose":16,"goals":{"for":38,"against":58}},"home":{"played":19,"win":6,"draw":8,"lose":5,"goals":{"for":20,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":18,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":14,"team":{"id":52,"name":"Crystal Palace","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/52.png"},"points":43,"goalsDiff":-19,"group":"Premier League","form":"DLLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":10,"lose":17,"goals":{"for":31,"against":50}},"home":{"played":19,"win":6,"draw":5,"lose":8,"goals":{"for":15,"against":20}},"away":{"played":19,"win":5,"draw":5,"lose":9,"goals":{"for":16,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":15,"team":{"id":51,"name":"Brighton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/51.png"},"points":41,"goalsDiff":-15,"group":"Premier League","form":"WDDLL","status":"same","description":null,"all":{"played":38,"win":9,"draw":14,"lose":15,"goals":{"for":39,"against":54}},"home":{"played":19,"win":5,"draw":7,"lose":7,"goals":{"for":20,"against":27}},"away":{"played":19,"win":4,"draw":7,"lose":8,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":16,"team":{"id":48,"name":"West Ham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/48.png"},"points":39,"goalsDiff":-13,"group":"Premier League","form":"DDWWL","status":"same","description":null,"all":{"played":38,"win":10,"draw":9,"lose":19,"goals":{"for":49,"against":62}},"home":{"played":19,"win":6,"draw":4,"lose":9,"goals":{"for":30,"against":33}},"away":{"played":19,"win":4,"draw":5,"lose":10,"goals":{"for":19,"against":29}},"update":"2020-07-26T00:00:00+00:00"},{"rank":17,"team":{"id":66,"name":"Aston Villa","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/66.png"},"points":35,"goalsDiff":-26,"group":"Premier League","form":"DWDWL","status":"same","description":null,"all":{"played":38,"win":9,"draw":8,"lose":21,"goals":{"for":41,"against":67}},"home":{"played":19,"win":7,"draw":3,"lose":9,"goals":{"for":22,"against":30}},"away":{"played":19,"win":2,"draw":5,"lose":12,"goals":{"for":19,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":18,"team":{"id":35,"name":"Bournemouth","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/35.png"},"points":34,"goalsDiff":-25,"group":"Premier League","form":"WLLWD","status":"same","description":"Relegation - Championship","all":{"played":38,"win":9,"draw":7,"lose":22,"goals":{"for":40,"against":65}},"home":{"played":19,"win":5,"draw":6,"lose":8,"goals":{"for":22,"against":30}},"away":{"played":19,"win":4,"draw":1,"lose":14,"goals":{"for":18,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":19,"team":{"id":38,"name":"Watford","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/38.png"},"points":34,"goalsDiff":-28,"group":"Premier League","form":"LLLWW","status":"same","description":"Relegation - Championship","all":{"played":38,"win":8,"draw":10,"lose":20,"goals":{"for":36,"against":64}},"home":{"played":19,"win":6,"draw":6,"lose":7,"goals":{"for":22,"against":27}},"away":{"played":19,"win":2,"draw":4,"lose":13,"goals":{"for":14,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":20,"team":{"id":71,"name":"Norwich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/71.png"},"points":21,"goalsDiff":-49,"group":"Premier League","form":"LLLLL","status":"same","description":"Relegation - Championship","all":{"played":38,"win":5,"draw":6,"lose":27,"goals":{"for":26,"against":75}},"home":{"played":19,"win":4,"draw":3,"lose":12,"goals":{"for":19,"against":37}},"away":{"played":19,"win":1,"draw":3,"lose":15,"goals":{"for":7,"against":38}},"update":"2020-07-26T00:00:00+00:00"}]]}}]} [] [] +[2023-03-20T20:20:10.396555+01:00] LiveSoccer.INFO: - {"get":"fixtures\/rounds","parameters":{"league":"39","season":"2019"},"errors":[],"results":38,"paging":{"current":1,"total":1},"response":["Regular Season - 1","Regular Season - 2","Regular Season - 3","Regular Season - 4","Regular Season - 5","Regular Season - 6","Regular Season - 7","Regular Season - 8","Regular Season - 9","Regular Season - 10","Regular Season - 11","Regular Season - 12","Regular Season - 13","Regular Season - 14","Regular Season - 15","Regular Season - 16","Regular Season - 17","Regular Season - 18","Regular Season - 19","Regular Season - 20","Regular Season - 21","Regular Season - 22","Regular Season - 23","Regular Season - 24","Regular Season - 25","Regular Season - 26","Regular Season - 27","Regular Season - 28","Regular Season - 29","Regular Season - 30","Regular Season - 31","Regular Season - 32","Regular Season - 33","Regular Season - 34","Regular Season - 35","Regular Season - 36","Regular Season - 37","Regular Season - 38"]} [] [] +[2023-03-20T20:20:10.745371+01:00] LiveSoccer.INFO: - {"get":"fixtures","parameters":{"id":"215662"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":215662,"referee":"H. Mastr\u00e1ngelo","timezone":"UTC","date":"2019-10-20T14:00:00+00:00","timestamp":1571580000,"periods":{"first":1571580000,"second":1571583600},"venue":{"id":33,"name":"Estadio Jos\u00e9 Mar\u00eda Minella","city":"Mar del Plata, Provincia de Buenos Aires"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":128,"name":"Liga Profesional Argentina","country":"Argentina","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/128.png","flag":"https:\/\/media-2.api-sports.io\/flags\/ar.svg","season":2019,"round":"Regular Season - 10"},"teams":{"home":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png","winner":true},"away":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}},"events":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}],"lineups":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","colors":null},"coach":{"id":3946,"name":"G. Hoyos","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/3946.png"},"formation":"4-3-3","startXI":[{"player":{"id":6258,"name":"L. Pocrnjic","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":6261,"name":"L. Galeano","number":6,"pos":"D","grid":"2:4"}},{"player":{"id":52701,"name":"M. Miers","number":19,"pos":"D","grid":"2:3"}},{"player":{"id":6268,"name":"L. Villalba","number":23,"pos":"D","grid":"2:2"}},{"player":{"id":6262,"name":"E. I\u00f1\u00edguez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":6474,"name":"G. Gil","number":5,"pos":"M","grid":"3:3"}},{"player":{"id":6269,"name":"F. Acevedo","number":8,"pos":"M","grid":"3:2"}},{"player":{"id":6212,"name":"L. Maciel","number":33,"pos":"M","grid":"3:1"}},{"player":{"id":6093,"name":"G. Ver\u00f3n","number":29,"pos":"F","grid":"4:3"}},{"player":{"id":6126,"name":"F. Andrada","number":10,"pos":"F","grid":"4:2"}},{"player":{"id":6561,"name":"N. Sol\u00eds","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":35845,"name":"H. Burbano","number":11,"pos":"M","grid":null}},{"player":{"id":6396,"name":"N. Bazzana","number":27,"pos":"D","grid":null}},{"player":{"id":6550,"name":"F. Grahl","number":22,"pos":"M","grid":null}},{"player":{"id":152779,"name":"F. Tobares","number":40,"pos":"F","grid":null}},{"player":{"id":6255,"name":"F. Assmann","number":35,"pos":"G","grid":null}},{"player":{"id":6399,"name":"F. Evangelista","number":20,"pos":"D","grid":null}},{"player":{"id":5426,"name":"C. Fara","number":2,"pos":"D","grid":null}}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png","colors":null},"coach":{"id":896,"name":"M. Soso","photo":"https:\/\/media-3.api-sports.io\/football\/coachs\/896.png"},"formation":"4-4-2","startXI":[{"player":{"id":5932,"name":"E. Unsain","number":22,"pos":"G","grid":"1:1"}},{"player":{"id":5935,"name":"R. Delgado","number":33,"pos":"D","grid":"2:4"}},{"player":{"id":6540,"name":"J. Rodr\u00edguez","number":28,"pos":"D","grid":"2:3"}},{"player":{"id":5936,"name":"J. Gonz\u00e1lez","number":4,"pos":"D","grid":"2:2"}},{"player":{"id":5991,"name":"H. Mart\u00ednez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":5912,"name":"N. Cardozo","number":10,"pos":"M","grid":"3:4"}},{"player":{"id":35695,"name":"D. Rodr\u00edguez","number":15,"pos":null,"grid":"3:3"}},{"player":{"id":6619,"name":"R. Loaiza","number":30,"pos":"M","grid":"3:2"}},{"player":{"id":5942,"name":"A. Castro","number":11,"pos":"M","grid":"3:1"}},{"player":{"id":5954,"name":"F. M\u00e1rquez","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":5952,"name":"N. Fern\u00e1ndez","number":29,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":5947,"name":"B. Merlini","number":7,"pos":"M","grid":null}},{"player":{"id":6059,"name":"G. Mainero","number":8,"pos":"M","grid":null}},{"player":{"id":70767,"name":"B. Ojeda","number":26,"pos":"M","grid":null}},{"player":{"id":9515,"name":"M. Ben\u00edtez","number":3,"pos":"D","grid":null}},{"player":{"id":5929,"name":"N. Avellaneda","number":17,"pos":"G","grid":null}},{"player":{"id":5943,"name":"F. Cerro","number":18,"pos":"M","grid":null}},{"player":{"id":6433,"name":"G. Piovi","number":16,"pos":"D","grid":null}}]}],"statistics":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}],"players":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":6258,"name":"Luciano Pocrnjic","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6258.png"},"statistics":[{"games":{"minutes":90,"number":1,"position":"G","rating":"7.1","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":0},"passes":{"total":13,"key":0,"accuracy":"44%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":6262,"name":"Emanuel I\u00f1iguez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6262.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":8,"key":1,"accuracy":"34%"},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6261,"name":"Leonel Galeano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6261.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":3,"blocks":3,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":2},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":52701,"name":"Marcos Miers","photo":"https:\/\/media-1.api-sports.io\/football\/players\/52701.png"},"statistics":[{"games":{"minutes":90,"number":19,"position":"D","rating":"7.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"46%"},"tackles":{"total":1,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6268,"name":"Lucas Villalba","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6268.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":1,"accuracy":"21%"},"tackles":{"total":1,"blocks":0,"interceptions":6},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6212,"name":"Leandro Maciel","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6212.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":0,"accuracy":"60%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":3},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6474,"name":"Gaston Gil Romero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6474.png"},"statistics":[{"games":{"minutes":79,"number":5,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"38%"},"tackles":{"total":4,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":0,"past":null},"fouls":{"drawn":0,"committed":5},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6269,"name":"Federico Gino","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6269.png"},"statistics":[{"games":{"minutes":90,"number":8,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":19,"key":1,"accuracy":"65%"},"tackles":{"total":2,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6093,"name":"Gonzalo Ver\u00f3n","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6093.png"},"statistics":[{"games":{"minutes":75,"number":29,"position":"F","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6126,"name":"Federico Andrada","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6126.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"F","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6561,"name":"Nazareno Solis","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6561.png"},"statistics":[{"games":{"minutes":74,"number":7,"position":"F","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"61%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6396,"name":"Nicol\u00e1s Bazzana","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6396.png"},"statistics":[{"games":{"minutes":15,"number":27,"position":"D","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35845,"name":"Hern\u00e1n Burbano","photo":"https:\/\/media-3.api-sports.io\/football\/players\/35845.png"},"statistics":[{"games":{"minutes":15,"number":11,"position":"M","rating":"3.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":2,"key":0,"accuracy":"40%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":2,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6550,"name":"Francisco Grahl","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6550.png"},"statistics":[{"games":{"minutes":11,"number":22,"position":"M","rating":"6.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":4,"key":0,"accuracy":"100%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":5932,"name":"Ezequiel Unsain","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5932.png"},"statistics":[{"games":{"minutes":90,"number":22,"position":"G","rating":"6.7","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":2},"passes":{"total":39,"key":0,"accuracy":"86%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":5936,"name":"Julio Gonz\u00e1lez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5936.png"},"statistics":[{"games":{"minutes":79,"number":4,"position":"D","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"64%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6540,"name":"Juan Rodriguez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6540.png"},"statistics":[{"games":{"minutes":90,"number":28,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":45,"key":0,"accuracy":"73%"},"tackles":{"total":3,"blocks":0,"interceptions":3},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5991,"name":"H\u00e9ctor Mart\u00ednez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5991.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":76,"key":0,"accuracy":"80%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5935,"name":"Rafael Delgado","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5935.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":37,"key":1,"accuracy":"74%"},"tackles":{"total":null,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5942,"name":"Alexis Castro","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5942.png"},"statistics":[{"games":{"minutes":73,"number":11,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":1,"past":2},"fouls":{"drawn":3,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5931,"name":"Diego Rodr\u00edguez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5931.png"},"statistics":[{"games":{"minutes":45,"number":15,"position":"M","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"94%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6619,"name":"Raul Loaiza","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6619.png"},"statistics":[{"games":{"minutes":90,"number":30,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":53,"key":0,"accuracy":"85%"},"tackles":{"total":1,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5912,"name":"Neri Cardozo","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5912.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":47,"key":0,"accuracy":"81%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5954,"name":"Fernando M\u00e1rquez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5954.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"5.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":4,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":1,"accuracy":"60%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":3},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5952,"name":"Nicol\u00e1s Fern\u00e1ndez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5952.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":1,"accuracy":"46%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":1,"past":1},"fouls":{"drawn":4,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":70767,"name":"Braian Ojeda","photo":"https:\/\/media-2.api-sports.io\/football\/players\/70767.png"},"statistics":[{"games":{"minutes":11,"number":26,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5947,"name":"Bautista Merlini","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5947.png"},"statistics":[{"games":{"minutes":45,"number":7,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"100%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":3,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6059,"name":"Guido Mainero","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6059.png"},"statistics":[{"games":{"minutes":17,"number":8,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":1,"accuracy":"77%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]}]} [] [] +[2023-03-20T20:20:10.947701+01:00] LiveSoccer.INFO: - {"get":"fixtures\/headtohead","parameters":{"h2h":"33-34"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:11.196755+01:00] LiveSoccer.INFO: - {"get":"fixtures\/statistics","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:11.447520+01:00] LiveSoccer.INFO: - {"get":"fixtures\/events","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:11.697675+01:00] LiveSoccer.INFO: - {"get":"fixtures\/lineups","parameters":{"fixture":"592872"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:11.889119+01:00] LiveSoccer.INFO: - {"get":"fixtures\/players","parameters":{"fixture":"169080"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:12.130756+01:00] LiveSoccer.INFO: - {"get":"injuries","parameters":{"league":"2","season":"2020"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:12.421484+01:00] LiveSoccer.INFO: - {"get":"predictions","parameters":{"fixture":"198772"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:12.645713+01:00] LiveSoccer.INFO: - {"get":"coachs","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:12.945752+01:00] LiveSoccer.INFO: - {"get":"players\/seasons","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:13.188292+01:00] LiveSoccer.INFO: - {"get":"players","parameters":{"id":"19088","season":"2018"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:13.423642+01:00] LiveSoccer.INFO: - {"get":"players\/squads","parameters":{"team":"33"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:13.659450+01:00] LiveSoccer.INFO: - {"get":"players\/topscorers","parameters":{"season":"2018","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:13.863760+01:00] LiveSoccer.INFO: - {"get":"players\/topassists","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:14.065365+01:00] LiveSoccer.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:14.321709+01:00] LiveSoccer.INFO: - {"get":"players\/topredcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:14.565327+01:00] LiveSoccer.INFO: - {"get":"transfers","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:14.819476+01:00] LiveSoccer.INFO: - {"get":"trophies","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:15.162653+01:00] LiveSoccer.INFO: - {"get":"sidelined","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:15.489757+01:00] LiveSoccer.INFO: - {"get":"odds\/live","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:15.861445+01:00] LiveSoccer.INFO: - {"get":"odds\/live\/bets","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:16.086823+01:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:16.306424+01:00] LiveSoccer.INFO: - {"get":"odds\/mapping","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:16.510678+01:00] LiveSoccer.INFO: - {"get":"odds\/bookmakers","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:16.726085+01:00] LiveSoccer.INFO: - {"get":"odds\/bets","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:20:16.962133+01:00] LiveSoccer.INFO: - {"get":"status","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:06.208944+01:00] LiveSoccer.INFO: - {"get":"countries","parameters":{"code":"FR","name":"england"},"errors":[],"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:06.965057+01:00] LiveSoccer.INFO: - {"get":"leagues","parameters":{"season":"2018","id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":33,"name":"World Cup - Qualification Oceania","type":"Cup","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/33.png"},"country":{"name":"World","code":null,"flag":null},"seasons":[{"year":2018,"start":"2015-08-31","end":"2017-09-05","current":false,"coverage":{"fixtures":{"events":true,"lineups":true,"statistics_fixtures":false,"statistics_players":false},"standings":false,"players":true,"top_scorers":true,"top_assists":true,"top_cards":true,"injuries":false,"predictions":true,"odds":false}}]}]} [] [] +[2023-03-20T20:23:07.439246+01:00] LiveSoccer.INFO: - {"get":"leagues\/seasons","parameters":[],"errors":[],"results":17,"paging":{"current":1,"total":1},"response":[2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024]} [] [] +[2023-03-20T20:23:08.630298+01:00] LiveSoccer.INFO: - {"get":"teams","parameters":{"id":"33"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"team":{"id":33,"name":"Manchester United","code":"MUN","country":"England","founded":1878,"national":false,"logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"venue":{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","capacity":76212,"surface":"grass","image":"https:\/\/media-1.api-sports.io\/football\/venues\/556.png"}}]} [] [] +[2023-03-20T20:23:09.511259+01:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:23:09.739697+01:00] LiveSoccer.INFO: - {"get":"teams\/statistics","parameters":{"league":"39","team":"33","season":"2019"},"errors":[],"results":11,"paging":{"current":1,"total":1},"response":{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-2.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019},"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/33.png"},"form":"WDLDWLDLDWLWDDWWDLWWLWLLDWWDWDWWWWDWDW","fixtures":{"played":{"home":19,"away":19,"total":38},"wins":{"home":10,"away":8,"total":18},"draws":{"home":7,"away":5,"total":12},"loses":{"home":2,"away":6,"total":8}},"goals":{"for":{"total":{"home":40,"away":26,"total":66},"average":{"home":"2.1","away":"1.4","total":"1.7"},"minute":{"0-15":{"total":4,"percentage":"6.06%"},"16-30":{"total":17,"percentage":"25.76%"},"31-45":{"total":11,"percentage":"16.67%"},"46-60":{"total":13,"percentage":"19.70%"},"61-75":{"total":10,"percentage":"15.15%"},"76-90":{"total":8,"percentage":"12.12%"},"91-105":{"total":3,"percentage":"4.55%"},"106-120":{"total":null,"percentage":null}}},"against":{"total":{"home":17,"away":19,"total":36},"average":{"home":"0.9","away":"1.0","total":"0.9"},"minute":{"0-15":{"total":6,"percentage":"16.67%"},"16-30":{"total":3,"percentage":"8.33%"},"31-45":{"total":7,"percentage":"19.44%"},"46-60":{"total":9,"percentage":"25.00%"},"61-75":{"total":3,"percentage":"8.33%"},"76-90":{"total":5,"percentage":"13.89%"},"91-105":{"total":3,"percentage":"8.33%"},"106-120":{"total":null,"percentage":null}}}},"biggest":{"streak":{"wins":4,"draws":2,"loses":2},"wins":{"home":"4-0","away":"0-3"},"loses":{"home":"0-2","away":"2-0"},"goals":{"for":{"home":5,"away":3},"against":{"home":2,"away":3}}},"clean_sheet":{"home":7,"away":6,"total":13},"failed_to_score":{"home":2,"away":6,"total":8},"penalty":{"scored":{"total":10,"percentage":"100.00%"},"missed":{"total":0,"percentage":"0%"},"total":10},"lineups":[{"formation":"4-2-3-1","played":32},{"formation":"3-4-1-2","played":4},{"formation":"3-4-2-1","played":1},{"formation":"4-3-1-2","played":1}],"cards":{"yellow":{"0-15":{"total":5,"percentage":"6.85%"},"16-30":{"total":5,"percentage":"6.85%"},"31-45":{"total":16,"percentage":"21.92%"},"46-60":{"total":12,"percentage":"16.44%"},"61-75":{"total":14,"percentage":"19.18%"},"76-90":{"total":21,"percentage":"28.77%"},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}},"red":{"0-15":{"total":null,"percentage":null},"16-30":{"total":null,"percentage":null},"31-45":{"total":null,"percentage":null},"46-60":{"total":null,"percentage":null},"61-75":{"total":null,"percentage":null},"76-90":{"total":null,"percentage":null},"91-105":{"total":null,"percentage":null},"106-120":{"total":null,"percentage":null}}}}} [] [] +[2023-03-20T20:23:09.978533+01:00] LiveSoccer.INFO: - {"get":"venues","parameters":{"name":"Old Trafford"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"id":556,"name":"Old Trafford","address":"Sir Matt Busby Way","city":"Manchester","country":"England","capacity":76212,"surface":"grass","image":"https:\/\/media-3.api-sports.io\/football\/venues\/556.png"}]} [] [] +[2023-03-20T20:23:10.478585+01:00] LiveSoccer.INFO: - {"get":"standings","parameters":{"league":"39","season":"2019"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"league":{"id":39,"name":"Premier League","country":"England","logo":"https:\/\/media-3.api-sports.io\/football\/leagues\/39.png","flag":"https:\/\/media-2.api-sports.io\/flags\/gb.svg","season":2019,"standings":[[{"rank":1,"team":{"id":40,"name":"Liverpool","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/40.png"},"points":99,"goalsDiff":52,"group":"Premier League","form":"WWLDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":32,"draw":3,"lose":3,"goals":{"for":85,"against":33}},"home":{"played":19,"win":18,"draw":1,"lose":0,"goals":{"for":52,"against":16}},"away":{"played":19,"win":14,"draw":2,"lose":3,"goals":{"for":33,"against":17}},"update":"2020-07-26T00:00:00+00:00"},{"rank":2,"team":{"id":50,"name":"Manchester City","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/50.png"},"points":81,"goalsDiff":67,"group":"Premier League","form":"WWWWW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":26,"draw":3,"lose":9,"goals":{"for":102,"against":35}},"home":{"played":19,"win":15,"draw":2,"lose":2,"goals":{"for":57,"against":13}},"away":{"played":19,"win":11,"draw":1,"lose":7,"goals":{"for":45,"against":22}},"update":"2020-07-26T00:00:00+00:00"},{"rank":3,"team":{"id":33,"name":"Manchester United","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/33.png"},"points":66,"goalsDiff":30,"group":"Premier League","form":"WDWDW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":18,"draw":12,"lose":8,"goals":{"for":66,"against":36}},"home":{"played":19,"win":10,"draw":7,"lose":2,"goals":{"for":40,"against":17}},"away":{"played":19,"win":8,"draw":5,"lose":6,"goals":{"for":26,"against":19}},"update":"2020-07-26T00:00:00+00:00"},{"rank":4,"team":{"id":49,"name":"Chelsea","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/49.png"},"points":66,"goalsDiff":15,"group":"Premier League","form":"WLWLW","status":"same","description":"Promotion - Champions League (Group Stage)","all":{"played":38,"win":20,"draw":6,"lose":12,"goals":{"for":69,"against":54}},"home":{"played":19,"win":11,"draw":3,"lose":5,"goals":{"for":30,"against":16}},"away":{"played":19,"win":9,"draw":3,"lose":7,"goals":{"for":39,"against":38}},"update":"2020-07-26T00:00:00+00:00"},{"rank":5,"team":{"id":46,"name":"Leicester","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/46.png"},"points":62,"goalsDiff":26,"group":"Premier League","form":"LLWLD","status":"same","description":"Promotion - Europa League (Group Stage)","all":{"played":38,"win":18,"draw":8,"lose":12,"goals":{"for":67,"against":41}},"home":{"played":19,"win":11,"draw":4,"lose":4,"goals":{"for":35,"against":17}},"away":{"played":19,"win":7,"draw":4,"lose":8,"goals":{"for":32,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":6,"team":{"id":47,"name":"Tottenham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/47.png"},"points":59,"goalsDiff":14,"group":"Premier League","form":"DWWWD","status":"same","description":"Promotion - Europa League (Qualification)","all":{"played":38,"win":16,"draw":11,"lose":11,"goals":{"for":61,"against":47}},"home":{"played":19,"win":12,"draw":3,"lose":4,"goals":{"for":36,"against":17}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":25,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":7,"team":{"id":39,"name":"Wolves","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/39.png"},"points":59,"goalsDiff":11,"group":"Premier League","form":"LWDWL","status":"same","description":null,"all":{"played":38,"win":15,"draw":14,"lose":9,"goals":{"for":51,"against":40}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":27,"against":19}},"away":{"played":19,"win":7,"draw":7,"lose":5,"goals":{"for":24,"against":21}},"update":"2020-07-26T00:00:00+00:00"},{"rank":8,"team":{"id":42,"name":"Arsenal","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/42.png"},"points":56,"goalsDiff":8,"group":"Premier League","form":"WLWLD","status":"same","description":null,"all":{"played":38,"win":14,"draw":14,"lose":10,"goals":{"for":56,"against":48}},"home":{"played":19,"win":10,"draw":6,"lose":3,"goals":{"for":36,"against":24}},"away":{"played":19,"win":4,"draw":8,"lose":7,"goals":{"for":20,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":9,"team":{"id":62,"name":"Sheffield Utd","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/62.png"},"points":54,"goalsDiff":0,"group":"Premier League","form":"LLLWW","status":"same","description":null,"all":{"played":38,"win":14,"draw":12,"lose":12,"goals":{"for":39,"against":39}},"home":{"played":19,"win":10,"draw":3,"lose":6,"goals":{"for":24,"against":15}},"away":{"played":19,"win":4,"draw":9,"lose":6,"goals":{"for":15,"against":24}},"update":"2020-07-26T00:00:00+00:00"},{"rank":10,"team":{"id":44,"name":"Burnley","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/44.png"},"points":54,"goalsDiff":-7,"group":"Premier League","form":"LWDDW","status":"same","description":null,"all":{"played":38,"win":15,"draw":9,"lose":14,"goals":{"for":43,"against":50}},"home":{"played":19,"win":8,"draw":4,"lose":7,"goals":{"for":24,"against":23}},"away":{"played":19,"win":7,"draw":5,"lose":7,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":11,"team":{"id":41,"name":"Southampton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/41.png"},"points":52,"goalsDiff":-9,"group":"Premier League","form":"WWDDD","status":"same","description":null,"all":{"played":38,"win":15,"draw":7,"lose":16,"goals":{"for":51,"against":60}},"home":{"played":19,"win":6,"draw":3,"lose":10,"goals":{"for":21,"against":35}},"away":{"played":19,"win":9,"draw":4,"lose":6,"goals":{"for":30,"against":25}},"update":"2020-07-26T00:00:00+00:00"},{"rank":12,"team":{"id":45,"name":"Everton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/45.png"},"points":49,"goalsDiff":-12,"group":"Premier League","form":"LWDLD","status":"same","description":null,"all":{"played":38,"win":13,"draw":10,"lose":15,"goals":{"for":44,"against":56}},"home":{"played":19,"win":8,"draw":7,"lose":4,"goals":{"for":24,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":20,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":13,"team":{"id":34,"name":"Newcastle","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/34.png"},"points":44,"goalsDiff":-20,"group":"Premier League","form":"LDLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":11,"lose":16,"goals":{"for":38,"against":58}},"home":{"played":19,"win":6,"draw":8,"lose":5,"goals":{"for":20,"against":21}},"away":{"played":19,"win":5,"draw":3,"lose":11,"goals":{"for":18,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":14,"team":{"id":52,"name":"Crystal Palace","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/52.png"},"points":43,"goalsDiff":-19,"group":"Premier League","form":"DLLLL","status":"same","description":null,"all":{"played":38,"win":11,"draw":10,"lose":17,"goals":{"for":31,"against":50}},"home":{"played":19,"win":6,"draw":5,"lose":8,"goals":{"for":15,"against":20}},"away":{"played":19,"win":5,"draw":5,"lose":9,"goals":{"for":16,"against":30}},"update":"2020-07-26T00:00:00+00:00"},{"rank":15,"team":{"id":51,"name":"Brighton","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/51.png"},"points":41,"goalsDiff":-15,"group":"Premier League","form":"WDDLL","status":"same","description":null,"all":{"played":38,"win":9,"draw":14,"lose":15,"goals":{"for":39,"against":54}},"home":{"played":19,"win":5,"draw":7,"lose":7,"goals":{"for":20,"against":27}},"away":{"played":19,"win":4,"draw":7,"lose":8,"goals":{"for":19,"against":27}},"update":"2020-07-26T00:00:00+00:00"},{"rank":16,"team":{"id":48,"name":"West Ham","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/48.png"},"points":39,"goalsDiff":-13,"group":"Premier League","form":"DDWWL","status":"same","description":null,"all":{"played":38,"win":10,"draw":9,"lose":19,"goals":{"for":49,"against":62}},"home":{"played":19,"win":6,"draw":4,"lose":9,"goals":{"for":30,"against":33}},"away":{"played":19,"win":4,"draw":5,"lose":10,"goals":{"for":19,"against":29}},"update":"2020-07-26T00:00:00+00:00"},{"rank":17,"team":{"id":66,"name":"Aston Villa","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/66.png"},"points":35,"goalsDiff":-26,"group":"Premier League","form":"DWDWL","status":"same","description":null,"all":{"played":38,"win":9,"draw":8,"lose":21,"goals":{"for":41,"against":67}},"home":{"played":19,"win":7,"draw":3,"lose":9,"goals":{"for":22,"against":30}},"away":{"played":19,"win":2,"draw":5,"lose":12,"goals":{"for":19,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":18,"team":{"id":35,"name":"Bournemouth","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/35.png"},"points":34,"goalsDiff":-25,"group":"Premier League","form":"WLLWD","status":"same","description":"Relegation - Championship","all":{"played":38,"win":9,"draw":7,"lose":22,"goals":{"for":40,"against":65}},"home":{"played":19,"win":5,"draw":6,"lose":8,"goals":{"for":22,"against":30}},"away":{"played":19,"win":4,"draw":1,"lose":14,"goals":{"for":18,"against":35}},"update":"2020-07-26T00:00:00+00:00"},{"rank":19,"team":{"id":38,"name":"Watford","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/38.png"},"points":34,"goalsDiff":-28,"group":"Premier League","form":"LLLWW","status":"same","description":"Relegation - Championship","all":{"played":38,"win":8,"draw":10,"lose":20,"goals":{"for":36,"against":64}},"home":{"played":19,"win":6,"draw":6,"lose":7,"goals":{"for":22,"against":27}},"away":{"played":19,"win":2,"draw":4,"lose":13,"goals":{"for":14,"against":37}},"update":"2020-07-26T00:00:00+00:00"},{"rank":20,"team":{"id":71,"name":"Norwich","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/71.png"},"points":21,"goalsDiff":-49,"group":"Premier League","form":"LLLLL","status":"same","description":"Relegation - Championship","all":{"played":38,"win":5,"draw":6,"lose":27,"goals":{"for":26,"against":75}},"home":{"played":19,"win":4,"draw":3,"lose":12,"goals":{"for":19,"against":37}},"away":{"played":19,"win":1,"draw":3,"lose":15,"goals":{"for":7,"against":38}},"update":"2020-07-26T00:00:00+00:00"}]]}}]} [] [] +[2023-03-20T20:23:11.171100+01:00] LiveSoccer.INFO: - {"get":"fixtures\/rounds","parameters":{"league":"39","season":"2019"},"errors":[],"results":38,"paging":{"current":1,"total":1},"response":["Regular Season - 1","Regular Season - 2","Regular Season - 3","Regular Season - 4","Regular Season - 5","Regular Season - 6","Regular Season - 7","Regular Season - 8","Regular Season - 9","Regular Season - 10","Regular Season - 11","Regular Season - 12","Regular Season - 13","Regular Season - 14","Regular Season - 15","Regular Season - 16","Regular Season - 17","Regular Season - 18","Regular Season - 19","Regular Season - 20","Regular Season - 21","Regular Season - 22","Regular Season - 23","Regular Season - 24","Regular Season - 25","Regular Season - 26","Regular Season - 27","Regular Season - 28","Regular Season - 29","Regular Season - 30","Regular Season - 31","Regular Season - 32","Regular Season - 33","Regular Season - 34","Regular Season - 35","Regular Season - 36","Regular Season - 37","Regular Season - 38"]} [] [] +[2023-03-20T20:23:12.384931+01:00] LiveSoccer.INFO: - {"get":"fixtures","parameters":{"id":"215662"},"errors":[],"results":1,"paging":{"current":1,"total":1},"response":[{"fixture":{"id":215662,"referee":"H. Mastr\u00e1ngelo","timezone":"UTC","date":"2019-10-20T14:00:00+00:00","timestamp":1571580000,"periods":{"first":1571580000,"second":1571583600},"venue":{"id":33,"name":"Estadio Jos\u00e9 Mar\u00eda Minella","city":"Mar del Plata, Provincia de Buenos Aires"},"status":{"long":"Match Finished","short":"FT","elapsed":90}},"league":{"id":128,"name":"Liga Profesional Argentina","country":"Argentina","logo":"https:\/\/media-1.api-sports.io\/football\/leagues\/128.png","flag":"https:\/\/media-2.api-sports.io\/flags\/ar.svg","season":2019,"round":"Regular Season - 10"},"teams":{"home":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png","winner":true},"away":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","winner":false}},"goals":{"home":1,"away":0},"score":{"halftime":{"home":1,"away":0},"fulltime":{"home":1,"away":0},"extratime":{"home":null,"away":null},"penalty":{"home":null,"away":null}},"events":[{"time":{"elapsed":25,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"F. Andrada"},"assist":{"id":null,"name":null},"type":"Goal","detail":"Normal Goal","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"Julio Gonz\u00e1lez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":33,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6126,"name":"Federico Andrada"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":36,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5931,"name":"Diego Rodr\u00edguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":39,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5954,"name":"Fernando M\u00e1rquez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":44,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":6262,"name":"Emanuel I\u00f1iguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":46,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":35695,"name":"D. Rodr\u00edguez"},"assist":{"id":5947,"name":"B. Merlini"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":62,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"Gonzalo Ver\u00f3n"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":73,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":5942,"name":"A. Castro"},"assist":{"id":6059,"name":"G. Mainero"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":74,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6561,"name":"N. Sol\u00eds"},"assist":{"id":35845,"name":"H. Burbano"},"type":"subst","detail":"Substitution 1","comments":null},{"time":{"elapsed":75,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":6093,"name":"G. Ver\u00f3n"},"assist":{"id":6396,"name":"N. Bazzana"},"type":"subst","detail":"Substitution 2","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/463.png"},"player":{"id":6474,"name":"G. Gil"},"assist":{"id":6550,"name":"F. Grahl"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":79,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png"},"player":{"id":5936,"name":"J. Gonz\u00e1lez"},"assist":{"id":70767,"name":"B. Ojeda"},"type":"subst","detail":"Substitution 3","comments":null},{"time":{"elapsed":84,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png"},"player":{"id":6540,"name":"Juan Rodriguez"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":85,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Red Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"player":{"id":5912,"name":"Neri Cardozo"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null},{"time":{"elapsed":90,"extra":null},"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png"},"player":{"id":35845,"name":"Hern\u00e1n Burbano"},"assist":{"id":null,"name":null},"type":"Card","detail":"Yellow Card","comments":null}],"lineups":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/463.png","colors":null},"coach":{"id":3946,"name":"G. Hoyos","photo":"https:\/\/media-2.api-sports.io\/football\/coachs\/3946.png"},"formation":"4-3-3","startXI":[{"player":{"id":6258,"name":"L. Pocrnjic","number":1,"pos":"G","grid":"1:1"}},{"player":{"id":6261,"name":"L. Galeano","number":6,"pos":"D","grid":"2:4"}},{"player":{"id":52701,"name":"M. Miers","number":19,"pos":"D","grid":"2:3"}},{"player":{"id":6268,"name":"L. Villalba","number":23,"pos":"D","grid":"2:2"}},{"player":{"id":6262,"name":"E. I\u00f1\u00edguez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":6474,"name":"G. Gil","number":5,"pos":"M","grid":"3:3"}},{"player":{"id":6269,"name":"F. Acevedo","number":8,"pos":"M","grid":"3:2"}},{"player":{"id":6212,"name":"L. Maciel","number":33,"pos":"M","grid":"3:1"}},{"player":{"id":6093,"name":"G. Ver\u00f3n","number":29,"pos":"F","grid":"4:3"}},{"player":{"id":6126,"name":"F. Andrada","number":10,"pos":"F","grid":"4:2"}},{"player":{"id":6561,"name":"N. Sol\u00eds","number":7,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":35845,"name":"H. Burbano","number":11,"pos":"M","grid":null}},{"player":{"id":6396,"name":"N. Bazzana","number":27,"pos":"D","grid":null}},{"player":{"id":6550,"name":"F. Grahl","number":22,"pos":"M","grid":null}},{"player":{"id":152779,"name":"F. Tobares","number":40,"pos":"F","grid":null}},{"player":{"id":6255,"name":"F. Assmann","number":35,"pos":"G","grid":null}},{"player":{"id":6399,"name":"F. Evangelista","number":20,"pos":"D","grid":null}},{"player":{"id":5426,"name":"C. Fara","number":2,"pos":"D","grid":null}}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-3.api-sports.io\/football\/teams\/442.png","colors":null},"coach":{"id":896,"name":"M. Soso","photo":"https:\/\/media-3.api-sports.io\/football\/coachs\/896.png"},"formation":"4-4-2","startXI":[{"player":{"id":5932,"name":"E. Unsain","number":22,"pos":"G","grid":"1:1"}},{"player":{"id":5935,"name":"R. Delgado","number":33,"pos":"D","grid":"2:4"}},{"player":{"id":6540,"name":"J. Rodr\u00edguez","number":28,"pos":"D","grid":"2:3"}},{"player":{"id":5936,"name":"J. Gonz\u00e1lez","number":4,"pos":"D","grid":"2:2"}},{"player":{"id":5991,"name":"H. Mart\u00ednez","number":21,"pos":"D","grid":"2:1"}},{"player":{"id":5912,"name":"N. Cardozo","number":10,"pos":"M","grid":"3:4"}},{"player":{"id":35695,"name":"D. Rodr\u00edguez","number":15,"pos":null,"grid":"3:3"}},{"player":{"id":6619,"name":"R. Loaiza","number":30,"pos":"M","grid":"3:2"}},{"player":{"id":5942,"name":"A. Castro","number":11,"pos":"M","grid":"3:1"}},{"player":{"id":5954,"name":"F. M\u00e1rquez","number":9,"pos":"F","grid":"4:2"}},{"player":{"id":5952,"name":"N. Fern\u00e1ndez","number":29,"pos":"F","grid":"4:1"}}],"substitutes":[{"player":{"id":5947,"name":"B. Merlini","number":7,"pos":"M","grid":null}},{"player":{"id":6059,"name":"G. Mainero","number":8,"pos":"M","grid":null}},{"player":{"id":70767,"name":"B. Ojeda","number":26,"pos":"M","grid":null}},{"player":{"id":9515,"name":"M. Ben\u00edtez","number":3,"pos":"D","grid":null}},{"player":{"id":5929,"name":"N. Avellaneda","number":17,"pos":"G","grid":null}},{"player":{"id":5943,"name":"F. Cerro","number":18,"pos":"M","grid":null}},{"player":{"id":6433,"name":"G. Piovi","number":16,"pos":"D","grid":null}}]}],"statistics":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png"},"statistics":[{"type":"Shots on Goal","value":3},{"type":"Shots off Goal","value":2},{"type":"Total Shots","value":9},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":5},{"type":"Fouls","value":22},{"type":"Corner Kicks","value":3},{"type":"Offsides","value":1},{"type":"Ball Possession","value":"32%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":1},{"type":"Goalkeeper Saves","value":null},{"type":"Total passes","value":242},{"type":"Passes accurate","value":121},{"type":"Passes %","value":"50%"}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/442.png"},"statistics":[{"type":"Shots on Goal","value":null},{"type":"Shots off Goal","value":3},{"type":"Total Shots","value":7},{"type":"Blocked Shots","value":4},{"type":"Shots insidebox","value":4},{"type":"Shots outsidebox","value":3},{"type":"Fouls","value":10},{"type":"Corner Kicks","value":5},{"type":"Offsides","value":9},{"type":"Ball Possession","value":"68%"},{"type":"Yellow Cards","value":5},{"type":"Red Cards","value":null},{"type":"Goalkeeper Saves","value":2},{"type":"Total passes","value":514},{"type":"Passes accurate","value":397},{"type":"Passes %","value":"77%"}]}],"players":[{"team":{"id":463,"name":"Aldosivi","logo":"https:\/\/media-2.api-sports.io\/football\/teams\/463.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":6258,"name":"Luciano Pocrnjic","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6258.png"},"statistics":[{"games":{"minutes":90,"number":1,"position":"G","rating":"7.1","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":0},"passes":{"total":13,"key":0,"accuracy":"44%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":6262,"name":"Emanuel I\u00f1iguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6262.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":8,"key":1,"accuracy":"34%"},"tackles":{"total":3,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6261,"name":"Leonel Galeano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6261.png"},"statistics":[{"games":{"minutes":90,"number":6,"position":"D","rating":"7.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":3,"blocks":3,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":2},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":52701,"name":"Marcos Miers","photo":"https:\/\/media-1.api-sports.io\/football\/players\/52701.png"},"statistics":[{"games":{"minutes":90,"number":19,"position":"D","rating":"7.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"46%"},"tackles":{"total":1,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6268,"name":"Lucas Villalba","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6268.png"},"statistics":[{"games":{"minutes":90,"number":23,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":1},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":5,"key":1,"accuracy":"21%"},"tackles":{"total":1,"blocks":0,"interceptions":6},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":0,"committed":3},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6212,"name":"Leandro Maciel","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6212.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":0,"accuracy":"60%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":3},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6474,"name":"Gaston Gil Romero","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6474.png"},"statistics":[{"games":{"minutes":79,"number":5,"position":"M","rating":"6.6","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":0,"accuracy":"38%"},"tackles":{"total":4,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":0,"past":null},"fouls":{"drawn":0,"committed":5},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6269,"name":"Federico Gino","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6269.png"},"statistics":[{"games":{"minutes":90,"number":8,"position":"M","rating":"6.9","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":19,"key":1,"accuracy":"65%"},"tackles":{"total":2,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6093,"name":"Gonzalo Ver\u00f3n","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6093.png"},"statistics":[{"games":{"minutes":75,"number":29,"position":"F","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":12,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6126,"name":"Federico Andrada","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6126.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"F","rating":"6.7","captain":false,"substitute":false},"offsides":null,"shots":{"total":3,"on":2},"goals":{"total":1,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"55%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":2},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6561,"name":"Nazareno Solis","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6561.png"},"statistics":[{"games":{"minutes":74,"number":7,"position":"F","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":11,"key":0,"accuracy":"61%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6396,"name":"Nicol\u00e1s Bazzana","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6396.png"},"statistics":[{"games":{"minutes":15,"number":27,"position":"D","rating":"6.5","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":0,"key":0,"accuracy":"0%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":35845,"name":"Hern\u00e1n Burbano","photo":"https:\/\/media-2.api-sports.io\/football\/players\/35845.png"},"statistics":[{"games":{"minutes":15,"number":11,"position":"M","rating":"3.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":2,"key":0,"accuracy":"40%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":2,"red":1},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6550,"name":"Francisco Grahl","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6550.png"},"statistics":[{"games":{"minutes":11,"number":22,"position":"M","rating":"6.7","captain":false,"substitute":true},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":4,"key":0,"accuracy":"100%"},"tackles":{"total":2,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]},{"team":{"id":442,"name":"Defensa Y Justicia","logo":"https:\/\/media-1.api-sports.io\/football\/teams\/442.png","update":"2020-05-13T18:19:45+00:00"},"players":[{"player":{"id":5932,"name":"Ezequiel Unsain","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5932.png"},"statistics":[{"games":{"minutes":90,"number":22,"position":"G","rating":"6.7","captain":true,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":1,"assists":null,"saves":2},"passes":{"total":39,"key":0,"accuracy":"86%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":0}}]},{"player":{"id":5936,"name":"Julio Gonz\u00e1lez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5936.png"},"statistics":[{"games":{"minutes":79,"number":4,"position":"D","rating":"6.2","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":22,"key":0,"accuracy":"64%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":2,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6540,"name":"Juan Rodriguez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/6540.png"},"statistics":[{"games":{"minutes":90,"number":28,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":45,"key":0,"accuracy":"73%"},"tackles":{"total":3,"blocks":0,"interceptions":3},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":2,"past":1},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5991,"name":"H\u00e9ctor Mart\u00ednez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5991.png"},"statistics":[{"games":{"minutes":90,"number":21,"position":"D","rating":"7.0","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":76,"key":0,"accuracy":"80%"},"tackles":{"total":2,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5935,"name":"Rafael Delgado","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5935.png"},"statistics":[{"games":{"minutes":90,"number":33,"position":"D","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":37,"key":1,"accuracy":"74%"},"tackles":{"total":null,"blocks":0,"interceptions":2},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":3,"past":null},"fouls":{"drawn":2,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5942,"name":"Alexis Castro","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5942.png"},"statistics":[{"games":{"minutes":73,"number":11,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":9,"key":0,"accuracy":"50%"},"tackles":{"total":null,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":3,"success":1,"past":2},"fouls":{"drawn":3,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5931,"name":"Diego Rodr\u00edguez","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5931.png"},"statistics":[{"games":{"minutes":45,"number":15,"position":"M","rating":"6.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"94%"},"tackles":{"total":null,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":null},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6619,"name":"Raul Loaiza","photo":"https:\/\/media-1.api-sports.io\/football\/players\/6619.png"},"statistics":[{"games":{"minutes":90,"number":30,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":53,"key":0,"accuracy":"85%"},"tackles":{"total":1,"blocks":1,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":0,"success":0,"past":1},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5912,"name":"Neri Cardozo","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5912.png"},"statistics":[{"games":{"minutes":90,"number":10,"position":"M","rating":"7.3","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":47,"key":0,"accuracy":"81%"},"tackles":{"total":3,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":1},"fouls":{"drawn":0,"committed":1},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5954,"name":"Fernando M\u00e1rquez","photo":"https:\/\/media-2.api-sports.io\/football\/players\/5954.png"},"statistics":[{"games":{"minutes":90,"number":9,"position":"F","rating":"5.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":4,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":14,"key":1,"accuracy":"60%"},"tackles":{"total":null,"blocks":1,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":3},"fouls":{"drawn":1,"committed":2},"cards":{"yellow":1,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5952,"name":"Nicol\u00e1s Fern\u00e1ndez","photo":"https:\/\/media-1.api-sports.io\/football\/players\/5952.png"},"statistics":[{"games":{"minutes":90,"number":29,"position":"F","rating":"6.5","captain":false,"substitute":false},"offsides":null,"shots":{"total":2,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":1,"accuracy":"46%"},"tackles":{"total":1,"blocks":0,"interceptions":1},"duels":{"total":null,"won":null},"dribbles":{"attempts":5,"success":1,"past":1},"fouls":{"drawn":4,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":70767,"name":"Braian Ojeda","photo":"https:\/\/media-1.api-sports.io\/football\/players\/70767.png"},"statistics":[{"games":{"minutes":11,"number":26,"position":"M","rating":"6.4","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":6,"key":0,"accuracy":"66%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":0,"past":null},"fouls":{"drawn":1,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":5947,"name":"Bautista Merlini","photo":"https:\/\/media-3.api-sports.io\/football\/players\/5947.png"},"statistics":[{"games":{"minutes":45,"number":7,"position":"M","rating":"6.8","captain":false,"substitute":false},"offsides":null,"shots":{"total":1,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":18,"key":0,"accuracy":"100%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":1,"success":1,"past":null},"fouls":{"drawn":3,"committed":1},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]},{"player":{"id":6059,"name":"Guido Mainero","photo":"https:\/\/media-3.api-sports.io\/football\/players\/6059.png"},"statistics":[{"games":{"minutes":17,"number":8,"position":"M","rating":"7.1","captain":false,"substitute":false},"offsides":null,"shots":{"total":0,"on":0},"goals":{"total":null,"conceded":0,"assists":null,"saves":null},"passes":{"total":7,"key":1,"accuracy":"77%"},"tackles":{"total":null,"blocks":0,"interceptions":0},"duels":{"total":null,"won":null},"dribbles":{"attempts":2,"success":1,"past":null},"fouls":{"drawn":2,"committed":0},"cards":{"yellow":0,"red":0},"penalty":{"won":null,"commited":null,"scored":0,"missed":0,"saved":null}}]}]}]}]} [] [] +[2023-03-20T20:23:12.760051+01:00] LiveSoccer.INFO: - {"get":"fixtures\/headtohead","parameters":{"h2h":"33-34"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:13.027772+01:00] LiveSoccer.INFO: - {"get":"fixtures\/statistics","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:13.249673+01:00] LiveSoccer.INFO: - {"get":"fixtures\/events","parameters":{"fixture":"215662"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:13.448146+01:00] LiveSoccer.INFO: - {"get":"fixtures\/lineups","parameters":{"fixture":"592872"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:13.664939+01:00] LiveSoccer.INFO: - {"get":"fixtures\/players","parameters":{"fixture":"169080"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:13.898673+01:00] LiveSoccer.INFO: - {"get":"injuries","parameters":{"league":"2","season":"2020"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:14.129221+01:00] LiveSoccer.INFO: - {"get":"predictions","parameters":{"fixture":"198772"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:14.870484+01:00] LiveSoccer.INFO: - {"get":"coachs","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:15.299844+01:00] LiveSoccer.INFO: - {"get":"players\/seasons","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:15.504871+01:00] LiveSoccer.INFO: - {"get":"players","parameters":{"id":"19088","season":"2018"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:15.704838+01:00] LiveSoccer.INFO: - {"get":"players\/squads","parameters":{"team":"33"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:15.936252+01:00] LiveSoccer.INFO: - {"get":"players\/topscorers","parameters":{"season":"2018","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:16.137996+01:00] LiveSoccer.INFO: - {"get":"players\/topassists","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:16.351481+01:00] LiveSoccer.INFO: - {"get":"players\/topyellowcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:16.578015+01:00] LiveSoccer.INFO: - {"get":"players\/topredcards","parameters":{"season":"2020","league":"61"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:16.779186+01:00] LiveSoccer.INFO: - {"get":"transfers","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:17.106345+01:00] LiveSoccer.INFO: - {"get":"trophies","parameters":{"player":"35845"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:17.329240+01:00] LiveSoccer.INFO: - {"get":"sidelined","parameters":{"player":"276"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:17.564129+01:00] LiveSoccer.INFO: - {"get":"odds\/live","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:17.774360+01:00] LiveSoccer.INFO: - {"get":"odds\/live\/bets","parameters":{"id":"1"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:18.011543+01:00] LiveSoccer.INFO: - {"get":"odds","parameters":{"date":"2020-05-15"},"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:18.283097+01:00] LiveSoccer.INFO: - {"get":"odds\/mapping","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:18.533753+01:00] LiveSoccer.INFO: - {"get":"odds\/bookmakers","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:18.775868+01:00] LiveSoccer.INFO: - {"get":"odds\/bets","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] +[2023-03-20T20:23:18.985039+01:00] LiveSoccer.INFO: - {"get":"status","parameters":[],"errors":{"rateLimit":"Too many requests. Your rate limit is 10 requests per minute."},"results":0,"paging":{"current":1,"total":1},"response":[]} [] [] diff --git a/src/Log/Record.php b/src/Log/Record.php new file mode 100644 index 0000000..deb58e2 --- /dev/null +++ b/src/Log/Record.php @@ -0,0 +1,32 @@ +pushHandler(new StreamHandler(__DIR__ . '/'. self::logFile)); + + $stack = HandlerStack::create(); + $stack->push(Middleware::log( + $logger, + new MessageFormatter('{req_body} - {res_body}') + )); + return $stack; + } + +} diff --git a/src/Message/ResponseTransformer.php b/src/Message/ResponseTransformer.php new file mode 100644 index 0000000..e82708e --- /dev/null +++ b/src/Message/ResponseTransformer.php @@ -0,0 +1,41 @@ +response = $response; + } + + public function getBody(): string + { + return (string) $this->response->getBody(); + } + public function toArray(): array + { + $body = (string) $this->response->getBody(); + + if (strpos($this->response->getHeaderLine('Content-Type'), 'application/json') === 0) { + $content = json_decode($body, true); + if (JSON_ERROR_NONE === json_last_error()) { + return $content; + } + + throw new TransformResponseException('Error transforming response to array. JSON_ERROR: ' + . json_last_error() . ' --' . $body . '---'); + } + + throw new TransformResponseException('Error transforming response to array. Content-Type + is not application/json'); + } + +} diff --git a/tests/LiveSoccerClientTest.php b/tests/LiveSoccerClientTest.php new file mode 100644 index 0000000..57040ba --- /dev/null +++ b/tests/LiveSoccerClientTest.php @@ -0,0 +1,262 @@ +countries()->getAll(['code' => 'FR', 'name' => 'england']); + $this->assertIsArray($variable); + } + public function testgetLeagues() + { + $client = new LiveScoreClient(); + $variable =$client->leagues()->getLeagues(['season' => '2018', 'id' => '33']); + $this->assertIsArray($variable); + } + public function testgetLeaguesSeasons() + { + $client = new LiveScoreClient(); + $variable = $client->leagues()->getLeaguesSeasons(); + $this->assertIsArray($variable); + } + public function testgetTeamsInformation() + { + $client = new LiveScoreClient(); + $variable = $client->team()->getTeamsInformation(['id' => "33"]); + $this->assertIsArray($variable); + } + + public function testgetTeamsStatistics() + { + $client = new LiveScoreClient(); + $variable = $client->team()->getTeamsStatistics(['league' => '39', 'team' => '33', 'season' => '2019']); + $this->assertIsArray($variable); + } + + public function testgetTeamCountries() + { + $client = new LiveScoreClient(); + $variable = $client->team()->getTeamsStatistics(['league' => '39', 'team' => '33', 'season' => '2019']); + $this->assertIsArray($variable); + } + + public function testgetVenues() + { + $client = new LiveScoreClient(); + $variable = $client->venues()->getVenues([ 'name' => 'Old Trafford']); + $this->assertIsArray($variable); + } + + public function testgetStandings() + { + $client = new LiveScoreClient(); + $variable = $client->standings()->getStandings([ 'league' => '39', 'season' => '2019']); + $this->assertIsArray($variable); + } + + public function testgetRounds() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getRounds(['league' => '39', 'season' => 2019]); + $this->assertIsArray($variable); + } + + public function testgetFixtures() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getFixtures(['id' => '215662']); + $this->assertIsArray($variable); + } + + public function testgetHeadToHead() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getHeadToHead(['h2h' => '33-34']); + $this->assertIsArray($variable); + } + + public function testgetStatistics() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getStatistics(['fixture' => '215662']); + $this->assertIsArray($variable); + } + + public function testgetEvents() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getEvents(['fixture' => '215662']); + $this->assertIsArray($variable); + } + + public function testgetLineups() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getLineups(['fixture' => '592872']); + $this->assertIsArray($variable); + } + + public function testgetPlayersStatistics() + { + $client = new LiveScoreClient(); + $variable = $client->fixtures()->getPlayersStatistics(['fixture' => '169080']); + $this->assertIsArray($variable); + } + + public function testgetInjuries() + { + $client = new LiveScoreClient(); + $variable = $client->injuries()->getInjuries(['league' => '2', 'season' => '2020']); + $this->assertIsArray($variable); + } + + public function testgetPredictions() + { + $client = new LiveScoreClient(); + $variable = $client->predictions()->getPredictions(['fixture' => '198772']); + $this->assertIsArray($variable); + } + + public function testgetCoachs() + { + $client = new LiveScoreClient(); + $variable = $client->coachs()->getCoachs(['id' => '1']); + $this->assertIsArray($variable); + } + + public function testgetSeasons() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getSeasons(['player' => '276']); + $this->assertIsArray($variable); + } + + public function testgetPlayers() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getPlayers(['id' => '19088', 'season' => '2018']); + $this->assertIsArray($variable); + } + + public function testgetSquads() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getSquads(['team' => '33']); + $this->assertIsArray($variable); + } + + public function testgetTopScorers() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getTopScorers(['season' => '2018', 'league' => '61']); + $this->assertIsArray($variable); + } + + public function testgetTopAssists() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getTopAssists(['season' => '2020', 'league' => '61']); + $this->assertIsArray($variable); + } + + public function testgetTopYellowCards() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getTopYellowCards(['season' => '2020', 'league' => '61']); + $this->assertIsArray($variable); + } + + public function testgetTopRedCards() + { + $client = new LiveScoreClient(); + $variable = $client->players()->getTopRedCards(['season' => '2020', 'league' => '61']); + $this->assertIsArray($variable); + } + + public function testgetTransfer() + { + $client = new LiveScoreClient(); + $variable = $client->transfer()->getTransfer(['player' => '35845']); + $this->assertIsArray($variable); + } + + public function testgetTrophies() + { + $client = new LiveScoreClient(); + $variable = $client->trophies()->getTrophies(['player' => '35845']); + $this->assertIsArray($variable); + } + + public function testgetSidelined() + { + $client = new LiveScoreClient(); + $variable = $client->sidelined()->getSidelined(['player' => '276']); + $this->assertIsArray($variable); + } + + public function testgetOddsLive() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOddsLive(); + $this->assertIsArray($variable); + } + + public function testgetOddsLivBets() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOddsLivBets(['id' => "1"]); + $this->assertIsArray($variable); + } + + public function testgetOdds() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOdds(['date' => "2020-05-15"]); + $this->assertIsArray($variable); + } + + public function testgetOddsMapping() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOddsMapping(); + $this->assertIsArray($variable); + } + + public function testgetOddsBookmakers() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOddsBookmakers(); + $this->assertIsArray($variable); + } + + public function testgetOddsBets() + { + $client = new LiveScoreClient(); + $variable = $client->odds()->getOddsBets(); + $this->assertIsArray($variable); + } + + public function testgetStatus() + { + $client = new LiveScoreClient(); + $variable = $client->general()->getStatus(); + $this->assertIsArray($variable); + } + + + + + + + + + + + +}