nbl_stat_leaders
Get NBL season statistical leaders with per-player averages for points, rebounds, assists, and more. Pass the season UUID; supports sorting and row limits.
Instructions
Season statistical leaders (points/rebounds/assists/etc. averages, per player) for one season — pass the season UUID (seasonId) from nbl_seasons (data[].id), NOT the year. Use limit to cap rows (limit=-1 for all).
Returns: {type, count, data:[{player, team, points_average, rebounds_total_average, assists_average, field_goals_percentage, three_pointers_made_average, …}]}
Example: Top 50 scorers for NBL26 {"seasonId": "1f8e4a79-e98b-457b-85a5-e4b898c6c0bd", "limit": 50, "sort": "-points_average"}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort key, prefix `-` for descending — e.g. -points_average (top scorers), -assists_average, -rebounds_total_average. Any per-game average column works. | |
| limit | No | Max rows; -1 for all. | |
| seasonId | Yes | Season UUID — from nbl_seasons (data[].id, the season_type=regular one for the main leaders). Required — part of the URL path. |