Last updated February 12, 2016
Used by: NBA Draft
| Name | Type | Description |
|---|---|---|
sport |
string | sport abbreviation |
season |
string | The year in which the draft took place |
round |
integer | The round of the draft when the player was drafted |
pick |
integer | The pick in the round when the player was drafted |
ordinal_pick |
string | Pick as an ordinal number (e.g., 1st, 2nd, 3rd) |
overall_pick |
integer | The overall pick in the draft when the player was drafted |
ordinal_overall_pick |
string | Overall pick as an ordinal number (e.g., 1st, 2nd, 3rd) |
player |
object | Player object |
team |
object | Team object |
games_played |
integer | Number of games in which player has participated for career |
points |
integer | Number of points scored by player for career |
assists |
integer | Number of assists made by player for career |
defensive_rebounds |
integer | Number of defensive rebounds made by player for career |
offensive_rebounds |
integer | Number of offensive rebounds made by player for career |
steals |
integer | Number of steals player has for career |
blocks |
integer | Number of blocks player has for career |
{
"sport" : "NBA",
"season" : "2014",
"round" : 1,
"pick" : 1,
"ordinal_pick" : "1st",
"overall_pick" : 1,
"ordinal_overall_pick" : "1st",
"player" : {
"last_name" : "Wiggins",
"first_name" : "Andrew",
"display_name" : "Andrew Wiggins",
"birthdate" : "1995-02-23",
"age" : 19,
"position" : "SF",
"height_in" : 80,
"height_cm" : 203.2,
"weight_lb" : 200,
"weight_kg" : 90.9,
"birthplace" : "Thornhill, Canada",
"height_formatted" : "6'8\"",
"height_m" : 2.03
},
"team" : {
"team_id" : "cleveland-cavaliers",
"abbreviation" : "CLE",
"active" : true,
"first_name" : "Cleveland",
"last_name" : "Cavaliers",
"conference" : "East",
"division" : "Central",
"site_name" : "Quicken Loans Arena",
"city" : "Cleveland",
"state" : "Ohio",
"full_name" : "Cleveland Cavaliers"
},
"games_played" : 6,
"points" : 55,
"assists" : 6,
"defensive_rebounds" : 16,
"offensive_rebounds" : 5,
"steals" : 7,
"blocks" : 3
}