PlayerOne Match Controller

Get Current Match Stats

Path: /api/playerone/match/stats

Method: GET

Example Http Request

GET /api/playerone/match/stats?matchId=match001 HTTP/1.1
Host: localhost:8080

Example Http Response

HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Content-Length: 1329

{"matchId":"match001","version":5,"lastUpdated":"2026-01-25T17:06:13.897043646Z","stats":[{"key":"shots","label":"Shots","homeValue":8,"awayValue":5,"version":3,"displayType":"RAW","comparisonType":"HIGHER_IS_BETTER"},{"key":"shotsOnTarget","label":"Shots on Target","homeValue":4,"awayValue":2,"version":2,"displayType":"RAW","comparisonType":"HIGHER_IS_BETTER"},{"key":"shotsOffTarget","label":"Shots off Target","homeValue":4,"awayValue":3,"version":1,"displayType":"RAW","comparisonType":"HIGHER_IS_BETTER"},{"key":"corners","label":"Corners","homeValue":5,"awayValue":3,"version":2,"displayType":"RAW","comparisonType":"HIGHER_IS_BETTER"},{"key":"fouls","label":"Fouls","homeValue":7,"awayValue":9,"version":4,"displayType":"RAW","comparisonType":"LOWER_IS_BETTER"},{"key":"yellowCards","label":"Yellow Cards","homeValue":1,"awayValue":2,"version":1,"displayType":"RAW","comparisonType":"LOWER_IS_BETTER"},{"key":"redCards","label":"Red Cards","homeValue":0,"awayValue":0,"version":0,"displayType":"RAW","comparisonType":"LOWER_IS_BETTER"},{"key":"offsides","label":"Offsides","homeValue":2,"awayValue":1,"version":1,"displayType":"RAW","comparisonType":"LOWER_IS_BETTER"},{"key":"possession","label":"Possession %","homeValue":58,"awayValue":42,"version":12,"displayType":"PERCENTAGE","comparisonType":"HIGHER_IS_BETTER"}]}

Example Curl Request

$ curl 'http://localhost:8080/api/playerone/match/stats?matchId=match001' -i -X GET

PlayerOne Match Controller Footer