PlayerOne Match Controller

Get Match Event Detail

Path: /api/playerone/match/events/{eventId}

Method: GET

Example Http Request

GET /api/playerone/match/events/evt_001 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: 577

{"version":1,"id":"evt_001","matchId":"match001","eventType":"GOAL","timestamp":"2026-01-16T19:12:45.000Z","clock":{"period":"FIRST_HALF","minute":12,"second":45,"addedMinute":0,"mmss":"12:45"},"team":{"id":"team_home","side":"HOME"},"actors":{"primaryPlayerId":"player_9","secondaryPlayerId":"player_11","refereeId":"ref_1"},"display":{"title":"Goal","text":"Player 9 scores. Assist by Player 11.","iconKey":"goal"},"tags":["SCORING"],"qualifiers":["OPEN_PLAY"],"details":{"score":{"away":0,"home":1},"goal":{"goalType":"REGULAR","assistType":"PASS","bodyPart":"RIGHT_FOOT"}}}

Example Curl Request

$ curl 'http://localhost:8080/api/playerone/match/events/evt_001' -i -X GET

PlayerOne Match Controller Footer