ShotTracker Developer

Unparalleled data set + realtime API = future of sports. Build with live tracking, stats, and broadcast-ready endpoints.

Event API

Base URL: https://api.shottracker.com

/v1/data/officials/teams/{team_id}

GETOfficials Team Roster

The special_services field returns items for specific special events; possible type values are MIC, VIDEO.

Parameters

NameInTypeRequiredDescription
team_idpathnumberYesID of the team

Responses

  • 200OK
    {
      "id": 99,
      "name": "Official Team",
      "conference_name": "ACC",
      "league_name": "NCAA",
      "sport": "BASKETBALL",
      "members": [
        {
          "id": 1,
          "first_name": "john",
          "last_name": "doe",
          "jersey_number": 1,
          "jersey_number_str": "1",
          "position": "center",
          "profile_image_link": "...",
          "display_name": "john doe",
          "is_active": true,
          "special_services": [
            {
              "type": "MIC",
              "value": "mic6"
            }
          ]
        }
      ]
    }
  • 403Forbidden
    {
      "status": 403,
      "message": "Restricted resource",
      "shottrackerRequestId": "f1e80480-e1d5-4684-a619-402984b5c9ba"
    }
  • 404Not Found
    {
      "status": 404,
      "message": "Game not found | Team not found in game",
      "shottrackerRequestId": "f1e80480-e1d5-4684-a619-402984b5c9ba"
    }
  • 500Internal Server Error
    {
      "status": 500,
      "message": "<General System Error Message>",
      "shottrackerRequestId": "f1e80480-e1d5-4684-a619-402984b5c9ba"
    }