Base URL | http://stats.nba.com/stats/homepageleaders |
---|---|
Default Response Format | JSON |
Domain | Stats |
Section | Stats |
Category | Homepage |
Request Class | JasonRoman\NbaApi\Request\Stats\Stats\Homepage\HomepageLeadersRequest |
<?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\Homepage\HomepageLeadersRequest;
$client = new Client();
$request = HomepageLeadersRequest::fromArrayWithExamples();
$response = $client->request($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\Homepage\HomepageLeadersRequest;
$client = new Client();
$request = HomepageLeadersRequest::fromArray([
'leagueId' => '00',
'season' => '2015-16',
'seasonType' => 'Regular Season',
'statCategory' => 'Points',
'playerOrTeam' => 'Player',
'gameScope' => 'Last 10',
'playerScope' => 'All Players',
]);
$response = $client->request($request);
Click the icon to copy the URL to your clipboard, or click the link below to open the raw result in a new window.
Click the button to return the result as a PHP array and PHP object.
Required? | Yes |
---|---|
Type | string |
Default Value | 00 |
Regex Format: | /^\d{2}$/ |
Required? | Yes |
---|---|
Type | string |
Default Value | 2024-25 |
Regex Format: | /^\d{4}-\d{2}$/ |
Required? | Yes |
---|---|
Type | string |
Default Value | Regular Season |
Choices: | Pre Season Regular Season Playoffs |
Required? | Yes |
---|---|
Type | string |
Choices: | Assists Clutch Defense Fast Break Efficiency Playmaking Points Rebounds Scoring Breakdown |
Required? | Yes |
---|---|
Type | string |
Choices: | Player Team |
Required? | Yes |
---|---|
Type | string |
Choices: | Finals Last 10 Season Yesterday |
Required? | Yes |
---|---|
Type | string |
Choices: | All Players Rookies |
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.