# Inside Lacrosse — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access lacrosse game scores, schedules, and detailed statistics from InsideLacrosse.com. Retrieve results by date, gender, division, and season, and drill into individual game box scores including team and player performance data.

**Category:** Sports | **Website:** [insidelacrosse.com/](https://insidelacrosse.com/) | **Docs:** [parse.bot/marketplace/5412c7fc-4706-435c-a36e-5b00dbec3de3/insidelacrosse-com-api](https://parse.bot/marketplace/5412c7fc-4706-435c-a36e-5b00dbec3de3/insidelacrosse-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-insidelacrosse-com-api-5412c7fc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_game_details

Get detailed box score information for a specific game, including team statistics, player stats, and game metadata. Returns comprehensive data for both teams including goals, shots, ground balls, turnovers, and individual player performance. The game_id is obtained from get_scores results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `game_id` | string | Yes | The unique game ID (UUID format, obtained from get_scores results via games[*].game_id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insidelacrosse-com-api-5412c7fc/get_game_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"game_id":"<string>"}'
```

### get_scores

Get lacrosse game scores for a specific date, gender, and division. Returns all games for the given date as a single page. When no date is provided, defaults to today's date. Each game includes home/away teams, scores, status, and a game_id usable with get_game_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | The date to fetch games for in YYYY-MM-DD format. Omitting returns today's games. |
| `division` | string | No | NCAA Division: '1', '2', or '3'. |
| `gender` | string | No | Gender: 'm' for men, 'w' for women. |
| `season` | string | No | Season year (e.g. '2025', '2026'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-insidelacrosse-com-api-5412c7fc/get_scores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","division":"<string>","gender":"<string>","season":"<string>"}'
```
