APIEndpoint referenceBasketball
/basketball/team/{id}/players/performance
Every player who appeared for the team across a window of fixtures, with their line in each.
Every player who appeared for the team across a window of fixtures, with their line in each.
stats is keyed by event id, so a client looks up a game directly rather
than scanning a list.
Path Parameters
id*string
Query Parameters
fixtureId?string
h2h?string
limit?integer
Format
int64location?string
status?string
tournamentId?string
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/api/basketball/team/string/players/performance"{ "currentFixturePlayerStats": [ 0 ], "data": [ { "id": 0, "name": "string", "position": "string", "slug": "string", "stats": { "property1": { "assists": 0, "blocks": 0, "blocksReceived": 0, "defensiveRebounds": 0, "effectiveFieldGoalPercentage": "string", "efficiencyRating": "string", "eventId": 0, "fantasyScore": 0.1, "fieldGoalsMade": 0, "flagrantFouls": 0, "fouledOut": true, "foulsDrawn": 0, "freeThrowsMade": 0, "minutesPlayed": 0, "offensiveRebounds": 0, "personalFouls": 0, "playerId": 0, "plusMinus": 0, "points": 0, "pointsAssists": 0, "pointsRebounds": 0, "pointsReboundsAssists": 0, "position": "string", "reboundsAssists": 0, "steals": 0, "stealsBlocks": 0, "teamId": 0, "technicalFouls": 0, "threePointersMade": 0, "totalRebounds": 0, "trueShootingPercentage": "string", "turnovers": 0, "usage": "string" }, "property2": { "assists": 0, "blocks": 0, "blocksReceived": 0, "defensiveRebounds": 0, "effectiveFieldGoalPercentage": "string", "efficiencyRating": "string", "eventId": 0, "fantasyScore": 0.1, "fieldGoalsMade": 0, "flagrantFouls": 0, "fouledOut": true, "foulsDrawn": 0, "freeThrowsMade": 0, "minutesPlayed": 0, "offensiveRebounds": 0, "personalFouls": 0, "playerId": 0, "plusMinus": 0, "points": 0, "pointsAssists": 0, "pointsRebounds": 0, "pointsReboundsAssists": 0, "position": "string", "reboundsAssists": 0, "steals": 0, "stealsBlocks": 0, "teamId": 0, "technicalFouls": 0, "threePointersMade": 0, "totalRebounds": 0, "trueShootingPercentage": "string", "turnovers": 0, "usage": "string" } } } ], "events": [ "string" ]}/basketball/team/{id}/performance GET
The team's recent finished fixtures with their per-period statistics folded into a `stats` object keyed by statistic.
/basketball/team/{id}/upcoming-events GET
Despite the name it returns every fixture the team has, past and future, newest first — there is no filter on the timestamp.