LeagueGameLog Request



Base URL http://stats.nba.com/stats/leaguegamelog
Default Response Format JSON
Domain Stats
Section Stats
Category Games
Request Class JasonRoman\NbaApi\Request\Stats\Stats\Games\LeagueGameLogRequest

Runnable Example:

<?php

require_once 'vendor/autoload.php'; // skip this if using a framework / autoloading elsewhere

use JasonRoman\NbaApi\Client\Client;
use JasonRoman\NbaApi\Request\Stats\Stats\Games\LeagueGameLogRequest;

$client = new Client();

$request  = LeagueGameLogRequest::fromArrayWithExamples();
$response = $client->request($request);
The following code will run and return data, as it uses both example and default values. The code shows every available parameter that can be set on this request.
<?php

require_once 'vendor/autoload.php'; // skip this if using a framework / autoloading elsewhere

use JasonRoman\NbaApi\Client\Client;
use JasonRoman\NbaApi\Request\Stats\Stats\Games\LeagueGameLogRequest;

$client = new Client();

$request = LeagueGameLogRequest::fromArray([
    'leagueId'     => '00',
    'season'       => '2015-16',
    'seasonType'   => 'Regular Season',
    'playerOrTeam' => 'P',
    'counter'      => 0,
    'sorter'       => 'PTS',
    'direction'    => 'ASC',
    'dateFrom'     => null,
    'dateTo'       => null,
]);

$response = $client->request($request);

 Example URL:

Click the icon to copy the URL to your clipboard, or click the link below to open the raw result in a new window.

http://stats.nba.com/stats/leaguegamelog/?leagueId=00&season=2015-16&seasonType=Regular+Season&playerOrTeam=P&counter=0&sorter=PTS&direction=ASC&dateFrom=&dateTo=


PHP Result:

Click the button to return the result as a PHP array and PHP object.

leagueId

Required? Yes
Type string
Default Value 00
Choices: 00
20

season

Required? Yes
Type string
Default Value 2023-24
Regex Format: /^(\d{4}-\d{2})|(ALLTIME)$/

seasonType

Required? Yes
Type string
Default Value Regular Season
Choices: Pre Season
Regular Season
Playoffs
All Star
All-Star

playerOrTeam

Required? Yes
Type string
Choices: P
T

counter

Required? Yes
Type int
Range: Min: 0
Max: 2147483647

sorter

Required? Yes
Type string
Choices: FGA
FGA
FG_PCT
FTA
FTM
FT_PCT
FG3A
FG3M
FG3_PCT
DREB
OREB
REB
AST
STL
BLK
TOV
PTS
DATE

direction

Required? Yes
Type string
Choices: ASC
DESC

dateFrom

Required? No
Type \DateTime

dateTo

Required? No
Type \DateTime

Change any of the filterable values here and submit the form to get results with your chosen filters. This will also give you the corresponding URL as well as the code used to generate the result.



This site has no official affiliation with the National Basketball Association or any other 3rd-party entities listed on this site.
© 2024 Jason Roman