Free, read-only access to OFF SZN player profiles and composite rankings. Embed on your site, build apps, or just integrate our ranking number into your own coverage. Attribution required.
/api/v1/players/:idFetch a single player profile + their composite ranking.
{
"apiVersion": "v1",
"data": {
"id": "cm0abc123xyz",
"firstName": "Jaden",
"lastName": "Smith",
"position": "SG",
"classYear": 2027,
"starRating": 5,
"state": "AZ",
"composite": {
"compositeRating": 0.985,
"nationalRank": 12,
"positionRank": 3,
"stateRank": 1
},
"url": "https://offsznhoops.com/players/cm0abc123xyz",
"attribution": "Data via OFF SZN Hoops · offsznhoops.com"
}
}/api/v1/rankingsList rankings, filterable by state, classYear, and position. Paginated via offset.
| Param | Description |
|---|---|
| state | 2-letter code, e.g. AZ |
| classYear | Class year, e.g. 2027 |
| position | PG, SG, SF, PF, C |
| limit | 1–100 (default 25) |
| offset | Pagination offset |
{
"apiVersion": "v1",
"filters": { "state": "AZ", "classYear": 2027, "position": null },
"pagination": { "offset": 0, "limit": 25, "total": 87 },
"data": [
{
"rank": 12,
"positionRank": 3,
"stateRank": 1,
"composite": 0.985,
"player": {
"id": "cm0abc123xyz",
"firstName": "Jaden",
"lastName": "Smith",
"starRating": 5,
"position": "SG",
"classYear": 2027,
"state": "AZ",
"url": "https://offsznhoops.com/players/cm0abc123xyz"
}
}
]
}/embed/rankingsIframable HTML widget showing the top 10 by composite. Drop into any blog or news article.
<iframe src="https://offsznhoops.com/embed/rankings?state=AZ&classYear=2027" width="100%" height="520" frameborder="0" ></iframe>
Free tier requires a visible attribution link to offsznhoops.com on the page or article using our data. The API responses include an attribution string you can render verbatim. Embed widgets carry attribution natively.