nikeeyblscholastic.com APInikeeyblscholastic.com ↗
Access Nike EYBL Scholastic league data: team rosters, player bios, standings, box scores, and schedules via 7 structured JSON endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/bd843973-579a-4a14-84ea-59a03f34d112/get_all_teams' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns the list of all teams in the EYBL Scholastic league including their slugs, mascots, locations, and logos.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of team objects with id, name, slug, mascot, location, logo_url, and statcrew_team_id",
"status": "string indicating success"
},
"sample": {
"data": [
{
"id": 10,
"name": "AZ Compass Prep",
"slug": "az-compass",
"mascot": "Dragons ",
"location": "Chandler, Arizona ",
"logo_url": "https://nikeeyblscholastic.com/images/2025/11/17/AZ_Compass_Prep.png",
"statcrew_team_id": "COMP"
}
],
"status": "success"
}
}About the nikeeyblscholastic.com API
The Nike EYBL Scholastic API covers 7 endpoints returning structured data from the EYBL Scholastic prep basketball league, including team rosters, player bios, game schedules, standings, and full box scores. The get_box_score endpoint delivers per-player stats and score-by-period breakdowns for individual games, while get_team_stats organizes aggregate team performance across categories like Offense, Scoring Margin, and Scoring Defense.
Teams, Rosters, and Player Bios
The get_all_teams endpoint returns every team in the EYBL Scholastic league as an array of objects, each containing id, name, slug, mascot, location, logo_url, and statcrew_team_id. The team_slug values from this response are the required input for several other endpoints. get_team_roster accepts a team_slug and an optional season parameter in YYYY-YY format, returning each player's name, number, position, hometown, image_url, bio_url, and player_id. Passing player_id, team_slug, and player_name_slug (extracted from the bio_url) to get_player_bio returns an individual player's stats_summary and profile image where available.
Schedules and Results
get_full_schedule returns an array of game objects with fields including game_id, date, time, home_team, away_team, location, status, result, and box_score_url. Both start_date and end_date are optional and accept MM/DD/YYYY format; omitting them defaults to the full current-season window. The game_id and box_score_url fields are the bridge to get_box_score, which requires the encoded id query parameter value from that URL.
Box Scores and League Stats
get_box_score returns a data object with a teams array — each entry containing the team name and an array of players with per-game statistics — plus a score_by_period object breaking down scoring across quarters or halves. get_standings requires no inputs and returns each team's division_record, division_pct, conference_record, conference_pct, and current streak. get_team_stats accepts an optional year parameter and returns stat categories (e.g., Offense, Scoring Defense, Scoring Margin) each with an array of team stat rows.
- Build a recruiting dashboard that cross-references player hometowns, positions, and stats summaries from
get_player_bio. - Track live league standings by polling
get_standingsfor division and conference records throughout the season. - Generate game recap summaries using per-player stats and score-by-period data from
get_box_score. - Populate a season schedule calendar with game times, locations, and result data from
get_full_schedule. - Compare team offensive and defensive efficiency using category-grouped rows from
get_team_stats. - Sync full roster data — including jersey numbers, positions, and images — for all EYBL Scholastic teams into a scouting database.
- Monitor team win streaks and winning percentages across conference play using the
streakandconference_pctfields fromget_standings.
| 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 nikeeyblscholastic.com have an official developer API?+
What does `get_box_score` return and how do I get the right game ID?+
teams array — each with a team name and player-level game statistics — plus a score_by_period object. The required game_id input is the encoded id query parameter found in the box_score_url field returned by get_full_schedule.Can I retrieve historical seasons for rosters and schedules?+
get_team_roster accepts a season parameter in YYYY-YY format and get_team_stats accepts a year parameter, so historical lookups are supported for those endpoints. get_full_schedule supports custom start_date and end_date inputs. Not all endpoints expose an explicit season filter; coverage of older seasons depends on what the source site retains.Does the API return play-by-play data or shot charts?+
get_box_score, but does not expose play-by-play sequences or shot location data. You can fork this API on Parse and revise it to add an endpoint targeting that data if the source exposes it.Are individual player season averages available, or only game-level stats?+
get_player_bio endpoint includes a stats_summary field with summary-level data for a player. Full season averages broken out by category are not currently a dedicated endpoint. The team-level get_team_stats endpoint covers aggregate team stat categories. You can fork this API on Parse and revise it to add a player-season-averages endpoint.