PHP code example of tetzilla / sportmonks-football-api
1. Go to this page and download the library: Download tetzilla/sportmonks-football-api library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tetzilla / sportmonks-football-api example snippets
use Sportmonks\Football\FootballApi;
...
// Basic API call for all Bookmakers
$response = FootballApi::bookmakers()->getAll();
// API call for Fixtures with page specified
$response = FootballApi::fixtures()
->setPage(3)
->getByDate('2023-03-19');
// API call for Fixtures with ures()
->setInclude(['scores', 'lineups', 'events'])
->getByDate('2023-03-19');
// API call for Fixtures with filters
$response = FootballApi::fixtures()
->setInclude(['events','statistics.type'])
->setFilters(['eventTypes' => [18,14]])
->getByDate('2023-03-19');
// API call for Fixtures with deleted filter
$response = FootballApi::fixtures()
->setFilters(['deleted'])
->all();
// API call for Fixtures with populate (1000 per page)
$response = FootballApi::fixtures()
->setFilters(['populate'])
->all();
$response = FootballApi::livescores()->all();
$response = FootballApi::livescores()->inplay();
$response = FootballApi::livescores()->latest();
$response = FootballApi::fixtures()->all();
$response = FootballApi::fixtures()->getById($fixtureId);
$response = FootballApi::fixtures()->getByMultipleIds([$fixtureId1,$fixtureIds2,...]);
$response = FootballApi::fixtures()->getByDate($date);
$response = FootballApi::fixtures()->getByDateRange($dateFrom, $dateTo);
$response = FootballApi::fixtures()->getByDateRangeForTeam($dateFrom, $dateTo, $teamId);
$response = FootballApi::fixtures()->getHeadToHead($teamId1, $teamId2);
$response = FootballApi::fixtures()->getUpcommingByMarketId($marketId);
$response = FootballApi::fixtures()->search($searchQuery);
$response = FootballApi::fixtures()->getLastUpdated();
$response = FootballApi::states()->all();
$response = FootballApi::states()->getById();
$response = FootballApi::leagues()->all();
$response = FootballApi::leagues()->getById($leagueId);
$response = FootballApi::leagues()->live();
$response = FootballApi::leagues()->getByFixtureDate($date);
$response = FootballApi::leagues()->getByCountryId($countryId);
$response = FootballApi::leagues()->search($searchQuery);
$response = FootballApi::leagues()->getAllByTeamId($teamId);
$response = FootballApi::leagues()->getCurrentByTeamId($teamId);
$response = FootballApi::season()->all();
$response = FootballApi::season()->getById($seasonId);
$response = FootballApi::season()->getByTeamId($teamId);
$response = FootballApi::season()->search($searchQuery);
$response = FootballApi::schedules()->bySeasonId($seasonId);
$response = FootballApi::schedules()->byTeamId($teamId);
$response = FootballApi::schedules()->bySeasonAndTeamId($seasonId, $teamId);
$response = FootballApi::stages()->all();
$response = FootballApi::stages()->getById($stageId);
$response = FootballApi::stages()->getBySeasonId($seasonId);
$response = FootballApi::stages()->search($searchQuery);
$response = FootballApi::rounds()->all();
$response = FootballApi::rounds()->getById($roundId);
$response = FootballApi::rounds()->getBySeasonId($seasonId);
$response = FootballApi::rounds()->search($searchQuery);
$response = FootballApi::standings()->all();
$response = FootballApi::standings()->getBySeasonId($seasonId);
$response = FootballApi::standings()->getByRoundId($roundId);
$response = FootballApi::standings()->getCorrectionsBySeasonId($seasonId);
$response = FootballApi::standings()->getLiveByLeagueId($leagueId);
$response = FootballApi::topscorers()->getBySeasonId($seasonId);
$response = FootballApi::topscorers()->getByStageId($stageId);
$response = FootballApi::teams()->all();
$response = FootballApi::teams()->getById($teamId);
$response = FootballApi::teams()->getByCountryId($countryId);
$response = FootballApi::teams()->getBySeasonId($seasonId);
$response = FootballApi::teams()->search($searchQuery);
$response = FootballApi::teamSquads()->getByTeamId($teamId);
$response = FootballApi::teamSquads()->getByTeamAndSeasonId($teamId,$seasonId);
$response = FootballApi::players()->all();
$response = FootballApi::players()->getById($playerId);
$response = FootballApi::players()->getByCountryId($countryId);
$response = FootballApi::players()->search($searchQuery);
$response = FootballApi::players()->getLastUpdated();
$response = FootballApi::coaches()->all();
$response = FootballApi::coaches()->getById($coachId);
$response = FootballApi::coaches()->getByCountryId($countryId);
$response = FootballApi::coaches()->search($searchQuery);
$response = FootballApi::coaches()->getLastUpdated();
$response = FootballApi::referees()->all();
$response = FootballApi::referees()->getById($refereeId);
$response = FootballApi::referees()->getByCountryId($countryId);
$response = FootballApi::referees()->getBySeasonId($countryId);
$response = FootballApi::referees()->search($searchQuery);
$response = FootballApi::transfers()->all();
$response = FootballApi::transfers()->getById($transferId);
$response = FootballApi::transfers()->latest();
$response = FootballApi::transfers()->getByDateRange($dateFrom,$dateTo);
$response = FootballApi::transfers()->getByTeamId($teamId);
$response = FootballApi::transfers()->getByPlayerId($playerId);
$response = FootballApi::venues()->all();
$response = FootballApi::venues()->getById($venueId);
$response = FootballApi::venues()->getBySeasonId($seasonId);
$response = FootballApi::venues()->search($searchQuery);
$response = FootballApi::tvStations()->all();
$response = FootballApi::tvStations()->getById($stationId);
$response = FootballApi::tvStations()->getByFixtureId($fixtureId);
$response = FootballApi::predictions()->probabilities();
$response = FootballApi::predictions()->getPredictabilityByLeagueId($leagueId);
$response = FootballApi::tvStations()->getPredictabilityByFixtureId($fixtureId);
$response = FootballApi::tvStations()->valueBets();
$response = FootballApi::preMatchOdds()->all();
$response = FootballApi::preMatchOdds()->getByFixtureId($fixtureId);
$response = FootballApi::preMatchOdds()->getByFixtureAndBookmakerId($fixtureId,$bookmakerId);
$response = FootballApi::preMatchOdds()->getByFixtureAndMarketId($fixtureId,$marketId);
$response = FootballApi::preMatchOdds()->getLastUpdated();
$response = FootballApi::inplayOdds()->all();
$response = FootballApi::inplayOdds()->getByFixtureId($fixtureId);
$response = FootballApi::inplayOdds()->getByFixtureAndBookmakerId($fixtureId,$bookmakerId);
$response = FootballApi::inplayOdds()->getByFixtureAndMarketId($fixtureId,$marketId);
$response = FootballApi::inplayOdds()->getLastUpdated();
php
$response = FootballApi::markets()->all();
php
$response = FootballApi::markets()->getById($marketId);
php
$response = FootballApi::markets()->search($searchQuery);
php
$response = FootballApi::bookmakers()->all();
php
$response = FootballApi::bookmakers()->getById($bookmakerId);
php
$response = FootballApi::bookmakers()->search($searchQuery);
php
$response = FootballApi::bookmakers()->getByFixtureId($fixtureId);
php
$response = FootballApi::preMatchNews()->all();
php
$response = FootballApi::preMatchNews()->getBySeasonId($seasonId);
php
$response = FootballApi::preMatchNews()->upcomingFixtures();
php
$response = FootballApi::rivals()->all();
php
$response = FootballApi::rivals()->getByTeamId($teamId);
php
$response = FootballApi::commentaries()->all();
php
$response = FootballApi::commentaries()->getByFixtureId($fixtureId);
php
$response = FootballApi::continents()->all();
php
$response = FootballApi::continents()->getById();
php
$response = FootballApi::countries()->all();
php
$response = FootballApi::countries()->getById();
php
$response = FootballApi::countries()->search($searchQuery);
php
$response = FootballApi::regions()->all();
php
$response = FootballApi::regions()->getById();
php
$response = FootballApi::regions()->search($searchQuery);
php
$response = FootballApi::cities()->all();
php
$response = FootballApi::cities()->getById();
php
$response = FootballApi::cities()->search($searchQuery);
php
$response = FootballApi::types()->all();
php
$response = FootballApi::types()->getById();
php
$response = FootballApi::types()->getByEntity();
php
$response = FootballApi::filters()->entity();