PlayerShotChartDetail Request



Base URL http://stats.nba.com/stats/shotchartdetail
Default Response Format JSON
Domain Stats
Section Stats
Category Player
Request Class JasonRoman\NbaApi\Request\Stats\Stats\Player\PlayerShotChartDetailRequest

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\Player\PlayerShotChartDetailRequest;

$client = new Client();

$request  = PlayerShotChartDetailRequest::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\Player\PlayerShotChartDetailRequest;

$client = new Client();

$request = PlayerShotChartDetailRequest::fromArray([
    'leagueId'       => '00',
    'season'         => '2015-16',
    'seasonType'     => 'Regular Season',
    'teamId'         => 1610612745,
    'playerId'       => 201935,
    'gameId'         => '0021600732',
    'outcome'        => null,
    'location'       => null,
    'month'          => 0,
    'seasonSegment'  => null,
    'dateFrom'       => null,
    'dateTo'         => null,
    'opponentTeamId' => 0,
    'vsConference'   => null,
    'vsDivision'     => null,
    'position'       => null,
    'playerPosition' => null,
    'rookieYear'     => null,
    'gameSegment'    => null,
    'period'         => 0,
    'lastNGames'     => 0,
    'clutchTime'     => null,
    'aheadBehind'    => null,
    'pointDiff'      => null,
    'rangeType'      => 0,
    'startPeriod'    => 1,
    'endPeriod'      => 10,
    'startRange'     => 0,
    'endRange'       => 2147483647,
    'contextFilter'  => null,
    'contextMeasure' => 'PTS',
]);

$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/shotchartdetail/?leagueId=00&season=2015-16&seasonType=Regular+Season&teamId=1610612745&playerId=201935&gameId=0021600732&outcome=&location=&month=0&seasonSegment=&dateFrom=&dateTo=&opponentTeamId=0&vsConference=&vsDivision=&position=&playerPosition=&rookieYear=&gameSegment=&period=0&lastNGames=0&clutchTime=&aheadBehind=&pointDiff=&rangeType=0&startPeriod=1&endPeriod=10&startRange=0&endRange=2147483647&contextFilter=&contextMeasure=PTS


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? No
Type string
Default Value 2023-24
Regex Format: /^\d{4}-\d{2}$/

seasonType

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

teamId

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

playerId

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

gameId

Required? No
Type string
Regex Format: /^\d{10}$/

outcome

Required? No
Type string
Choices: W
L

location

Required? No
Type string
Choices: Home
Road

month

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

seasonSegment

Required? No
Type string
Choices: Pre All-Star
Post All-Star

dateFrom

Required? No
Type \DateTime

dateTo

Required? No
Type \DateTime

opponentTeamId

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

vsConference

Required? No
Type string
Choices: East
West

vsDivision

Required? No
Type string
Choices: Atlantic
Central
Northwest
Pacific
Southeast
Southwest
East
West

position

Description/Notes: This appears to always be considered null on this request even if using a proper value.
Required? No
Type string
Choices: C
F
G

playerPosition

Description/Notes: This appears to error if actually passing in any value, and does not show on the 'parameters' in the result.
Required? No
Type string
Choices: Center
Forward
Guard

rookieYear

Required? No
Type string
Regex Format: /^\d{4}-\d{2}$/

gameSegment

Required? No
Type string
Choices: First Half
Second Half
Overtime

period

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

lastNGames

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

clutchTime

Required? No
Type string
Choices: Last 5 Minutes
Last 4 Minutes
Last 3 Minutes
Last 2 Minutes
Last 1 Minute
Last 30 Seconds
Last 10 Seconds

aheadBehind

Required? No
Type string
Choices: Ahead or Behind
Behind or Tied
Ahead or Tied

pointDiff

Required? No
Type int
Range: Min: 1
Max: 5

rangeType

Required? No
Type int
Range: Min: 0
Max: 2

startPeriod

Required? No
Type int
Default Value 1
Range: Min: 1
Max: 10

endPeriod

Required? No
Type int
Default Value 10
Range: Min: 1
Max: 10

startRange

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

endRange

Required? No
Type int
Default Value 2147483647
Range: Min: 0
Max: 2147483647

contextFilter

Description/Notes: This appears to be "" even if set to something, and does not appear to be used at all.
Required? No
Type string

contextMeasure

Required? Yes
Type string
Choices: EFG_PCT
FG_PCT
FGA
FGM
PF
PTS
PTS_FB
PTS_OFF_TOV
PTS_2ND_CHANCE
FG3_PCT
FG3A
FG3M
TS_PCT

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