Appearance
Data Sets Overview
The CTG Pro Data Feed includes data organized into several marking types. The API bundles these all within the markings object. The marking types that appear in the response are based on the API parameters you used. Within each of these markings objects is a list of objects, one for each instance of the given marking.
For example, within the shots object would be a list of objects, one for each shot taken in the game, with the data fields we have included to help describe what is going on in that instance.
json
{
"markings": {
"shots": [
{
"blocker_player_id_nba": null,
"chance_id_ctg": "chance_51bfc1fda2cc0deb125bee9988859667",
"end_game_clock": 708,
"end_he_frame": 761,
...
},
{
"blocker_player_id_nba": null,
"chance_id_ctg": "chance_4c33ded97f95174cc013b446c3981347",
"end_game_clock": 688,
"end_he_frame": 1971,
...
}
],
"jump_shots": [...],
"interior_shots": [...],
"chances": [...],
"possessions": [...],
...
}
}There is a section in these docs for each marking type available with detailed explanations of what that marking represents as well as all of the fields included with it.
