Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Latest commit

 

History

History
88 lines (80 loc) · 3.1 KB

boxscoredefensivev2.md

File metadata and controls

88 lines (80 loc) · 3.1 KB

BoxScoreDefensiveV2

Endpoint URL

https://stats.nba.com/stats/boxscoredefensivev2

Valid URL

https://stats.nba.com/stats/boxscoredefensivev2?GameID=0021700807

Parameters

API Parameter Name Python Parameter Variable Pattern Required Nullable
GameID game_id ^\d{10}$ Y

Data Sets

PlayerStats player_stats

['gameId', 'teamId', 'teamCity', 'teamName', 'teamTricode', 'teamSlug', 'personId', 'firstName', 'familyName', 'nameI', 'playerSlug', 'position', 'comment', 'jerseyNum', 'matchupMinutes', 'partialPossessions', 'switchesOn', 'playerPoints', 'defensiveRebounds', 'matchupAssists', 'matchupTurnovers', 'steals', 'blocks', 'matchupFieldGoalsMade', 'matchupFieldGoalsAttempted', 'matchupFieldGoalPercentage', 'matchupThreePointersMade', 'matchupThreePointersAttempted', 'matchupThreePointerPercentage']

TeamStats team_stats

['gameId', 'teamId', 'teamCity', 'teamName', 'teamTricode', 'teamSlug', 'minutes']

JSON

{
    "data_sets": {
        "PlayerStats": [
            "gameId", 
            "teamId", 
            "teamCity", 
            "teamName", 
            "teamTricode", 
            "teamSlug", 
            "personId", 
            "firstName", 
            "familyName", 
            "nameI", 
            "playerSlug", 
            "position", 
            "comment", 
            "jerseyNum", 
            "matchupMinutes", 
            "partialPossessions", 
            "switchesOn", 
            "playerPoints", 
            "defensiveRebounds", 
            "matchupAssists", 
            "matchupTurnovers", 
            "steals", 
            "blocks", 
            "matchupFieldGoalsMade", 
            "matchupFieldGoalsAttempted", 
            "matchupFieldGoalPercentage", 
            "matchupThreePointersMade", 
            "matchupThreePointersAttempted", 
            "matchupThreePointerPercentage"
        ],
        "TeamStats": [
            "gameId", 
            "teamId", 
            "teamCity", 
            "teamName", 
            "teamTricode", 
            "teamSlug", 
            "minutes"
        ]
    },
    "endpoint": "BoxScoreDefensiveV2",
    "last_validated_date": "2023-09-14",
    "nullable_parameters": [],
    "parameter_patterns": {
        "GameID": "^\\d{10}$"
    },
    "parameters": [
        "GameID"
    ],
    "required_parameters": [
        "GameID"
    ],
    "status": "success"
}

Last validated 2023-09-14