insidelacrosse.com APIinsidelacrosse.com ↗
Retrieve lacrosse game scores, schedules, and full box scores from InsideLacrosse.com. Filter by date, gender, NCAA division, and season.
curl -X GET 'https://api.parse.bot/scraper/049edb8d-0c6b-4474-a41e-6b72c8e36273/get_scores?date=2025-05-10&gender=m&season=2025&division=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Get lacrosse game scores for a specific date, gender, and division. Returns a list of games with home/away teams and scores. When no date is provided, defaults to today's date.
| Param | Type | Description |
|---|---|---|
| date | string | The date to fetch games for in YYYY-MM-DD format. Omitting returns today's games. |
| gender | string | Gender: 'm' for men, 'w' for women. |
| season | string | Season year (e.g. '2025', '2026'). |
| division | string | NCAA Division: '1', '2', or '3'. |
{
"type": "object",
"fields": {
"date": "string, the requested date in YYYY-MM-DD format",
"games": "array of game summary objects with home_team_name, away_team_name, home_team_score, away_team_score, date, status, location, neutral_site, game_id",
"gender": "string, 'm' or 'w'",
"season": "string, the season year",
"division": "string, NCAA division number"
},
"sample": {
"data": {
"date": "2025-05-10",
"games": [
{
"date": "2025-05-10T12:00:00Z",
"status": null,
"game_id": "68f3c538-2721-44a7-a2fd-e297f62c6624",
"location": null,
"neutral_site": false,
"away_team_name": "Richmond",
"home_team_name": "North Carolina",
"away_team_score": 13,
"home_team_score": 10
}
],
"gender": "m",
"season": "2025",
"division": "1"
},
"status": "success"
}
}About the insidelacrosse.com API
The InsideLacrosse API provides 2 endpoints for accessing lacrosse game data from InsideLacrosse.com, covering men's and women's NCAA divisional play. Use get_scores to pull game results filtered by date, gender, division, and season, and get_game_details to retrieve full box scores — including team statistics, player game logs, attendance, venue, and game status — for any individual game.
Scores and Schedules
The get_scores endpoint returns a list of games for a given date in YYYY-MM-DD format. Omitting the date parameter defaults to today. Each game object in the games array includes home_team_name, away_team_name, home_team_score, away_team_score, status, location, and a neutr flag indicating neutral-site games. You can narrow results with the gender parameter ('m' or 'w'), division ('1', '2', or '3'), and season (e.g. '2025').
Box Score Detail
Once you have a game_id from the games array, pass it to get_game_details to retrieve the full box score. The response includes a team_games array where each entry carries the team's goals, shots, and a player_games list with per-player statistics. Top-level fields cover game_datetime (ISO 8601), location, attendance, display_status, and home_team_season_id. The game_id is in UUID format and must be sourced from a prior get_scores call.
Coverage Scope
Data covers NCAA men's and women's lacrosse across Divisions I, II, and III. The season parameter lets you query historical seasons as well as the current one, making the API useful for both live-game tracking and retrospective research. Player-level stats are nested inside team_games[*].player_games within the get_game_details response.
- Track daily NCAA lacrosse scores filtered by division and gender using
get_scores - Build a lacrosse box score display using player and team stats from
get_game_details - Compare team shooting efficiency across games using
shotsandgoalsfields - Monitor game attendance figures and venue data for facility research
- Aggregate season-long player performance by iterating game IDs from
get_scores - Detect neutral-site games using the
neutrfield in score results - Feed a sports notification app with live game status via the
display_statusfield
| 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 InsideLacrosse.com have an official developer API?+
What does `get_scores` return when no filters are applied?+
get_scores defaults to today's date and returns all available games across genders and divisions. You can narrow results by supplying date, gender ('m' or 'w'), division ('1', '2', or '3'), and season independently or in combination.Does `get_game_details` include play-by-play or period-by-period scoring breakdowns?+
Is there a way to look up team season records or standings?+
get_scores and box score detail via get_game_details. Season standings and win/loss records are not exposed as dedicated endpoints. You can fork the API on Parse and revise it to add a standings endpoint.How fresh is the score data, and does it update during live games?+
display_status field in get_game_details and the status field in get_scores reflect the current game state as reported by InsideLacrosse.com. Data freshness depends on how frequently the source site updates its records; there is no guaranteed real-time latency specified, so treat in-progress game data as near-real-time rather than tick-by-tick.