Indoor Updates
Match Player Stats Updates (full or delta)
Returns a list of per-player match statistics — either all records or only those modified since a given Unix timestamp. Includes serve, reception, attack, block, dig, and setting statistics as well as rotation positions per set.
If neither ts nor all is provided, records from the last 14 days are returned.
get/web/match-player-stats
Query parameters
tsinteger
Unix timestamp (in seconds). Returns only entries updated since this point in time.
Example:1759329493
Unix timestamp (in seconds). Returns only entries updated since this point in time.
allboolean
Return all entries, ignoring ts. Accepted values: true, false, 1, 0, yes, no.
Example:true
Return all entries, ignoring ts. Accepted values: true, false, 1, 0, yes, no.
Response
Example response
[
{
"id": 1,
"match_id": 12345,
"vs_match_id": 2240373,
"vs_player_id": 98765,
"person_id": 1001,
"legacy_per_id": 21985,
"team_name": "USV FIDAS Volleys Jennersdorf",
"player_name": "Jeannine LANG",
"is_home": true,
"number": "5",
"captain": false,
"libero": null,
"played_sets": 3,
"points": 12,
"side_out": 8,
"assists": 2,
"serve_err": 3,
"serve_win": 2,
"serve_minus": 1,
"serve_plus": 5,
"serve_eff": 40,
"rec_err": 1,
"rec_win": 0,
"rec_minus": 2,
"rec_plus": 8,
"spike_err": 2,
"spike_win": 12,
"spike_minus": 3,
"spike_plus": 4,
"spike_eff": 55,
"block_win": 1,
"block_plus": 2,
"block_hp": 0,
"successful_digs": 5,
"set_err": 0,
"side_out_err": 1,
"side_out_attempts": 9,
"break_point_err": 2,
"break_point_attempts": 7,
"set1": 2,
"set2": 3,
"set3": 4,
"set4": null,
"set5": null,
"created_at": "2025-10-11 20:00:00",
"updated_at": "2025-10-11 20:00:00"
}
]Changes
No recorded changes to this endpoint across all 1 revision of this API.