Stats
Api Key
URL Schema
<source lang="bash"> http://api.zweite-basketball-bundesliga.de/stats_hauptrunde/8be6f5bc7a30937ccd761615142ad2e4 http://api.zweite-basketball-bundesliga.de/stats_po/8be6f5bc7a30937ccd761615142ad2e4 http://api.zweite-basketball-bundesliga.de/stats_pd/8be6f5bc7a30937ccd761615142ad2e4 </source>
der erste Parameter ist die anzusprechende Schnittstelle, der zweite der API Key
Format
das Format ist JSON. Es werden die Gesamt und Schnitt (über alle Spiele) Stats ausgegeben. Hier die beispielhafte Ausgabe
<source lang="javascript"> {
"g": [
{
"player_id": "140177851",
"id": "3043",
"firstname": "Terence Anthony",
"lastname": "Billups",
"position": "SG",
"nationality_name": "Vereinigte Staaten von Amerika",
"nationality": "US",
"birthdate": "1988-08-17",
"league": "ProB Süd",
"team_caption": "Uni-Riesen Leipzig",
"team_shortname": "Leipzig",
"team_id": "467",
"points": "34",
"FT_points": "4",
"FT_attempts": "4",
"P2_points": "12",
"P2_attempts": "19",
"P3_points": "2",
"P3_attempts": "14",
"fouls": "1",
"rbo": "1",
"rbd": "6",
"REB_nr": "7",
"assists": "0",
"BL_nr": "1",
"ST_nr": "0",
"TO_nr": "9",
"min": 74,
"sec": 45,
"games": "2",
"time": "74:45",
"DD": "0",
"TD": "0",
"u22": "no-u22",
"eff": 14,
"ftp": 100,
"p2p": 63.2,
"p3p": 14.3,
"fg": 14,
"fga": 33,
"fgp": 42.4
}
],
"s": [
{
"player_id": "140177851",
"id": "3043",
"firstname": "Terence Anthony",
"lastname": "Billups",
"position": "SG",
"nationality_name": "Vereinigte Staaten von Amerika",
"nationality": "US",
"birthdate": "1988-08-17",
"league": "ProB Süd",
"team_caption": "Uni-Riesen Leipzig",
"team_shortname": "Leipzig",
"team_id": "467",
"points": 17,
"FT_points": 2,
"FT_attempts": 2,
"P2_points": 6,
"P2_attempts": 9.5,
"P3_points": 1,
"P3_attempts": 7,
"fouls": 0.5,
"rbo": 0.5,
"rbd": 3,
"REB_nr": 3.5,
"assists": 0,
"BL_nr": 0.5,
"ST_nr": 0,
"TO_nr": 4.5,
"min": 37,
"sec": 22,
"games": "2",
"time": "37:22",
"DD": 0,
"TD": 0,
"u22": "no-u22",
"eff": 7,
"ftp": 100,
"p2p": 63.2,
"p3p": 14.3,
"fg": 7,
"fga": 16.5,
"fgp": 42.4
}
]
}
</source>