# American Soccer Analysis — 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.

> Track and analyze USL Championship goalkeeper performance with detailed goals-added metrics and expected goals data from American Soccer Analysis. Compare goalkeeper effectiveness across seasons and identify top-performing shot-stoppers with comprehensive statistical breakdowns.

**Category:** Sports | **Website:** [app.americansocceranalysis.com/#!/uslc/goals-added/goalkeepers](https://app.americansocceranalysis.com/#!/uslc/goals-added/goalkeepers) | **Docs:** [parse.bot/marketplace/bd79b79e-2541-4b48-b2ec-d0e858146c37/app-americansocceranalysis-com-api](https://parse.bot/marketplace/bd79b79e-2541-4b48-b2ec-d0e858146c37/app-americansocceranalysis-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-app-americansocceranalysis-com-api-bd79b79e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_goalkeepers_goals_added

Get USLC goalkeeper goals-added data. Returns per-player stats across 6 action types: Claiming, Fielding, Handling, Passing, Shotstopping, Sweeping. Each action type includes raw goals added, goals added above average, and action count. Results can be filtered by season, team, player, date range, and minimum minutes played. Without filters, returns all goalkeepers across all available seasons. Note: season_name and date range (start_date/end_date) are mutually exclusive filters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_date` | string | No | End date filter in YYYY-MM-DD format. Mutually exclusive with season_name. |
| `minimum_minutes` | integer | No | Minimum minutes played filter. |
| `player_id` | string | No | Player ID(s) to filter by, comma-separated. |
| `season_name` | string | No | Season year(s) to filter by, comma-separated (e.g. '2023' or '2022,2023'). Earliest available: 2017. Mutually exclusive with start_date/end_date. |
| `split_by_teams` | string | No | Whether to split stats by team. Accepted values: 'true', 'false'. |
| `start_date` | string | No | Start date filter in YYYY-MM-DD format. Mutually exclusive with season_name. |
| `team_id` | string | No | Team ID(s) to filter by, comma-separated. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-americansocceranalysis-com-api-bd79b79e/get_goalkeepers_goals_added \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_date":"<string>","minimum_minutes":"<integer>","player_id":"<string>","season_name":"<string>","split_by_teams":"<string>","start_date":"<string>","team_id":"<string>"}'
```

### get_goalkeepers_xgoals

Get USLC goalkeeper expected goals (xGoals) data. Returns shots faced, goals conceded, saves, headed shot share, expected goals faced, goals minus xGoals, and goals divided by xGoals per goalkeeper. Results can be filtered by season, team, player, date range, stage, and minimum minutes played. Without filters, returns all goalkeepers across all available seasons. Note: season_name and date range (start_date/end_date) are mutually exclusive filters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `end_date` | string | No | End date filter in YYYY-MM-DD format. Mutually exclusive with season_name. |
| `general_position` | string | No | General position filter. |
| `minimum_minutes` | integer | No | Minimum minutes played filter. |
| `player_id` | string | No | Player ID(s) to filter by, comma-separated. |
| `season_name` | string | No | Season year(s) to filter by, comma-separated (e.g. '2023' or '2022,2023'). Mutually exclusive with start_date/end_date. |
| `split_by_games` | string | No | Whether to split stats by game. Accepted values: 'true', 'false'. |
| `split_by_seasons` | string | No | Whether to split stats by season. Accepted values: 'true', 'false'. |
| `split_by_teams` | string | No | Whether to split stats by team. Accepted values: 'true', 'false'. |
| `stage_name` | string | No | Stage name filter (e.g. 'Regular Season'). |
| `start_date` | string | No | Start date filter in YYYY-MM-DD format. Mutually exclusive with season_name. |
| `team_id` | string | No | Team ID(s) to filter by, comma-separated. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-app-americansocceranalysis-com-api-bd79b79e/get_goalkeepers_xgoals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"end_date":"<string>","general_position":"<string>","minimum_minutes":"<integer>","player_id":"<string>","season_name":"<string>","split_by_games":"<string>","split_by_seasons":"<string>","split_by_teams":"<string>","stage_name":"<string>","start_date":"<string>","team_id":"<string>"}'
```
