TeamRoster Request



Base URL http://data.nba.net/v2015/{format}/mobile_teams/{leagueSlug}/{year}/teams/{teamSlug}_roster.{format}
Default Response Format JSON
Domain Data
Section MobileTeams
Category Roster
Request Class JasonRoman\NbaApi\Request\Data\MobileTeams\Roster\TeamRosterRequest

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\Data\MobileTeams\Roster\TeamRosterRequest;

$client = new Client();

$request  = TeamRosterRequest::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\Data\MobileTeams\Roster\TeamRosterRequest;

$client = new Client();

$request = TeamRosterRequest::fromArray([
    'format'     => 'json',
    'leagueSlug' => 'nba',
    'year'       => 2016,
    'teamSlug'   => 'pistons',
]);

$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://data.nba.net/v2015/json/mobile_teams/nba/2016/teams/pistons_roster.json


PHP Result:

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

format

Required? Yes
Type string
Default Value json
Choices: json
xml

leagueSlug

Required? Yes
Type string
Default Value nba
Choices: nba
dleague
orlando
vegas
utah

year

Required? Yes
Type int
Default Value 2023
Range: Min: 2014

teamSlug

Required? Yes
Type string
Choices: hawks
celtics
nets
hornets
bulls
cavaliers
mavericks
nuggets
pistons
warriors
rockets
pacers
clippers
lakers
grizzlies
heat
bucks
timberwolves
pelicans
knicks
thunder
magic
sixers
suns
blazers
kings
spurs
raptors
jazz
wizards

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