Developers
OFF SZN API & Embeds
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.
Rate limit
60 req/min/IP
Free tier · no key required
Endpoints
3 stable
Versioned at /api/v1
CORS
Enabled
Fetch from any origin
Endpoints
/api/v1/players/:idFetch a single player profile + their composite ranking.
Sample response
{
"apiVersion": "v1",
"data": {
"id": "${realId}",
"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/${realId}",
"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 |
Sample response
{
"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": "${realId}",
"firstName": "Jaden",
"lastName": "Smith",
"starRating": 5,
"position": "SG",
"classYear": 2027,
"state": "AZ",
"url": "https://offsznhoops.com/players/${realId}"
}
}
]
}/embed/rankingsIframable HTML widget showing the top 10 by composite. Drop into any blog or news article.
Embed code
<iframe src="https://offsznhoops.com/embed/rankings?state=AZ&classYear=2027" width="100%" height="520" frameborder="0" ></iframe>
Attribution
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.
Partner access
Need higher rate limits, an SLA, or richer endpoints? Reach out and we'll set up a partner integration.
