nebl.web.geniussports.com APInebl.web.geniussports.com ↗
Get live NEBL basketball standings via the Genius Sports API. Returns team positions, wins, losses, streaks, scored for/against, and score difference.
curl -X GET 'https://api.parse.bot/scraper/c542d1c1-ad59-4110-a491-d6897e789381/get_standings' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the latest standings for all teams in a competition. Returns team positions, points, games played, wins, losses, streak, scored for, scored against, and score difference.
| Param | Type | Description |
|---|---|---|
| language | string | Language code for the response. |
| competition | string | Competition unit identifier. BEBL is the Belize Elite Basketball League. |
{
"type": "object",
"fields": {
"standings": "array of team standing objects",
"competition": "string",
"total_teams": "integer"
},
"sample": {
"standings": [
{
"won": 9,
"lost": 2,
"points": 20,
"streak": 9,
"position": 1,
"team_code": "DEF",
"team_name": "Belize City Defenders",
"scored_for": 936,
"games_played": 11,
"scored_against": 773,
"score_difference": 163
}
],
"competition": "BEBL",
"total_teams": 7
}
}About the nebl.web.geniussports.com API
The NEBL Genius Sports API exposes 1 endpoint — get_standings — that returns current league standings for the National Elite Basketball League (or any supported competition unit) hosted on the Genius Sports platform. Each response includes 8 per-team fields: position, points, games played, wins, losses, current streak, scored-for, and scored-against totals, plus a score difference derived value.
What the API Returns
The get_standings endpoint returns a ranked array of team standing objects for a given competition. Each object includes the team's current league position, points accumulated, total games played, wins, losses, and current streak. Scoring stats include scored_for (total points the team has scored), scored_against (total points conceded), and a derived score_difference. The response also includes the competition name string and a total_teams integer.
Input Parameters
Two optional parameters control the response. The competition parameter accepts a competition unit identifier — the default target is BEBL, the Belize Elite Basketball League. The language parameter accepts a language code to localize string fields in the response where supported. If neither parameter is supplied, the endpoint defaults to BEBL standings in the default language.
Competition Coverage
The API targets competitions hosted on the Genius Sports platform under the nebl.web.geniussports.com domain. BEBL (Belize Elite Basketball League) is the documented competition unit. The data reflects the current season standings at the time of the request, with no historical season archive exposed through this endpoint.
- Display a live NEBL standings table in a sports app using team position, wins, losses, and points fields.
- Track team streaks to surface current form data in a fantasy basketball or sports betting context.
- Calculate league competitiveness by comparing score_difference values across all teams.
- Power a standings widget for a sports news site covering Belizean basketball.
- Monitor wins and losses over a season to generate trend alerts for specific teams.
- Seed a database with current NEBL rankings for integration into broader Caribbean basketball analytics.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Genius Sports offer an official developer API?+
What exactly does get_standings return for each team?+
Does the API cover historical standings or previous seasons?+
Is individual game or player-level data available?+
Can I retrieve standings for competitions other than BEBL?+
competition parameter accepts other competition unit identifiers beyond BEBL, but only competitions hosted on the nebl.web.geniussports.com platform are in scope. Passing a different identifier may return standings for another competition on that domain if one exists, but non-NEBL or off-platform leagues are not covered.